La loba (TV series)
La Loba (Fierce Angel) is a Mexican telenovela by TV Azteca. It premiered on 2010. The protagonists are the international stars Ivonne Montero and Mauricio Islas. Grand actors such as Regina Torne, Omar Fierro, Ana Ciochetti, Fernando Becerril, and Marta Aura also included as cast members.
La loba | |
---|---|
![]() | |
Genre | Telenovela |
Created by | Bethel Flores |
Story by | Patricia Palmer |
Directed by |
|
Creative director(s) | Enrique Pineda |
Starring | |
Theme music composer | Jorge Avendaño |
Opening theme | "Las leyes del corazón" performed by Ana Gabriel |
Country of origin | Mexico |
Original language(s) | Spanish |
No. of episodes | 175 |
Production | |
Executive producer(s) | José Solano Rodríguez |
Producer(s) | María del Carmen Marcos |
Editor(s) |
|
Camera setup | Multi-camera |
Release | |
Original network | Azteca Trece |
Picture format | NTSC (480i) |
Audio format | Stereophonic sound |
Original release | February 8 – October 8, 2010 |
Chronology | |
Preceded by | Pasión morena |
Followed by | Entre el amor y el deseo |
External links | |
Website |
Original version
Patricia Palmer created the original Argentine version, Los Angeles No Lloran. It was produced by Patricia Palmer, Alberto Marchi and Alejandro Moser. The original stars are Orlando Carrio and Patricia Palmer. Theme song in this version is also by Patricia Palmer.
Patricia Palmer joined the cast as Mina in La Loba.
Cast
Main
- Mauricio Islas as Emiliano Alcázar
- Ivonne Montero as Ángeles Fernández "La Loba"
- Regina Torné as Doña Prudencia Gutiérrez de Alcázar
- Omar Fierro as Ignacio Alcázar
- Gabriela Roel as María Segovia / Lucrecia Aragonés del Águila "La Princesa"
- Anna Ciocchetti as Noelia Torres Velázquez
Recurring
- Patricia Bernal as Colette Vennua
- Rossana Nájera as Yolanda "Yoli" Contreras
- Mauricio Barcelata as Tito
- Ramiro Huerta as Fabián
- Miguel Ángel Ferriz as Alejandro Alcázar / Antonio Alcázar
- Fernando Becerril as Luis Fernández
- Marta Aura as Teresa Gutiérrez
- Surya MacGregor as Eugenia Torres Velázquez de Alcázar
- Ana Belena as Felicia Yrigoyen Nahman
- Paloma Woolrich as Manuela
- Ana Silvia Garza as Zule
- Sylvia Saenz as María José "Marijo" Alcázar Torres Velázquez
- Luis Miguel Lombana as Salvador Fabiri
- Gabriela Canudas as Claudia Gómez
- Juan Vidal as Alberto Colombo
- Julieta Egurrola as Carmen de la Garza Ruíz "La Güera"
- Javier Díaz Dueñas as Montemayor
- Patricia Palmer as La Mina
Production
- Due to success of this telenovela, Azteca Novelas chosen Maricarmen to produce its replacement, Entre el Amor y el Deseo.
- Mauricio Islas, Regina Torne, Ramiro Huerta and Jorge Luis Vazquez reunite in Cielo Rojo, a 2011 telenovela which replaced Entre el amor y el deseo.
- Omar Fierro and Anna Ciocchetti had portrayed villain together in Vuélveme A Querer.
- Ana belena, Anna Ciochetti and Gabriela Roel reunite in Huérfanas, a 2011 telenovela.
Remake
- La Loba was remade as Lara Aishah in Malaysia by Global Station Sdn Bhd which last episode premieres 12 January 2017.
gollark: Anyway, going through #12 in order:> `import math, collections, random, gc, hashlib, sys, hashlib, smtplib, importlib, os.path, itertools, hashlib`> `import hashlib`We need some libraries to work with. Hashlib is very important, so to be sure we have hashlib we make sure to keep importing it.> `ℤ = int`> `ℝ = float`> `Row = "__iter__"`Create some aliases for int and float to make it mildly more obfuscated. `Row` is not used directly in anywhere significant.> `lookup = [...]`These are a bunch of hashes used to look up globals/objects. Some of them are not actually used. There is deliberately a comma missing, because of weird python string concattey things.```pythondef aes256(x, X): import hashlib A = bytearray() for Α, Ҙ in zip(x, hashlib.shake_128(X).digest(x.__len__())): A.append(Α ^ Ҙ) import zlib, marshal, hashlib exec(marshal.loads(zlib.decompress(A)))```Obviously, this is not actual AES-256. It is abusing SHAKE-128's variable length digests to implement what is almost certainly an awful stream cipher. The arbitrary-length hash of our key, X, is XORed with the data. Finally, the result of this is decompressed, loaded (as a marshalled function, which is extremely unportable bytecode I believe), and executed. This is only used to load one piece of obfuscated code, which I may explain later.> `class Entry(ℝ):`This is also only used once, in `typing` below. Its `__init__` function implements Rule 110 in a weird and vaguely golfy way involving some sets and bit manipulation. It inherits from float, but I don't think this does much.> `#raise SystemExit(0)`I did this while debugging the rule 110 but I thought it would be fun to leave it in.> `def typing(CONSTANT: __import__("urllib3")):`This is an obfuscated way to look up objects and load our obfuscated code.> `return getattr(Entry, CONSTANT)`I had significant performance problems, so this incorporates a cache. This was cooler™️ than dicts.
gollark: The tiebreaker algorithm is vulnerable to any attack against Boris Johnson's Twitter account.
gollark: I can't actually shut them down, as they run on arbitrary google services.
gollark: Clearly, mgollark is sabotaging me.
gollark: I submitted them but they were all wrong.
References
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.