A rouge-like rpg, heavily inspired on the binding of isaac. Running on a FRDM-K64F Mbed board. C++.
Dependencies: mbed MotionSensor
RoomEngine/Room/Room.h@58:c8d90bb7404a, 2019-05-09 (annotated)
- Committer:
- el17sm
- Date:
- Thu May 09 14:43:45 2019 +0000
- Revision:
- 58:c8d90bb7404a
- Parent:
- 51:4d0cd75e7ed3
- Child:
- 59:fd4669864b67
Fully Doxygenated
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
el17sm | 25:112cbcb0b4a7 | 1 | #ifndef ROOM_H |
el17sm | 25:112cbcb0b4a7 | 2 | #define ROOM_H |
el17sm | 27:a1b41626f57c | 3 | #include "sprites.h" |
el17sm | 29:6b8411bb040a | 4 | |
el17sm | 26:abbc19edc5c1 | 5 | #include "Entity.h" |
el17sm | 25:112cbcb0b4a7 | 6 | #include "Player.h" |
el17sm | 25:112cbcb0b4a7 | 7 | #include "Headless.h" |
el17sm | 25:112cbcb0b4a7 | 8 | #include "Snake.h" |
el17sm | 36:92d131695e7c | 9 | #include "Skull.h" |
el17sm | 40:cbcbf6fc1421 | 10 | #include "Walls.h" |
el17sm | 29:6b8411bb040a | 11 | |
el17sm | 26:abbc19edc5c1 | 12 | #include "N5110.h" |
el17sm | 25:112cbcb0b4a7 | 13 | |
el17sm | 26:abbc19edc5c1 | 14 | #define MAX_ENEMIES 10 |
el17sm | 58:c8d90bb7404a | 15 | /**Room Class |
el17sm | 58:c8d90bb7404a | 16 | @author Steven Mahasin |
el17sm | 58:c8d90bb7404a | 17 | @brief Create a Room which holds the enemies, collectibles and doorways |
el17sm | 58:c8d90bb7404a | 18 | @date May 2019 |
el17sm | 58:c8d90bb7404a | 19 | */ |
el17sm | 26:abbc19edc5c1 | 20 | class Room // contains the type of room, number of enemies inside it, the doorways existing in the room, functions to spawn enemies |
el17sm | 25:112cbcb0b4a7 | 21 | { |
el17sm | 29:6b8411bb040a | 22 | private: |
el17sm | 58:c8d90bb7404a | 23 | /** |
el17sm | 58:c8d90bb7404a | 24 | * @brief an array that dictates which side of the wall has a doorway |
el17sm | 58:c8d90bb7404a | 25 | */ |
el17sm | 27:a1b41626f57c | 26 | bool _doorways[4]; |
el17sm | 58:c8d90bb7404a | 27 | /** |
el17sm | 58:c8d90bb7404a | 28 | * @brief states the type of room (boss, normal, walled) |
el17sm | 58:c8d90bb7404a | 29 | */ |
el17sm | 28:98848e6a77a2 | 30 | int _room_type; |
el17sm | 58:c8d90bb7404a | 31 | /** |
el17sm | 58:c8d90bb7404a | 32 | * @brief the coordinates of enemies to be spawned |
el17sm | 58:c8d90bb7404a | 33 | */ |
el17sm | 29:6b8411bb040a | 34 | int _enemy_coord[MAX_ENEMIES][2]; // _enemy_coord[EnemyID][x/y] |
el17sm | 58:c8d90bb7404a | 35 | /** |
el17sm | 58:c8d90bb7404a | 36 | * @brief the status of the walls, used to construct a wall at any x, y, width and height |
el17sm | 58:c8d90bb7404a | 37 | */ |
el17sm | 41:0697508a28ba | 38 | char _wall_stat[2][4]; // _wall_coord[WallID][x/y/width/height] |
el17sm | 58:c8d90bb7404a | 39 | /** |
el17sm | 58:c8d90bb7404a | 40 | * @brief the special boss doorway is held in this member variable (0-3); if no boss doorway, it is default to 4 |
el17sm | 58:c8d90bb7404a | 41 | */ |
el17sm | 46:f09711580d4a | 42 | int _before_boss_room; |
el17sm | 58:c8d90bb7404a | 43 | /** |
el17sm | 58:c8d90bb7404a | 44 | * @brief a counter integer to increment through the spawn points in the spawn_area array and id each point |
el17sm | 58:c8d90bb7404a | 45 | */ |
el17sm | 44:cc4cecfc639f | 46 | short int _spawn_point_counter; |
el17sm | 58:c8d90bb7404a | 47 | /** |
el17sm | 58:c8d90bb7404a | 48 | * @brief a variable to hold the decided randomised spawn point id to spawn an enemy |
el17sm | 58:c8d90bb7404a | 49 | */ |
el17sm | 44:cc4cecfc639f | 50 | short int _spawn_point_coord; |
el17sm | 27:a1b41626f57c | 51 | |
el17sm | 27:a1b41626f57c | 52 | // Functions |
el17sm | 58:c8d90bb7404a | 53 | /** |
el17sm | 58:c8d90bb7404a | 54 | * @brief initialisation of boss room |
el17sm | 58:c8d90bb7404a | 55 | */ |
el17sm | 51:4d0cd75e7ed3 | 56 | void init_boss_room(); |
el17sm | 58:c8d90bb7404a | 57 | /** |
el17sm | 58:c8d90bb7404a | 58 | * @brief initialisation of normal rooms |
el17sm | 58:c8d90bb7404a | 59 | */ |
el17sm | 51:4d0cd75e7ed3 | 60 | void init_normal_room(); |
el17sm | 58:c8d90bb7404a | 61 | /** |
el17sm | 58:c8d90bb7404a | 62 | * @brief initialisation of middle walled rooms (not used in this version, in progress) |
el17sm | 58:c8d90bb7404a | 63 | */ |
el17sm | 51:4d0cd75e7ed3 | 64 | void init_middle_walled_room(); |
el17sm | 58:c8d90bb7404a | 65 | /** |
el17sm | 58:c8d90bb7404a | 66 | * @brief initialisation of side walled rooms (not used in this version, in progress) |
el17sm | 58:c8d90bb7404a | 67 | */ |
el17sm | 51:4d0cd75e7ed3 | 68 | void init_side_walled_room(); |
el17sm | 51:4d0cd75e7ed3 | 69 | |
el17sm | 58:c8d90bb7404a | 70 | /** |
el17sm | 58:c8d90bb7404a | 71 | * @brief set the _enemy_coord of index id to a random valid spawn area x and y |
el17sm | 58:c8d90bb7404a | 72 | * @param id @details the index of the enemy to be given a random coord |
el17sm | 58:c8d90bb7404a | 73 | */ |
el17sm | 51:4d0cd75e7ed3 | 74 | void rand_enemy_coordinate(int id); |
el17sm | 51:4d0cd75e7ed3 | 75 | |
el17sm | 58:c8d90bb7404a | 76 | /** |
el17sm | 58:c8d90bb7404a | 77 | * @brief draws the doorways that are behind the player |
el17sm | 58:c8d90bb7404a | 78 | * @param lcd @details the screen where the doorway is drawn |
el17sm | 58:c8d90bb7404a | 79 | */ |
el17sm | 41:0697508a28ba | 80 | void draw_doorways(N5110 &lcd); |
el17sm | 58:c8d90bb7404a | 81 | /** |
el17sm | 58:c8d90bb7404a | 82 | * @brief draws overlayed doorways, these doorways are in front of the player |
el17sm | 58:c8d90bb7404a | 83 | * @param lcd @details the screen where the doorway_overlay is drawn |
el17sm | 58:c8d90bb7404a | 84 | */ |
el17sm | 41:0697508a28ba | 85 | void draw_doorways_overlay(N5110 &lcd); |
el17sm | 58:c8d90bb7404a | 86 | /** |
el17sm | 58:c8d90bb7404a | 87 | * @brief draws enemies onto the screen |
el17sm | 58:c8d90bb7404a | 88 | * @param lcd @details the screen where the enemies are drawn |
el17sm | 58:c8d90bb7404a | 89 | * @param j @details the current y-position of entities that are being drawn |
el17sm | 58:c8d90bb7404a | 90 | */ |
el17sm | 41:0697508a28ba | 91 | void draw_enemies(N5110 &lcd, int j); |
el17sm | 58:c8d90bb7404a | 92 | /** |
el17sm | 58:c8d90bb7404a | 93 | * @brief draws collectibles onto the screen |
el17sm | 58:c8d90bb7404a | 94 | * @param lcd @details the screen where the collectibles is drawn |
el17sm | 58:c8d90bb7404a | 95 | * @param j @details the current y-position of entities that are being drawn |
el17sm | 58:c8d90bb7404a | 96 | */ |
el17sm | 41:0697508a28ba | 97 | void draw_collectibles(N5110 &lcd, int j); |
el17sm | 58:c8d90bb7404a | 98 | /** |
el17sm | 58:c8d90bb7404a | 99 | * @brief draws walls entity onto the screen |
el17sm | 58:c8d90bb7404a | 100 | * @param lcd @details the screen where the walls is drawn |
el17sm | 58:c8d90bb7404a | 101 | * @param j @details the current y-position of entities that are being drawn |
el17sm | 58:c8d90bb7404a | 102 | */ |
el17sm | 41:0697508a28ba | 103 | void draw_walls(N5110 &lcd, int j); |
el17sm | 51:4d0cd75e7ed3 | 104 | |
el17sm | 25:112cbcb0b4a7 | 105 | |
el17sm | 29:6b8411bb040a | 106 | public: |
el17sm | 58:c8d90bb7404a | 107 | /** Constructors |
el17sm | 58:c8d90bb7404a | 108 | * @brief create a room with a set number of enemies and a set room type |
el17sm | 58:c8d90bb7404a | 109 | * @param no_of_enemies @details the number of enemies to be spawned in the room |
el17sm | 58:c8d90bb7404a | 110 | * @param room_type @details the type of room to be initialised with |
el17sm | 58:c8d90bb7404a | 111 | */ |
el17sm | 36:92d131695e7c | 112 | Room(int no_of_enemies, int room_type); |
el17sm | 58:c8d90bb7404a | 113 | /** Destructors */ |
el17sm | 27:a1b41626f57c | 114 | ~Room(); |
el17sm | 27:a1b41626f57c | 115 | |
el17sm | 45:8725b4171646 | 116 | // Mutators |
el17sm | 58:c8d90bb7404a | 117 | /** |
el17sm | 58:c8d90bb7404a | 118 | * @brief sets _doorway at index "index" with the value of "doorway_value" |
el17sm | 58:c8d90bb7404a | 119 | * @param index @details the index of the mutated doorway |
el17sm | 58:c8d90bb7404a | 120 | * @param doorway_value @details the value of the mutated doorway |
el17sm | 58:c8d90bb7404a | 121 | */ |
el17sm | 46:f09711580d4a | 122 | void set_doorway(int index, bool doorway_value); |
el17sm | 58:c8d90bb7404a | 123 | /** |
el17sm | 58:c8d90bb7404a | 124 | * @brief sets the position of boss doorway on this room |
el17sm | 58:c8d90bb7404a | 125 | * @param before_boss_room @details the side in which boss doorway exists (0-3 = sides, 4 = doesn't exist) |
el17sm | 58:c8d90bb7404a | 126 | */ |
el17sm | 46:f09711580d4a | 127 | void set_boss_doorway(int before_boss_room); |
el17sm | 45:8725b4171646 | 128 | |
el17sm | 27:a1b41626f57c | 129 | // Accessors |
el17sm | 58:c8d90bb7404a | 130 | /** |
el17sm | 58:c8d90bb7404a | 131 | * @brief get the 2d map array that dictates where there are walls or empty space |
el17sm | 58:c8d90bb7404a | 132 | * @return the char pointer array of the 2d level map |
el17sm | 58:c8d90bb7404a | 133 | */ |
el17sm | 34:1d5b4da3935e | 134 | char * get_current_map_2d(); |
el17sm | 58:c8d90bb7404a | 135 | /** |
el17sm | 58:c8d90bb7404a | 136 | * @brief get the doorways of the room |
el17sm | 58:c8d90bb7404a | 137 | * @return boolean pointer array of the _doorways member variable |
el17sm | 58:c8d90bb7404a | 138 | */ |
el17sm | 29:6b8411bb040a | 139 | bool * get_doorways(); |
el17sm | 58:c8d90bb7404a | 140 | /** |
el17sm | 58:c8d90bb7404a | 141 | * @brief get the doorway status of the room at index "index" |
el17sm | 58:c8d90bb7404a | 142 | * @return _doorway[index] |
el17sm | 58:c8d90bb7404a | 143 | */ |
el17sm | 46:f09711580d4a | 144 | bool get_doorway(int index); |
el17sm | 58:c8d90bb7404a | 145 | /** |
el17sm | 58:c8d90bb7404a | 146 | * @brief get the type of room |
el17sm | 58:c8d90bb7404a | 147 | * @return _room_type |
el17sm | 58:c8d90bb7404a | 148 | */ |
el17sm | 45:8725b4171646 | 149 | char get_room_type(); |
el17sm | 58:c8d90bb7404a | 150 | /** |
el17sm | 58:c8d90bb7404a | 151 | * @brief get the boss doorway status |
el17sm | 58:c8d90bb7404a | 152 | * @return _before_boss_room |
el17sm | 58:c8d90bb7404a | 153 | */ |
el17sm | 46:f09711580d4a | 154 | int get_boss_doorway(); |
el17sm | 25:112cbcb0b4a7 | 155 | |
el17sm | 26:abbc19edc5c1 | 156 | // Functions |
el17sm | 58:c8d90bb7404a | 157 | /** |
el17sm | 58:c8d90bb7404a | 158 | * @brief loads all the entities in the room |
el17sm | 58:c8d90bb7404a | 159 | */ |
el17sm | 28:98848e6a77a2 | 160 | void load(); |
el17sm | 58:c8d90bb7404a | 161 | /** |
el17sm | 58:c8d90bb7404a | 162 | * @brief deletes all entities in the room |
el17sm | 58:c8d90bb7404a | 163 | */ |
el17sm | 28:98848e6a77a2 | 164 | void unload(); |
el17sm | 58:c8d90bb7404a | 165 | /** |
el17sm | 58:c8d90bb7404a | 166 | * @brief close all doorways if the room is a boss room |
el17sm | 58:c8d90bb7404a | 167 | */ |
el17sm | 45:8725b4171646 | 168 | void update_doorways(); |
el17sm | 58:c8d90bb7404a | 169 | /** |
el17sm | 58:c8d90bb7404a | 170 | * @brief draws the room including enemies |
el17sm | 58:c8d90bb7404a | 171 | * @param lcd @details the screen in which the room is being drawn in |
el17sm | 58:c8d90bb7404a | 172 | * @param j @details the current y-position of entities that are being drawn |
el17sm | 58:c8d90bb7404a | 173 | */ |
el17sm | 45:8725b4171646 | 174 | void draw(N5110 &lcd, int j); |
el17sm | 58:c8d90bb7404a | 175 | /** |
el17sm | 58:c8d90bb7404a | 176 | * @brief draws the room |
el17sm | 58:c8d90bb7404a | 177 | * @param lcd @details the screen in which the room is being drawn in |
el17sm | 58:c8d90bb7404a | 178 | */ |
el17sm | 27:a1b41626f57c | 179 | void draw_room(N5110 &lcd); |
el17sm | 58:c8d90bb7404a | 180 | /** |
el17sm | 58:c8d90bb7404a | 181 | * @brief draws the room_overlay |
el17sm | 58:c8d90bb7404a | 182 | * @param lcd @details the screen in which the room_overlay is being drawn in |
el17sm | 58:c8d90bb7404a | 183 | */ |
el17sm | 27:a1b41626f57c | 184 | void draw_room_overlay(N5110 &lcd); |
el17sm | 58:c8d90bb7404a | 185 | |
el17sm | 58:c8d90bb7404a | 186 | /** |
el17sm | 58:c8d90bb7404a | 187 | * @brief checks if there is any valid enemies in the room |
el17sm | 58:c8d90bb7404a | 188 | * @return true if there is any valid enemies in the room |
el17sm | 58:c8d90bb7404a | 189 | */ |
el17sm | 47:6e31b195ce3c | 190 | bool enemies_exist(); |
el17sm | 26:abbc19edc5c1 | 191 | |
el17sm | 26:abbc19edc5c1 | 192 | // Variables |
el17sm | 58:c8d90bb7404a | 193 | /** |
el17sm | 58:c8d90bb7404a | 194 | * @brief A pointer to an array of Entities where all the possible enemies in the room are stored |
el17sm | 58:c8d90bb7404a | 195 | */ |
el17sm | 26:abbc19edc5c1 | 196 | Entity *enemies[MAX_ENEMIES]; |
el17sm | 58:c8d90bb7404a | 197 | /** |
el17sm | 58:c8d90bb7404a | 198 | * @brief A boolean array to dictate which enemies exist |
el17sm | 58:c8d90bb7404a | 199 | */ |
el17sm | 26:abbc19edc5c1 | 200 | bool valid_enemies[MAX_ENEMIES]; |
el17sm | 58:c8d90bb7404a | 201 | /** |
el17sm | 58:c8d90bb7404a | 202 | * @brief A pointer to an array of Entities where all the possible collectibles in the room are stored |
el17sm | 58:c8d90bb7404a | 203 | */ |
el17sm | 36:92d131695e7c | 204 | Entity *collectibles[MAX_ENEMIES]; |
el17sm | 58:c8d90bb7404a | 205 | /** |
el17sm | 58:c8d90bb7404a | 206 | * @brief A boolean array to dictate which collectibles exist |
el17sm | 58:c8d90bb7404a | 207 | */ |
el17sm | 36:92d131695e7c | 208 | bool valid_collectibles[MAX_ENEMIES]; |
el17sm | 58:c8d90bb7404a | 209 | /** |
el17sm | 58:c8d90bb7404a | 210 | * @brief A pointer to an array of Entities where all the possible walls in the room are stored |
el17sm | 58:c8d90bb7404a | 211 | */ |
el17sm | 41:0697508a28ba | 212 | Entity *walls[2]; |
el17sm | 58:c8d90bb7404a | 213 | /** |
el17sm | 58:c8d90bb7404a | 214 | * @brief A boolean array to dictate which walls exist |
el17sm | 58:c8d90bb7404a | 215 | */ |
el17sm | 41:0697508a28ba | 216 | bool valid_walls[2]; |
el17sm | 58:c8d90bb7404a | 217 | /** |
el17sm | 58:c8d90bb7404a | 218 | * @brief An array of enemy types for each enemy in the room |
el17sm | 58:c8d90bb7404a | 219 | * @note currently only snake and headless |
el17sm | 58:c8d90bb7404a | 220 | */ |
el17sm | 28:98848e6a77a2 | 221 | int enemies_type[MAX_ENEMIES]; |
el17sm | 25:112cbcb0b4a7 | 222 | }; |
el17sm | 25:112cbcb0b4a7 | 223 | |
el17sm | 44:cc4cecfc639f | 224 | const char spawn_area[3][48][84] = { // [Room_Type][Size_Y][Size_X] |
el17sm | 44:cc4cecfc639f | 225 | { |
el17sm | 44:cc4cecfc639f | 226 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 227 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 228 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 229 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 230 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 231 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 232 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 233 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 234 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 235 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 236 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 237 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 238 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 239 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 240 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 241 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 242 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 243 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 244 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 245 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 246 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 247 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 248 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 249 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 250 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 251 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 252 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 253 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 254 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 255 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 256 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 257 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 258 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 259 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 260 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 261 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 262 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 263 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 264 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 265 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 266 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 267 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 268 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 269 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 270 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 271 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 272 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 273 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 274 | }, |
el17sm | 44:cc4cecfc639f | 275 | { |
el17sm | 44:cc4cecfc639f | 276 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 277 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 278 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 279 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 280 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 281 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 282 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 283 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 284 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 285 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 286 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 287 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 288 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 289 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 290 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 291 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 292 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 293 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 294 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 295 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 296 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 297 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 298 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 299 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 300 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 301 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 302 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 303 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 304 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 305 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 306 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 307 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 308 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 309 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 310 | {1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 311 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 312 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 313 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 314 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 315 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 316 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 317 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 318 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 319 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 320 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 321 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 322 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 323 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 324 | }, |
el17sm | 44:cc4cecfc639f | 325 | { |
el17sm | 44:cc4cecfc639f | 326 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 327 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 328 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 329 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 330 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 331 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 332 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 333 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 334 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 335 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 336 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 337 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 338 | {1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 339 | {1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 340 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 341 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 342 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 343 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 344 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 345 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 346 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 347 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 348 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 349 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 350 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 351 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 352 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 353 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 354 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 355 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 356 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 357 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 358 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 359 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 360 | {1,1,1,1,1,1,1,1,1,1,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 361 | {1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 362 | {1,1,1,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 363 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 364 | {1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 365 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 366 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 367 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 368 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 369 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 370 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 371 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 372 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 373 | {1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1}, |
el17sm | 44:cc4cecfc639f | 374 | } |
el17sm | 44:cc4cecfc639f | 375 | }; |
el17sm | 44:cc4cecfc639f | 376 | |
el17sm | 44:cc4cecfc639f | 377 | const short int n_spawn_points[3] = {1547, 502, 972}; // [room_type] |
el17sm | 44:cc4cecfc639f | 378 | |
el17sm | 46:f09711580d4a | 379 | const char boss_doorway_n[2][12][14] = { // [Level/Overlay][Size_Y][Size_X] |
el17sm | 44:cc4cecfc639f | 380 | { |
el17sm | 46:f09711580d4a | 381 | {1,0,1,1,0,0,0,0,0,0,1,1,0,1}, |
el17sm | 46:f09711580d4a | 382 | {1,1,0,0,0,1,1,1,1,0,0,0,1,1}, |
el17sm | 46:f09711580d4a | 383 | {1,0,0,1,1,0,0,0,0,1,1,0,0,1}, |
el17sm | 46:f09711580d4a | 384 | {1,0,1,0,0,0,0,0,0,0,0,1,0,1}, |
el17sm | 46:f09711580d4a | 385 | {1,0,1,0,0,0,0,0,0,0,0,1,0,1}, |
el17sm | 46:f09711580d4a | 386 | {1,0,1,0,0,0,0,0,0,0,0,1,0,1}, |
el17sm | 46:f09711580d4a | 387 | {1,0,1,0,0,0,0,0,0,0,0,1,0,1}, |
el17sm | 46:f09711580d4a | 388 | {1,0,1,0,0,0,0,0,0,0,0,1,0,1}, |
el17sm | 46:f09711580d4a | 389 | {1,0,1,0,0,0,0,0,0,0,0,1,0,1}, |
el17sm | 46:f09711580d4a | 390 | {1,0,1,0,0,0,0,0,0,0,0,1,0,1}, |
el17sm | 46:f09711580d4a | 391 | {1,0,1,0,0,0,0,0,0,0,0,1,0,1}, |
el17sm | 46:f09711580d4a | 392 | {1,1,1,0,0,0,0,0,0,0,0,1,1,1} |
el17sm | 44:cc4cecfc639f | 393 | }, |
el17sm | 44:cc4cecfc639f | 394 | { |
el17sm | 46:f09711580d4a | 395 | {0,0,1,1,2,2,2,2,2,2,1,1,0,0}, |
el17sm | 44:cc4cecfc639f | 396 | {0,0,2,2,2,1,1,1,1,2,2,2,0,0}, |
el17sm | 46:f09711580d4a | 397 | {0,0,0,1,1,0,0,0,0,1,1,0,0,0}, |
el17sm | 44:cc4cecfc639f | 398 | {0,0,0,0,0,0,0,0,0,0,0,0,0,0}, |
el17sm | 44:cc4cecfc639f | 399 | {0,0,0,0,0,0,0,0,0,0,0,0,0,0}, |
el17sm | 44:cc4cecfc639f | 400 | {0,0,0,0,0,0,0,0,0,0,0,0,0,0}, |
el17sm | 44:cc4cecfc639f | 401 | {0,0,0,0,0,0,0,0,0,0,0,0,0,0}, |
el17sm | 44:cc4cecfc639f | 402 | {0,0,0,0,0,0,0,0,0,0,0,0,0,0}, |
el17sm | 44:cc4cecfc639f | 403 | {0,0,0,0,0,0,0,0,0,0,0,0,0,0}, |
el17sm | 44:cc4cecfc639f | 404 | {0,0,0,0,0,0,0,0,0,0,0,0,0,0}, |
el17sm | 44:cc4cecfc639f | 405 | {0,0,0,0,0,0,0,0,0,0,0,0,0,0}, |
el17sm | 46:f09711580d4a | 406 | {0,0,0,0,0,0,0,0,0,0,0,0,0,0} |
el17sm | 44:cc4cecfc639f | 407 | } |
el17sm | 44:cc4cecfc639f | 408 | }; |
el17sm | 44:cc4cecfc639f | 409 | |
el17sm | 46:f09711580d4a | 410 | const char boss_doorway_e[19][5] = { |
el17sm | 46:f09711580d4a | 411 | {1,1,1,1,1}, |
el17sm | 46:f09711580d4a | 412 | {1,1,1,1,1}, |
el17sm | 46:f09711580d4a | 413 | {1,2,2,2,2}, |
el17sm | 46:f09711580d4a | 414 | {1,2,2,2,2}, |
el17sm | 46:f09711580d4a | 415 | {1,2,2,2,2}, |
el17sm | 46:f09711580d4a | 416 | {1,2,2,2,2}, |
el17sm | 46:f09711580d4a | 417 | {1,1,1,1,1}, |
el17sm | 46:f09711580d4a | 418 | {1,2,2,2,2}, |
el17sm | 46:f09711580d4a | 419 | {1,2,2,2,2}, |
el17sm | 46:f09711580d4a | 420 | {1,1,1,1,1}, |
el17sm | 46:f09711580d4a | 421 | {1,2,2,2,2}, |
el17sm | 46:f09711580d4a | 422 | {1,1,1,1,1}, |
el17sm | 46:f09711580d4a | 423 | {1,2,1,2,2}, |
el17sm | 46:f09711580d4a | 424 | {1,2,1,2,2}, |
el17sm | 46:f09711580d4a | 425 | {1,2,1,2,2}, |
el17sm | 46:f09711580d4a | 426 | {1,2,1,2,2}, |
el17sm | 46:f09711580d4a | 427 | {1,2,1,2,2}, |
el17sm | 46:f09711580d4a | 428 | {1,2,1,2,2}, |
el17sm | 46:f09711580d4a | 429 | {1,1,1,2,2} |
el17sm | 46:f09711580d4a | 430 | }; |
el17sm | 46:f09711580d4a | 431 | |
el17sm | 46:f09711580d4a | 432 | const char boss_doorway_s[7][14] = { |
el17sm | 46:f09711580d4a | 433 | {0,0,0,0,1,1,1,1,1,1,0,0,0,0}, |
el17sm | 46:f09711580d4a | 434 | {0,0,1,1,1,2,2,2,2,1,1,1,0,0}, |
el17sm | 46:f09711580d4a | 435 | {1,1,2,2,1,2,2,2,2,1,2,2,1,1}, |
el17sm | 46:f09711580d4a | 436 | {1,2,2,2,1,2,2,2,2,1,2,2,2,1}, |
el17sm | 46:f09711580d4a | 437 | {1,2,2,2,1,2,2,2,2,1,2,2,2,1}, |
el17sm | 46:f09711580d4a | 438 | {1,2,2,2,1,2,2,2,2,1,2,2,2,1}, |
el17sm | 46:f09711580d4a | 439 | {1,2,2,2,1,2,2,2,2,1,2,2,2,1} |
el17sm | 46:f09711580d4a | 440 | }; |
el17sm | 46:f09711580d4a | 441 | |
el17sm | 46:f09711580d4a | 442 | const char boss_doorway_w[19][5] = { |
el17sm | 46:f09711580d4a | 443 | {1,1,1,1,1}, |
el17sm | 46:f09711580d4a | 444 | {1,1,1,1,1}, |
el17sm | 46:f09711580d4a | 445 | {2,2,2,2,1}, |
el17sm | 46:f09711580d4a | 446 | {2,2,2,2,1}, |
el17sm | 46:f09711580d4a | 447 | {2,2,2,2,1}, |
el17sm | 46:f09711580d4a | 448 | {2,2,2,2,1}, |
el17sm | 46:f09711580d4a | 449 | {1,1,1,1,1}, |
el17sm | 46:f09711580d4a | 450 | {2,2,2,2,1}, |
el17sm | 46:f09711580d4a | 451 | {2,2,2,2,1}, |
el17sm | 46:f09711580d4a | 452 | {1,1,1,1,1}, |
el17sm | 46:f09711580d4a | 453 | {2,2,2,2,1}, |
el17sm | 46:f09711580d4a | 454 | {1,1,1,1,1}, |
el17sm | 46:f09711580d4a | 455 | {2,2,1,2,1}, |
el17sm | 46:f09711580d4a | 456 | {2,2,1,2,1}, |
el17sm | 46:f09711580d4a | 457 | {2,2,1,2,1}, |
el17sm | 46:f09711580d4a | 458 | {2,2,1,2,1}, |
el17sm | 46:f09711580d4a | 459 | {2,2,1,2,1}, |
el17sm | 46:f09711580d4a | 460 | {2,2,1,2,1}, |
el17sm | 46:f09711580d4a | 461 | {2,2,1,1,1} |
el17sm | 46:f09711580d4a | 462 | }; |
el17sm | 46:f09711580d4a | 463 | |
el17sm | 33:4f3948dcd2f7 | 464 | const char wall_x[2][11][3] = { // [E/W][Size_Y][Size_X] |
el17sm | 27:a1b41626f57c | 465 | { // E |
el17sm | 28:98848e6a77a2 | 466 | {1,2,2}, |
el17sm | 28:98848e6a77a2 | 467 | {1,2,2}, |
el17sm | 28:98848e6a77a2 | 468 | {1,2,2}, |
el17sm | 28:98848e6a77a2 | 469 | {1,2,2}, |
el17sm | 28:98848e6a77a2 | 470 | {1,2,2}, |
el17sm | 28:98848e6a77a2 | 471 | {1,2,2}, |
el17sm | 28:98848e6a77a2 | 472 | {1,2,2}, |
el17sm | 28:98848e6a77a2 | 473 | {1,2,2}, |
el17sm | 28:98848e6a77a2 | 474 | {1,2,2}, |
el17sm | 28:98848e6a77a2 | 475 | {1,2,2}, |
el17sm | 28:98848e6a77a2 | 476 | {1,2,2}, |
el17sm | 27:a1b41626f57c | 477 | }, |
el17sm | 27:a1b41626f57c | 478 | { // W |
el17sm | 28:98848e6a77a2 | 479 | {2,2,1}, |
el17sm | 28:98848e6a77a2 | 480 | {2,2,1}, |
el17sm | 28:98848e6a77a2 | 481 | {2,2,1}, |
el17sm | 28:98848e6a77a2 | 482 | {2,2,1}, |
el17sm | 28:98848e6a77a2 | 483 | {2,2,1}, |
el17sm | 28:98848e6a77a2 | 484 | {2,2,1}, |
el17sm | 28:98848e6a77a2 | 485 | {2,2,1}, |
el17sm | 28:98848e6a77a2 | 486 | {2,2,1}, |
el17sm | 28:98848e6a77a2 | 487 | {2,2,1}, |
el17sm | 28:98848e6a77a2 | 488 | {2,2,1}, |
el17sm | 28:98848e6a77a2 | 489 | {2,2,1}, |
el17sm | 27:a1b41626f57c | 490 | } |
el17sm | 27:a1b41626f57c | 491 | }; |
el17sm | 27:a1b41626f57c | 492 | |
el17sm | 33:4f3948dcd2f7 | 493 | const char wall_n[10][12] = { // [Size_Y][Size_X] |
el17sm | 29:6b8411bb040a | 494 | {0,0,0,0,0,0,0,0,0,0,0,0,}, |
el17sm | 29:6b8411bb040a | 495 | {0,0,0,0,0,0,0,0,0,0,0,0,}, |
el17sm | 29:6b8411bb040a | 496 | {1,1,1,1,1,1,1,1,1,1,1,1,}, |
el17sm | 29:6b8411bb040a | 497 | {0,0,0,0,0,0,0,0,0,0,0,0,}, |
el17sm | 29:6b8411bb040a | 498 | {0,0,0,0,0,0,0,0,0,0,0,0,}, |
el17sm | 29:6b8411bb040a | 499 | {0,0,0,0,0,0,0,0,0,0,0,0,}, |
el17sm | 29:6b8411bb040a | 500 | {0,0,0,0,0,0,0,0,0,0,0,0,}, |
el17sm | 29:6b8411bb040a | 501 | {0,0,0,0,0,0,0,0,0,0,0,0,}, |
el17sm | 29:6b8411bb040a | 502 | {0,0,0,0,0,0,0,0,0,0,0,0,}, |
el17sm | 29:6b8411bb040a | 503 | {1,1,1,1,1,1,1,1,1,1,1,1,}, |
el17sm | 27:a1b41626f57c | 504 | }; |
el17sm | 27:a1b41626f57c | 505 | |
el17sm | 33:4f3948dcd2f7 | 506 | const char wall_s[3][12] = { // [Size_Y][Size_X] |
el17sm | 29:6b8411bb040a | 507 | {1,1,1,1,1,1,1,1,1,1,1,1,}, |
el17sm | 29:6b8411bb040a | 508 | {2,2,2,2,2,2,2,2,2,2,2,2,}, |
el17sm | 29:6b8411bb040a | 509 | {2,2,2,2,2,2,2,2,2,2,2,2,}, |
el17sm | 27:a1b41626f57c | 510 | }; |
el17sm | 27:a1b41626f57c | 511 | |
el17sm | 25:112cbcb0b4a7 | 512 | #endif |