/// <summary> /// Dessine les points de vie du héro /// </summary> public void Draw(SpriteBatch spriteBatch, Hero hero) { position.X = hero.position.X - 575; position.Y = hero.position.Y - 320; for (int i = 0; i < nb_coeur; i++) { spriteBatch.Draw(texture_fullheart, position, Color.White); position.X += 40; } for (int j = 0; j < nb_coeurvide; j++) { spriteBatch.Draw(texture_emptyheart, position, Color.White); position.X += 40; } }
/// <summary> /// Actualise les déplacements du singe /// </summary> /// <param name="gameTime">temps de jeu</param> /// <param name="newHero">héro à ce temps de jeu</param> public void Update(GameTime gameTime, Hero newHero) { if (Health > 0) { if (position.Y > newHero.position.Y) { velocity.Y = -2.0f; } if (position.Y < newHero.position.Y) { velocity.Y = 2.0f; } if (newHero.position.X > position.X) { velocity.X = -2.0f; } if (newHero.position.X < position.X) { velocity.X = +2.0f; } //normalize velocity VECTOR if (velocity.Length() > 1.0f) velocity.Normalize(); //get elapsed seconds float elapsed = (float)gameTime.ElapsedGameTime.TotalSeconds; //only animate if we are moving float speed = velocity.Length(); if (position.X < newHero.position.X) { volLeftAnimation.Update(elapsed * speed); CurrentAnimation = volLeftAnimation; } if (position.X > newHero.position.X) { volRightAnimation.Update(elapsed * speed); CurrentAnimation = volRightAnimation; } // UPDATE position position += velocity * elapsed * movementSpeed; Hitbox = new Rectangle((int)position.X, (int)position.Y, 84, 84); hit = new Rectangle((int)position.X + 10, (int)position.Y + 10, 64, 64); } }
/// <summary> /// Actualise la caméra sur le joueur /// </summary> /// <param name="gameTime">temps de jeu.</param> /// <param name="hero">hero principal</param> public void Update(GameTime gameTime, Hero hero) { centre = new Vector2(hero.position.X + (hero.Hitbox.Width / 2) - 640, hero.position.Y + (hero.Hitbox.Height / 2) - 370); transform = Matrix.CreateScale(new Vector3(1, 1, 0)) * Matrix.CreateTranslation(new Vector3(-centre.X, -centre.Y, 0)); }
/// <summary> /// Actualise le boss et ses déplacements /// </summary> /// <param name="gameTime">temps de jeu</param> /// <param name="newHero">héro à ce temps de jeu</param> public void Update(GameTime gameTime, Hero newHero) { if (Health > 0) { if (positionMain2.X < 735 && positionMain2.X > 0 && positionMain2.Y < 600) { velocity1.Y = 1.0f; } else { if (positionMain1.X == newHero.position.X) { velocity1.X = 0.0f; } if (positionMain1.X > newHero.position.X) { velocity1.X = -0.5f; } if (positionMain1.X < newHero.position.X) { velocity1.X = 0.5f; } if (positionMain1.Y == newHero.position.Y - 50) { velocity1.Y = 0.0f; } if (positionMain1.Y > newHero.position.Y - 50) { velocity1.Y = -0.5f; } if (positionMain1.Y < newHero.position.Y - 50) { velocity1.Y = 0.5f; } } if (positionMain1.X < 3000 && positionMain1.X > 1000 && positionMain1.Y < 600) { velocity2.Y = 1.0f; } else { if (positionMain2.X == newHero.position.X) { velocity2.X = 0.0f; } if (positionMain2.X > newHero.position.X) { velocity2.X = -0.5f; } if (positionMain2.X < newHero.position.X) { velocity2.X = 0.5f; } if (positionMain2.Y == newHero.position.Y - 50) { velocity2.Y = 0.0f; } if (positionMain2.Y > newHero.position.Y - 50) { velocity2.Y = -0.5f; } if (positionMain2.Y < newHero.position.Y - 50) { velocity2.Y = 0.5f; } } //normalize velocity VECTOR if (velocity1.Length() > 1.0f) velocity1.Normalize(); if (velocity2.Length() > 1.0f) velocity2.Normalize(); //get elapsed seconds float elapsed = (float)gameTime.ElapsedGameTime.TotalSeconds; // UPDATE position positionMain1 += velocity1 * elapsed * movementSpeed; positionMain2 += velocity2 * elapsed * movementSpeed; HitboxTete = new Rectangle((int)positionTete.X, (int)positionTete.Y, 372, 282); hitTete = new Rectangle((int)positionTete.X + 85, (int)positionTete.Y + 50, 204, 280); HitboxMain1 = new Rectangle((int)positionMain1.X, (int)positionMain1.Y, 192, 224); hitMain1 = new Rectangle((int)positionMain1.X + 45, (int)positionMain1.Y + 60, 125, 129); HitboxMain2 = new Rectangle((int)positionMain2.X, (int)positionMain2.Y, 224, 224); hitMain2 = new Rectangle((int)positionMain2.X, (int)positionMain2.Y + 60, 125, 129); } }
/// <summary> /// Actualise les déplacements du clown /// </summary> /// <param name="gameTime">temps de jeu</param> /// <param name="newHero">héro à ce temps de jeu</param> public void Update(GameTime gameTime, Hero newHero) { if (Health > 0) { if (position.X == newHero.position.X) { velocity.X = 0f; } if (position.X > newHero.position.X) { velocity.X = -1.0f; } if (position.X < newHero.position.X) { velocity.X = 1.0f; } if (position.Y == newHero.position.Y) { velocity.Y = 0f; } if (position.Y > newHero.position.Y) { velocity.Y = -1.0f; } if (position.Y < newHero.position.Y) { velocity.Y = 1.0f; } //normalize velocity VECTOR if (velocity.Length() > 1.0f) velocity.Normalize(); //get elapsed seconds float elapsed = (float)gameTime.ElapsedGameTime.TotalSeconds; //only animate if we are moving float speed = velocity.Length(); if (speed > 0.0f) { JumpAnimation.Update(elapsed * speed); CurrentAnimation = JumpAnimation; RetombeAnimation.Update(elapsed * speed); CurrentAnimation = RetombeAnimation; } // UPDATE position position += velocity * elapsed * movementSpeed; Hitbox = new Rectangle((int)position.X, (int)position.Y, 120, 120); hit = new Rectangle((int)position.X + 30, (int)position.Y, 64, 64); } }
/// <summary> /// LoadContent sert à créer toutes les cartes de jeu, et relie les fichiers avec leur textures /// </summary> protected override void LoadContent() { // Create a new SpriteBatch, which can be used to draw textures. spriteBatch = new SpriteBatch(GraphicsDevice); Tiles.Content = Content; map1.Generate(new int[,]{ // créé une map avec les tiles {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,232,233,234,235,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,237,238,239,240,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,242,243,244,245,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,247,248,249,250,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,252,253,254,255,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,257,258,259,260,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,262,263,267,265,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, }, 32); map2.Generate(new int[,]{// créé une map avec les tiles {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,232,233,234,235,236,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,237,238,239,240,241,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,268,269,270,271,242,243,244,245,246,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,272,273,274,275,247,248,249,250,251,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,276,277,278,279,252,253,254,255,256,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,280,281,282,283,257,258,259,260,261,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,262,263,264,265,266,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, }, 32); map3.Generate(new int[,]{// créé une map avec les tiles {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,73,74,94,40,41,42,43,44,40,41,42,43,44,40,41,42,136,137,138,139,140,43,44,40,41,42,43,44,40,41,42,43,44,97,55,56,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,75,76,95,45,46,47,48,49,45,46,47,48,49,45,46,47,141,142,143,144,145,48,49,45,46,47,48,49,45,46,47,48,49,98,57,58,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,77,78,96,50,51,52,53,54,50,51,52,53,54,50,51,52,146,147,148,149,150,53,54,50,51,52,53,54,50,51,52,53,54,99,59,60,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,73,74,94,40,41,42,43,44,40,41,42,43,44,40,41,42,136,137,138,139,140,43,44,40,41,42,43,44,40,41,42,43,44,40,97,55,56,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,75,76,95,45,46,47,48,49,45,46,47,48,49,45,46,47,141,142,143,144,145,48,49,45,46,47,48,49,45,46,47,48,49,45,98,57,58,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,77,78,96,50,51,52,53,54,50,51,52,53,54,50,51,52,146,147,148,149,150,53,54,50,51,52,53,54,50,51,52,53,54,50,99,59,60,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,284,285,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,286,287,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,284,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,286,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,130,131,132,115,116,117,118,119,115,116,117,118,119,151,152,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,130,131,132,115,116,151,152,153,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,160,161,162,115,116,117,118,119,133,61,62,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,67,68,69,120,121,122,123,124,120,121,122,123,124,154,155,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,67,68,69,120,121,154,155,156,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,163,164,165,120,121,122,123,124,134,63,64,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,70,71,72,125,126,127,128,129,125,126,127,128,129,157,158,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,70,71,72,125,126,157,158,159,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,166,167,168,125,126,127,128,129,135,65,66,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,130,131,132,118,119,151,152,153,0,0,0,0,0,0,0,0,0,160,161,162,115,133,61,62,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,67,68,69,123,124,154,155,156,0,0,0,0,0,0,0,0,0,163,164,165,134,120,63,64,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,70,71,72,128,129,157,158,159,0,0,0,0,0,0,0,0,0,166,167,168,125,135,65,66,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,178,179,180,40,41,42,43,44,40,41,42,43,44,40,41,42,43,44,40,41,42,43,44,40,41,169,170,171,0,0,0,0,0,0,0,0,0,178,179,180,40,41,42,43,44,97,55,56,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,181,182,183,45,46,47,48,49,45,46,47,48,49,45,46,47,48,49,45,46,47,48,49,45,46,172,173,174,0,0,0,0,0,0,0,0,0,181,182,183,45,46,47,48,49,98,57,58,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,184,185,186,50,51,52,53,54,50,51,52,53,54,50,51,52,53,54,50,51,52,53,54,50,51,175,176,177,0,0,0,0,0,0,0,0,0,184,185,186,50,51,52,53,54,99,59,60,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,284,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,286,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,130,131,132,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,117,118,119,115,116,133,61,62,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,67,68,69,120,121,122,123,124,120,121,122,123,124,120,121,122,123,124,120,121,122,123,124,120,121,122,123,124,120,121,122,123,124,120,121,122,123,124,120,121,122,123,124,120,121,122,123,124,120,121,122,123,124,120,121,122,123,124,120,121,122,123,124,120,121,134,63,64,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,70,71,72,125,126,127,128,129,125,126,127,128,129,125,126,127,128,129,125,126,127,128,129,125,126,127,128,129,125,126,127,128,129,125,126,127,128,129,125,126,127,128,129,125,126,127,128,129,135,125,126,127,128,129,125,126,127,128,129,125,126,127,128,129,125,126,65,66,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, }, 32); map5.Generate(new int[,]{// créé une map avec les tiles {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,73,74,94,40,41,42,43,44,40,41,42,43,44,40,41,136,137,138,139,140,40,41,42,43,44,40,41,42,43,44,45,97,55,56,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,75,76,95,45,46,47,48,49,45,46,47,48,49,45,46,141,142,143,144,145,45,46,47,48,49,45,46,47,48,49,45,98,57,58,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,77,78,96,50,51,52,53,54,50,51,52,53,54,50,51,146,147,148,149,150,50,51,52,53,54,50,51,52,53,54,50,99,59,60,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,284,285,284,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,284,285,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,286,287,286,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,286,287,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,284,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,286,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,284,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,286,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,284,285,284,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,284,285,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,286,287,286,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,286,287,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,130,131,132,115,116,117,118,119,115,116,117,118,119,115,116,187,188,189,190,191,117,118,119,115,116,117,118,119,115,116,117,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,67,68,69,120,121,122,123,124,120,121,122,123,124,120,121,192,193,194,195,196,122,123,124,120,121,122,123,124,120,121,122,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,70,71,72,125,126,127,128,129,125,126,127,128,129,125,126,197,198,199,200,201,127,128,129,125,126,127,128,129,125,126,127,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, }, 32); map4.Generate(new int[,]{// créé une map avec les tiles {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,73,74,94,40,41,42,43,44,40,41,42,43,44,40,41,202,203,204,205,206,40,41,42,43,44,40,41,42,43,44,45,97,55,56,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,75,76,95,45,46,47,48,49,45,46,47,48,49,45,46,207,208,209,210,211,45,46,47,48,49,45,46,47,48,49,45,98,57,58,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,77,78,96,50,51,52,53,54,50,51,52,53,54,50,51,212,213,214,215,216,50,51,52,53,54,50,51,52,53,54,50,99,59,60,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,284,285,284,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,284,285,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,286,287,286,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,286,287,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,284,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,286,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,284,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,286,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,284,285,284,285,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,284,285,284,285,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,286,287,286,287,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,286,287,286,287,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,130,131,132,115,116,117,118,119,115,116,117,118,119,115,116,217,218,219,220,221,117,118,119,115,116,117,118,119,115,116,117,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,67,68,69,120,121,122,123,124,120,121,122,123,124,120,121,222,223,224,225,226,122,123,124,120,121,122,123,124,120,121,122,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,70,71,72,125,126,127,128,129,125,126,127,128,129,125,126,227,228,229,230,231,127,128,129,125,126,127,128,129,125,126,127,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, }, 32); map6.Generate(new int[,]{// créé une map avec les tiles {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,73,74,94,40,41,42,43,44,40,41,42,43,44,40,41,42,43,40,41,42,43,44,40,41,42,43,44,40,41,42,43,97,55,56,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,75,76,95,45,46,47,48,49,45,46,47,48,49,45,46,47,48,49,45,46,47,48,49,45,46,47,48,49,45,46,47,98,57,58,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,77,78,96,50,51,52,53,54,50,51,52,53,54,50,51,52,53,54,50,51,52,53,54,50,51,52,53,54,50,51,52,99,59,60,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,284,285,0,0,0,0,284,285,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,286,287,0,0,0,0,286,287,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,130,131,132,115,116,117,118,119,115,116,117,118,119,115,116,187,188,189,190,191,117,118,119,115,116,117,118,119,115,116,117,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,67,68,69,120,121,122,123,124,120,121,122,123,124,120,121,192,193,194,195,196,122,123,124,120,121,122,123,124,120,121,122,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,70,71,72,125,126,127,128,129,125,126,127,128,129,125,126,197,198,199,200,201,127,128,129,125,126,127,128,129,125,126,127,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, }, 32); map6.Generate(new int[,]{// créé une map avec les tiles {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,73,74,94,40,41,42,43,44,40,41,42,43,44,40,41,42,43,40,41,42,43,44,40,41,42,43,44,40,41,42,43,97,55,56,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,75,76,95,45,46,47,48,49,45,46,47,48,49,45,46,47,48,49,45,46,47,48,49,45,46,47,48,49,45,46,47,98,57,58,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,77,78,96,50,51,52,53,54,50,51,52,53,54,50,51,52,53,54,50,51,52,53,54,50,51,52,53,54,50,51,52,99,59,60,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,284,285,0,288,289,290,0,284,285,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,286,287,0,291,292,293,0,286,287,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,294,295,296,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,79,80,81,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,82,83,84,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,85,86,87,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,88,89,90,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,109,110,111,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,91,92,93,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,112,113,114,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,130,131,132,115,116,117,118,119,115,116,117,118,119,115,116,187,188,189,190,191,117,118,119,115,116,117,118,119,115,116,117,100,101,102,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,67,68,69,120,121,122,123,124,120,121,122,123,124,120,121,192,193,194,195,196,122,123,124,120,121,122,123,124,120,121,122,103,104,105,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,70,71,72,125,126,127,128,129,125,126,127,128,129,125,126,197,198,199,200,201,127,128,129,125,126,127,128,129,125,126,127,106,107,108,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, {2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,2,}, }, 32); _bossSound = Content.Load<SoundEffect>("bossSound"); _bossBattle = Content.Load<Song>("BossBattle"); _font = Content.Load<SpriteFont>("mapolice"); fullheartTexture = Content.Load<Texture2D>("FULLcoeur"); emptyheartTexture = Content.Load<Texture2D>("VIDEcoeur"); _gameoverScreen = Content.Load<Texture2D>("GameOver"); heroTexture = Content.Load<Texture2D>("spritepixel"); background = Content.Load<Texture2D>("Chambre BG"); clownTexture = Content.Load<Texture2D>("clown"); bossTexture = Content.Load<Texture2D>("Boss"); singeTexture = Content.Load<Texture2D>("monkey"); _EsterStudioVide = Content.Load<Texture2D>("EsterStudioVide"); _loadingScreen1 = Content.Load<Texture2D>("EsterStudio"); _uhriStart = Content.Load<Texture2D>("Uhri"); _backgroundCave = Content.Load<Texture2D>("BackgroundCave1"); _backgroundCave2 = Content.Load<Texture2D>("BackgroundCave2"); _backgroundCave3 = Content.Load<Texture2D>("BackgroundCave3"); _backgroundCave4 = Content.Load<Texture2D>("BackgroundCave4"); _finish = Content.Load<Texture2D>("finish"); _pause = Content.Load<Texture2D>("Pause"); _fondRoom = Content.Load<Texture2D>("FondRoom"); _thunderWhite = Content.Load<Texture2D>("thunderScreen"); _thunderBlack = Content.Load<Texture2D>("thunderScreen2"); hero = new Hero(heroTexture, 10, new Vector2(0, 41)); clown = new Clown(clownTexture, 5, new Vector2(0, 41)); boss = new Boss(bossTexture, new Vector2(824, 320)); singe = new Monkey(singeTexture, 4, new Vector2(0, 0)); hero.position = new Vector2(723, 540); clown.position = new Vector2(750, 400); singe.position = new Vector2(1026, 400); _thunderSound = Content.Load<SoundEffect>("thundercrash"); _exhaustedSound = Content.Load<SoundEffect>("exhausted"); _esterVoice = Content.Load<SoundEffect>("ester"); _bulletSound = Content.Load<SoundEffect>("bulletSon"); _hurtSound = Content.Load<SoundEffect>("hurt"); _gameoverSound = Content.Load<SoundEffect>("gameoverSound"); _pauseSound = Content.Load<SoundEffect>("spause"); _attackSound = Content.Load<SoundEffect>("attack"); _startSound = Content.Load<SoundEffect>("PressStart"); _syojapallotSound = Content.Load<SoundEffect>("syojapallot"); _narriSound = Content.Load<SoundEffect>("narri"); _doorSound = Content.Load<SoundEffect>("door"); _gameoverSong = Content.Load<Song>("gameoverSong"); _chambreSong = Content.Load<Song>("Chambre"); _caveSong = Content.Load<Song>("Cave"); _donjonSong = Content.Load<Song>("Donjon"); vie = new Life(fullheartTexture, emptyheartTexture, 3, 0); }