PDA

View Full Version : Short g3nolite tutorial



man0n
18-12-2003, 11:41 AM
by aCe (aZyWeRks)
October 29, 2002
[email protected]

Apps used :

g3n0lite v1.2 by g3gg0
Hex Workshop 3.11 by BPSoft
PPMEdit 1.0A Cracked Edition by TNP (no offense)
Nokia PPM Manager Beta 0.91 by Vanov

Sample Flash :

3310 v5.57 Package F (has the least number of Languages as far as i know).


About Menu Structures

For the uninitiated, this is what may have looked like a partial dump generated by g3n0lite.
Under language, just type ENGL for english. After clicking Read menustructure, if you don't get
the desired menu names (i.e. Phone book, Messages) you can alternatively tick Menu Description on or off.
I dunno much about it except that for me, sometimes it works with it, sometimes if without it. Just go figure.



[0x00783510] (0x0F) (0x10) (0x0101) [0x001113EE]
# --------------
[0x00000000] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024)
[0x00313ACD] [0x00000000] [0x00000000] (0x0053) (0x02C9) (0x0000) (0x003E) (0x0000) (0x0013) Phone book
[0x00313A67] [0x00000000] [0x00783490] (0x0057) (0x0387) (0x0000) (0x003E) (0x0000) (0x0014) Messages
[0x00783460] (0x0B) (0x80) (0x0101) [0x001113F6]
# --------------
[0x00313A67] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024) Messages
[0x00313BF6] [0x00000000] [0x00000021] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0400) (0x0024) Write messages
[0x00313BBA] [0x00000000] [0x0000001E] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0000) (0x0024) Inbox
[0x00313C17] [0x00000000] [0x0000001D] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0000) (0x0024) Outbox
[0x00313656] [0x00000000] [0x0000008E] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0000) (0x0024) Picture messages

...

For you to better understand this, i suggest that you have at least one instance of g3n0lite running. :)


Let's start with the topmost data.
----------------------------------


[0x00783510] (0x0F) (0x10) (0x0101) [0x001113EE]

As far as i know, you can ignore everything regarding this data except for (0x0F) and (0x10). It has got do with the number
of root entries and sub entries respectively. This type of struct exists before any (sub) menu is created, kinda like a
menu header.

On (0x0F), it is the number of root entries on your menu. If you are going to add or delete from the root entries,
then change the value of this entry accordingly. If its value is lesser than that of what you've changed, the last
unaccounted entry will be truncated. Conversely, if its higher, your app will generate an error upon writing.
Take note that counting starts with 0.

With (0x10), this is the value if the following entries below it are root entries (1st Level). On the next level menu(2nd),
it'll be 0x80. On the 3nd level, it's 0xC0. I haven't really got the luxury to test all flash files regarding the value of
these entries but in case its different, i think you'll still get the drift.



Next, the root entries.
-----------------------


[0x00000000] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024) [Null]
[0x00313ACD] [0x00000000] [0x00000000] (0x0053) (0x02C9) (0x0000) (0x003E) (0x0000) (0x0013) Phone book


I just ignored the first entry. I don't change it either. I call it a NULL entry. However, when making submenu entries,
it is important that you make an entry such as this before making any other entry. Just clone this or any other submenu
and change its entries accordingly. If used as a first null entry on a submenu, use the value of the first data of its
parent menu entry. See illustration.



....
-> [0x00313A67] [0x00000000] [0x00783490] (0x0057) (0x0387) (0x0000) (0x003E) (0x0000) (0x0014) Messages
[0x00783460] (0x0B) (0x80) (0x0101) [0x001113F6]
# --------------
-> [0x00313A67] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024) Messages
...

Since our main concern is from the first visible root entry down to its branches (i.e. Phone book....).
So let us take the Phone book entry into consideration.


Note : I'll try to explain whatever it is that i know of each values presented. Btw, the same structure is used
regardless if it is a root entry or a sub entry. Just some values differ.

[0x00313ACD] -> This is important. This is a particular address in your flash of which the data is the language entry id
of your flash of which in this case is "Phone book."

To be more specific, use a hex editor and open the flash file you are editing, mine is the above mentioned.
0x00313ACD is a location in our flash.
Since our phones start at address 0x00200000, subtracting this value, we get 0x00113ACD.
On our hex editor, we then go to this particular address and we get the following values, 040403.
If we pay attention, the entries around it seem to be ID's each indicated by 04 as the beginning.
But of what?

Using PPM Manager, create a text dump(chunk) of the said flash file. Open the text chunk.
Now back to the value, 040403, just disregard the first byte 04, all we really want is 0403 which
when converted to decimal is equivalent to 1027.
Back to our text chunk, the 1027th entry is "Phone book."


Illustration:


1025 ENGL Silent
1026 ENGL Phone book
1027 ENGL Phone book
1028 ENGL Clock\x0Asettings
1029 ENGL Phone\x0Asecurity
1030 ENGL Off


So it is now safe to assume that this entry points to the text value of this menu. Hence, it is very
important. If you want your menu point to a different entry, just change the value accordingly.

As a tip, if you are planning to add a new menu, try using entry 13 under COMM coz its empty.
Just write your menu text into it. Project-Z pointed it's menu to this entry,
You could also try using a more obscure entry to replace.

[0x00000000] -> I just ignored these values (the second and the third). When making a new menu, all i did was fill
this value with [0x00000000]. For existing ones, I just leave them as is.
As far as i know, g3n0lite will figure out what value to put on these
parts upon writing. Hehehe.

(0x0053) -> I'm not so sure about this but I think this is the bitmap ID. Using PPMEdit, entry 53 on your bitmaps
is actually your phonebook menu animation sequence. On some models though, there is a 1 byte difference
between this value and the bitmap ID. I dunno, maybe its a bug with PPMEdit or I just missed the whole point.

When creating new root menu's, it'll look funny if you don't have a bitmap with it. So if i'm adding one,
i point my bitmaps to one of the existing menu's. Just use the value for this entry and that of the last byte
entry (0x0013) of the menu whose bitmap were going to clone.

Take note that on submenus, the value of this one is either 0x175, 0x12D, etc. Just follow whatever
convention is used on the menu structure you are editing. I think its a lot more safe. I also noticed that
if you make a root menu into a sub menu of one of the entries and you don't change the original value of this
entry (and the rest that matters) the menu animation would actually show on your sub-menu. :) I dunno if
this would cause any problems coz i haven't fully tested it yet. So far, it worked ok for me.

(0x02C9) -> I've noticed that on sub-menus, the value for this part is usually constant (i.e 0x05E0, 0x0BBA). So when i
make sub menu entries out of other entries, i just changed the values to either one of these.

When making menu's (root or otherwise), and if that entry is going to be a sub menu, then its value must
be 0x0387. And make sure that the next thing that follows it is a sub menu, otherwise you'll have a
buggy menu.


(0x0000) -> Ignored.

(0x003E) -> On making new menu's i just use whatever is common on the flash file i'm editing. Take note that on null
menu's their values are different from that of the rest of the entries. Usually, on making my own submenu
I make all their values uniform except for the NULL one of which I use what is common on that flash.

(0x0000) -> Ignored. I place 0x0000 as entry on my new menu. The rest, i just let it be the same.

(0x0013) -> Don't know how important this one is but i change the values of this one on submenu entries to what is
common. On root menu entry i've created, if i don't use the value of my cloned bitmap to my entry, a
different menu graphic will show. So basically, i cloned an existing root menu and just changed the rest
of the essential values.


There you go.

You can also change the menu tree order by just moving data entries up and down, but i guess everybody knows that. hehehe


// end -----------------------------------------


The following menu structure is my own simple modification.

Changes :

* Created my own menu.
* Created some sub-menus under it.
* Moved Messages into the top most entry (like 5210)
coz it's the most commonly used function in my country,
the Text Capital of the World.
* Pointed my menu name into COMM 13 entry of which I edited.
* Pointed my menu bitmap into Profiles, then edited accordingly.



# [0x00783210] (0x10) (0x10) (0x0101) [0x001113EE]
# --------------
[0x00000000] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024)
[0x00313A67] [0x00000000] [0x007831C0] (0x0057) (0x0387) (0x0000) (0x003E) (0x0000) (0x0014) Messages
[0x00783190] (0x0B) (0x80) (0x0101) [0x001113F6]
# --------------
[0x00313A67] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024) Messages
[0x00313BF6] [0x00000000] [0x00000021] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0400) (0x0024) Write messages
[0x00313BBA] [0x00000000] [0x0000001E] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0000) (0x0024) Inbox
[0x00313C17] [0x00000000] [0x0000001D] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0000) (0x0024) Outbox
[0x00313656] [0x00000000] [0x0000008E] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0000) (0x0024) Picture messages
[0x00313C95] [0x00000000] [0x00000099] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0000) (0x0024) Templates
[0x003130FE] [0x00000000] [0x0000009C] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0000) (0x0024) Smileys
[0x00313C14] [0x00000000] [0x00000023] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0000) (0x0024) Message settings
[0x003133B9] [0x00000000] [0x00000029] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0800) (0x0024) Info service
[0x00313E87] [0x00000000] [0x0000002D] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0400) (0x0024) Voice mailbox number
[0x00313E4B] [0x00000000] [0x00000027] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0400) (0x0024) Service command editor
[0x00313C02] [0x00000000] [0x0000009F] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0000) (0x0024) Erase messages
# --------------
[0x00313ACD] [0x00000000] [0x00000000] (0x0053) (0x02C9) (0x0000) (0x003E) (0x0000) (0x0013) Phone book
[0x0031375E] [0x00000000] [0x0000006C] (0x00B6) (0x05E0) (0x0000) (0x003E) (0x0000) (0x0018) Profiles
[0x00312F6F] [0x00000000] [0x000000A6] (0x0065) (0x05E0) (0x0000) (0x003E) (0x0400) (0x0015) Chat
[0x00313326] [0x00000000] [0x00784E60] (0x0071) (0x0387) (0x0000) (0x003E) (0x0000) (0x0016) Call register
[0x00784E30] (0x08) (0x80) (0x0101) [0x001113EC]
# --------------
[0x00313326] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024) Call register
[0x0031374C] [0x00000000] [0x00000000] (0x0175) (0x0282) (0x0000) (0x0052) (0x0400) (0x0024) Missed calls
[0x0031395C] [0x00000000] [0x00000000] (0x0175) (0x0281) (0x0000) (0x0052) (0x0400) (0x0024) Received calls
[0x00313959] [0x00000000] [0x00000000] (0x0175) (0x0280) (0x0000) (0x0052) (0x0400) (0x0024) Dialled numbers
[0x00313734] [0x00000000] [0x00784D50] (0x0175) (0x0387) (0x0000) (0x0052) (0x2000) (0x0024) Erase recent call lists
[0x00784D20] (0x04) (0xC0) (0x0101) [0x00000000]
# --------------
[0x00000000] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x0042) (0x0000) (0x0024)
[0x00313551] [0x00000000] [0x00000012] (0x0175) (0x05E0) (0x0000) (0x0042) (0x3000) (0x0024) All
[0x0031355A] [0x00000000] [0x00000005] (0x0175) (0x02B2) (0x0000) (0x0042) (0x1000) (0x0024) Missed
[0x00313557] [0x00000000] [0x00000003] (0x0175) (0x02B2) (0x0000) (0x0042) (0x1000) (0x0024) Dialled
[0x00313560] [0x00000000] [0x00000004] (0x0175) (0x02B2) (0x0000) (0x0042) (0x1000) (0x0024) Received
# --------------
[0x00313341] [0x00000000] [0x00000015] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0000) (0x0024) Show call duration
[0x00313314] [0x00000000] [0x00000019] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0000) (0x0024) Show call costs
[0x00313317] [0x00000000] [0x00784B80] (0x0175) (0x0387) (0x0000) (0x0052) (0x0000) (0x0024) Call cost settings
[0x00784B50] (0x02) (0x80) (0x0101) [0x001113F2]
# --------------
[0x00313317] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024) Call cost settings
[0x00313311] [0x00000000] [0x0000001C] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0C00) (0x0024) Call cost limit
[0x003134EB] [0x00000000] [0x0000001B] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0C00) (0x0024) Show costs in
# --------------
[0x003134AC] [0x00000000] [0x00784A70] (0x0175) (0x0387) (0x0000) (0x0052) (0x0000) (0x0024) Prepaid credit
[0x00784A40] (0x04) (0x80) (0x0101) [0x00000000]
# --------------
[0x003134AC] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0000) (0x0024) Prepaid credit
[0x003134B8] [0x00000000] [0x007849F0] (0x0175) (0x0387) (0x0000) (0x0052) (0x0800) (0x0024) Credit info display
[0x007849C0] (0x02) (0xC0) (0x8A3F) [0x00000000]
# --------------
[0x003134AC] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x0042) (0x0000) (0x0024) Prepaid credit
[0x003134B2] [0x00000000] [0x00000001] (0x0175) (0x00DC) (0x0000) (0x0042) (0x1300) (0x0024) On
[0x003134AF] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x0042) (0x1300) (0x0024) Off
# --------------
[0x0031349A] [0x00000000] [0x00000000] (0x0175) (0x1ACC) (0x0000) (0x0065) (0x0800) (0x0024) Credit available
[0x00313494] [0x00000000] [0x00000000] (0x0175) (0x1ACD) (0x0000) (0x0065) (0x0800) (0x0024) Last event costs
[0x003134B5] [0x00000000] [0x00784880] (0x0175) (0x0387) (0x0000) (0x0052) (0x0400) (0x0024) Recharge status
[0x00784850] (0x02) (0x80) (0x0101) [0x00000000]
# --------------
[0x003134AC] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x0042) (0x0000) (0x0024) Prepaid credit
[0x003134A9] [0x00000000] [0x00000000] (0x0175) (0x1ACE) (0x0000) (0x0065) (0x0800) (0x0024) Last recharge:
[0x00313497] [0x00000000] [0x00000000] (0x0175) (0x1ACF) (0x0000) (0x0065) (0x0800) (0x0024) Expiry date:
# --------------
# --------------
# --------------
[0x00313B4E] [0x00000000] [0x00784710] (0x00BE) (0x0387) (0x0000) (0x0006) (0x4000) (0x001E) Tones
[0x007846E0] (0x0A) (0x80) (0x0101) [0x001113F0]
# --------------
[0x00313B4E] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024) Tones
[0x003139A4] [0x00000000] [0x0000000E] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0800) (0x0024) Ringing tone
[0x003139AA] [0x00000000] [0x0000000D] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0800) (0x0024) Ringing volume
[0x003139A1] [0x00000000] [0x0000004E] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0800) (0x0024) Incoming call alert
[0x00313425] [0x00000000] [0x00000026] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0400) (0x0024) Composer
[0x00313C98] [0x00000000] [0x0000007B] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0800) (0x0024) Message alert tone
[0x003136AD] [0x00000000] [0x0000000C] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0800) (0x0024) Keypad tones
[0x00313EE7] [0x00000000] [0x00784570] (0x0175) (0x0387) (0x0000) (0x0052) (0x0800) (0x0024) Warning tones
[0x00784540] (0x02) (0xC0) (0x8AA5) [0x00000000]
# --------------
[0x00313EE7] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x1100) (0x0024) Warning tones
[0x00313EED] [0x00000000] [0x00000004] (0x0175) (0x1A2E) (0x0000) (0x0042) (0x1300) (0x0024) On
[0x00313EEA] [0x00000000] [0x000000FF] (0x0175) (0x1A2E) (0x0000) (0x0042) (0x1300) (0x0024) Off
# --------------
[0x00313E69] [0x00000000] [0x00784460] (0x0175) (0x0387) (0x0000) (0x0052) (0x0800) (0x0024) Vibrating alert
[0x00784430] (0x02) (0xC0) (0x8AAC) [0x00000000]
# --------------
[0x00313E69] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x1100) (0x0024) Vibrating alert
[0x00313E63] [0x00000000] [0x00000001] (0x0175) (0x1A30) (0x0000) (0x0042) (0x1300) (0x0024) On
[0x00313E66] [0x00000000] [0x00000000] (0x0175) (0x1A30) (0x0000) (0x0042) (0x1300) (0x0024) Off
# --------------
[0x00313A2E] [0x00000000] [0x0000008C] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0800) (0x0024) Screen saver
[0x00313758] [0x00000000] [0x0000006D] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0800) (0x0024) Rename
# --------------
[0x00313A61] [0x00000000] [0x007842C0] (0x007C) (0x0387) (0x0000) (0x003E) (0x0000) (0x0017) Settings
[0x00784290] (0x05) (0x80) (0x0101) [0x001113FA]
# --------------
[0x00000000] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x0042) (0x0000) (0x0024)
[0x00313338] [0x00000000] [0x00784240] (0x0175) (0x0387) (0x0000) (0x0052) (0x4000) (0x0024) Call settings
[0x00784210] (0x06) (0x80) (0x0101) [0x001113F4]
# --------------
[0x00313338] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024) Call settings
[0x0031332F] [0x00000000] [0x007841C0] (0x0175) (0x0387) (0x0000) (0x0052) (0x0800) (0x0024) Automatic redial
[0x00784190] (0x02) (0xC0) (0x0A19) [0x00000000]
# --------------
[0x0031332F] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x1100) (0x0024) Automatic redial
[0x00313335] [0x00000000] [0x00000001] (0x0175) (0x00DC) (0x0000) (0x0042) (0x1300) (0x0024) On
[0x00313332] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x0042) (0x1300) (0x0024) Off
# --------------
[0x00313881] [0x00000000] [0x007840B0] (0x0175) (0x0387) (0x0000) (0x0052) (0x0800) (0x0024) Speed dialling
[0x00784080] (0x02) (0xC0) (0x0A1A) [0x00000000]
# --------------
[0x00313881] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x1100) (0x0024) Speed dialling
[0x0031387E] [0x00000000] [0x00000001] (0x0175) (0x00DC) (0x0000) (0x0042) (0x1300) (0x0024) On
[0x0031387B] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x0042) (0x1300) (0x0024) Off
# --------------
[0x0031334D] [0x00000000] [0x00000000] (0x0175) (0x0BC6) (0x0000) (0x0052) (0x0000) (0x0024) Call waiting options
[0x003133FE] [0x00000000] [0x00785F50] (0x0175) (0x0387) (0x0000) (0x0052) (0x0800) (0x0024) Own number sending
[0x00785F20] (0x03) (0xC0) (0x8A1B) [0x00000000]
# --------------
[0x003133FE] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x1100) (0x0024) Own number sending
[0x003133EC] [0x00000000] [0x00000000] (0x0175) (0x0BC9) (0x0000) (0x0042) (0x1300) (0x0024) Set by network
[0x003133F2] [0x00000000] [0x00000001] (0x0175) (0x0BC9) (0x0000) (0x0042) (0x1300) (0x0024) On
[0x003133EF] [0x00000000] [0x00000002] (0x0175) (0x0BC9) (0x0000) (0x0042) (0x1300) (0x0024) Off
# --------------
[0x003131A0] [0x00000000] [0x00000049] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0800) (0x0024) Phone line in use
[0x003131B8] [0x00000000] [0x00785DE0] (0x0175) (0x0387) (0x0000) (0x0052) (0x0800) (0x0024) Automatic answer
[0x00785DB0] (0x02) (0xC0) (0x8A2B) [0x00000000]
# --------------
[0x003131B8] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x1100) (0x0024) Automatic answer
[0x003131BE] [0x00000000] [0x00000001] (0x0175) (0x1A2D) (0x0000) (0x0042) (0x1300) (0x0024) On
[0x003131BB] [0x00000000] [0x00000000] (0x0175) (0x1A2D) (0x0000) (0x0042) (0x1300) (0x0024) Off
# --------------
# --------------
[0x003138E1] [0x00000000] [0x00785CA0] (0x0175) (0x0387) (0x0000) (0x0052) (0x4000) (0x0024) Phone settings
[0x00785C70] (0x06) (0x80) (0x0101) [0x001113F8]
# --------------
[0x003138E1] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024) Phone settings
[0x003136D1] [0x00000000] [0x0000000A] (0x0175) (0x0394) (0x0000) (0x0052) (0x0800) (0x0024) Language
[0x003136F8] [0x00000000] [0x00785BF0] (0x0175) (0x0387) (0x0000) (0x0052) (0x0800) (0x0024) Cell info display
[0x00785BC0] (0x02) (0xC0) (0x0A1C) [0x00000000]
# --------------
[0x003136F8] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x1100) (0x0024) Cell info display
[0x003136FE] [0x00000000] [0x00000001] (0x0175) (0x0EDC) (0x0000) (0x0042) (0x1300) (0x0024) On
[0x003136FB] [0x00000000] [0x00000000] (0x0175) (0x0EDD) (0x0000) (0x0042) (0x1300) (0x0024) Off
# --------------
[0x00313E45] [0x00000000] [0x00000059] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0400) (0x0024) Welcome note
[0x00313DAC] [0x00000000] [0x0000003F] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0800) (0x0024) Network selection
[0x003136DD] [0x00000000] [0x00785A80] (0x0175) (0x0387) (0x0000) (0x0052) (0x0800) (0x0024) Lights
[0x00785A50] (0x02) (0xC0) (0x8A2A) [0x00000000]
# --------------
[0x003136DD] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x1100) (0x0024) Lights
[0x003136E0] [0x00000000] [0x00000001] (0x0175) (0x1A2F) (0x0000) (0x0042) (0x1300) (0x0024) On
[0x003136E3] [0x00000000] [0x00000000] (0x0175) (0x1A2F) (0x0000) (0x0042) (0x1300) (0x0024) Automatic
# --------------
[0x00313A9A] [0x00000000] [0x00785970] (0x0175) (0x0387) (0x0000) (0x0052) (0x0800) (0x0024) Confirm SIM service actions
[0x00785940] (0x02) (0xC0) (0x8A26) [0x00000000]
# --------------
[0x00313A9A] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x1100) (0x0024) Confirm SIM service actions
[0x00313AA0] [0x00000000] [0x00000001] (0x0175) (0x00DC) (0x0000) (0x0042) (0x1300) (0x0024) Asked
[0x00313A9D] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x0042) (0x1300) (0x0024) Not asked
# --------------
# --------------
[0x00313A4F] [0x00000000] [0x00785830] (0x0175) (0x0387) (0x0000) (0x0052) (0x0000) (0x0024) Security settings
[0x00785800] (0x07) (0x80) (0x0101) [0x001113E8]
# --------------
[0x00313A4F] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024) Security settings
[0x00313902] [0x00000000] [0x00000033] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0C00) (0x0024) PIN code request
[0x0031330B] [0x00000000] [0x00785780] (0x0175) (0x0387) (0x0000) (0x0052) (0x0000) (0x0024) Call barring service
[0x00785750] (0x06) (0x80) (0x0101) [0x001113DC]
# --------------
[0x0031330B] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024) Call barring service
[0x0031384B] [0x00000000] [0x00000000] (0x0175) (0x0BBC) (0x0000) (0x0006) (0x0000) (0x0024) Outgoing calls
[0x0031383C] [0x00000000] [0x00000001] (0x0175) (0x0BBC) (0x0000) (0x0006) (0x0000) (0x0024) International calls
[0x00313839] [0x00000000] [0x00000002] (0x0175) (0x0BBC) (0x0000) (0x0006) (0x0000) (0x0024) International except to home country
[0x00313836] [0x00000000] [0x00000003] (0x0175) (0x0BBC) (0x0000) (0x0006) (0x0000) (0x0024) Incoming calls
[0x00313833] [0x00000000] [0x00000004] (0x0175) (0x0BBC) (0x0000) (0x0006) (0x0000) (0x0024) Incoming calls when abroad
[0x00313353] [0x00000000] [0x00000005] (0x0175) (0x0BBC) (0x0000) (0x0006) (0x0000) (0x0024) Cancel all barrings
# --------------
[0x00313737] [0x00000000] [0x00000047] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0800) (0x0024) Fixed dialling
[0x0031340A] [0x00000000] [0x00785580] (0x0175) (0x0387) (0x0000) (0x0052) (0x0800) (0x0024) Closed user group
[0x00785550] (0x03) (0xC0) (0x4A7D) [0x00000000]
# --------------
[0x0031340A] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x1100) (0x0024) Closed user group
[0x003134D3] [0x00000000] [0x00000000] (0x0175) (0x0A79) (0x0000) (0x0042) (0x1300) (0x0024) Default
[0x003134D9] [0x00000000] [0x00000001] (0x0175) (0x0A78) (0x0000) (0x0042) (0x1000) (0x0024) On
[0x003134DF] [0x00000000] [0x00000002] (0x0175) (0x0A79) (0x0000) (0x0042) (0x1300) (0x0024) Off
# --------------
[0x00313AD3] [0x00000000] [0x0000004C] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0C00) (0x0024) Phone security
[0x003133BC] [0x00000000] [0x00785410] (0x0175) (0x0387) (0x0000) (0x0052) (0x0000) (0x0024) Change access codes
[0x007853E0] (0x04) (0x80) (0x0101) [0x001113EA]
# --------------
[0x003133BC] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024) Change access codes
[0x00313A3D] [0x00000000] [0x0000000A] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0400) (0x0024) Change security code
[0x003138FC] [0x00000000] [0x00000032] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0400) (0x0024) Change PIN code
[0x003138F0] [0x00000000] [0x00000035] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0400) (0x0024) Change PIN2 code
[0x003138D5] [0x00000000] [0x00000041] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0400) (0x0024) Change barring password
# --------------
[0x0031318E] [0x00000000] [0x0000004A] (0x0175) (0x05E0) (0x0000) (0x0006) (0x0800) (0x0024) Phone line change
# --------------
[0x00313740] [0x00000000] [0x00000011] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0400) (0x0024) Restore factory settings
[0x00312F96] [0x00000000] [0x00000003] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0800) (0x0024) Keyguard settings
# --------------
[0x0031331A] [0x00000000] [0x007851B0] (0x0084) (0x0387) (0x0000) (0x003E) (0x0000) (0x0019) Call divert
[0x00785180] (0x06) (0x80) (0x0101) [0x001113DE]
# --------------
[0x0031331A] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x000D) (0x0100) (0x0024) Call divert
[0x00313500] [0x00000000] [0x00000000] (0x0175) (0x0BBA) (0x0000) (0x0006) (0x0000) (0x0024) Divert all voice calls without ringing
[0x00313515] [0x00000000] [0x00000001] (0x0175) (0x0BBA) (0x0000) (0x0006) (0x0000) (0x0024) Divert when busy
[0x0031350F] [0x00000000] [0x00000002] (0x0175) (0x0BBA) (0x0000) (0x0006) (0x0000) (0x0024) Divert if not answered
[0x00313512] [0x00000000] [0x00000003] (0x0175) (0x0BBA) (0x0000) (0x0006) (0x0000) (0x0024) Divert when phone off or no coverage
[0x00313503] [0x00000000] [0x00000007] (0x0175) (0x0BBA) (0x0000) (0x0006) (0x0000) (0x0024) Divert when off, no answer, or no coverage
[0x00313356] [0x00000000] [0x00000004] (0x0175) (0x0BBA) (0x0000) (0x0006) (0x0400) (0x0024) Cancel all diverts
# --------------
[0x003135CC] [0x00000000] [0x00000071] (0x008F) (0x05E0) (0x0000) (0x003E) (0x0000) (0x001A) Games
[0x0031324B] [0x00000000] [0x0000006A] (0x0093) (0x05E0) (0x0000) (0x003E) (0x0400) (0x001B) Calculator
[0x00313077] [0x00000000] [0x00000062] (0x00A0) (0x05E0) (0x0000) (0x003E) (0x1400) (0x001C) Reminders
[0x00313AB5] [0x00000000] [0x00785010] (0x00AE) (0x0387) (0x0000) (0x003E) (0x0000) (0x001D) Clock
[0x00786F10] (0x06) (0x80) (0x4101) [0x00000000]
# --------------
[0x00000000] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x0001) (0x0100) (0x0024)
[0x00313AAF] [0x00000000] [0x00000066] (0x0175) (0x05E0) (0x0000) (0x0052) (0x2800) (0x0024) Alarm clock
[0x00313AD0] [0x00000000] [0x00000068] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0800) (0x0024) Clock settings
[0x00313947] [0x00000000] [0x00000081] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0C00) (0x0024) Date setting
[0x00313D94] [0x00000000] [0x00000050] (0x0175) (0x05E0) (0x0000) (0x0052) (0x2800) (0x0024) Stopwatch
[0x0031347F] [0x00000000] [0x0000004F] (0x0175) (0x05E0) (0x0000) (0x0052) (0x2800) (0x0024) Countdown timer
[0x003137A6] [0x00000000] [0x00786DD0] (0x0175) (0x0387) (0x0000) (0x0052) (0x0800) (0x0024) Auto update of date and time
[0x00786DA0] (0x03) (0xC0) (0x0A2D) [0x00000000]
# --------------
[0x00000000] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x0000) (0x0000) (0x0024)
[0x003137AF] [0x00000000] [0x00000002] (0x0175) (0x00DC) (0x0000) (0x0042) (0x1200) (0x0024) On
[0x003137AC] [0x00000000] [0x00000001] (0x0175) (0x00DC) (0x0000) (0x0042) (0x1200) (0x0024) Confirm first
[0x003137B2] [0x00000000] [0x00000000] (0x0175) (0x00DC) (0x0000) (0x0042) (0x1200) (0x0024) Off
# --------------
# --------------
[0x00312F99] [0x00000000] [0x000000A9] (0x0057) (0x05E0) (0x0000) (0x003E) (0x0000) (0x0020) Picture
[0x0010DEC4] [0x00000000] [0x00000036] (0x00CF) (0x05E0) (0x0000) (0x003E) (0x0000) (0x001F) INVALID ADDRESS
[0x00312EE2] [0x00000000] [0x00000030] (0x00DE) (0x05E0) (0x0000) (0x003E) (0x0400) (0x0024) Net monitor
[0x00312EEB] [0x00000000] [0x00000000] (0x00B6) (0x0387) (0x0000) (0x003E) (0x0000) (0x0018) aZyWeRks
[0x00786BA0] (0x04) (0x80) (0x0101) [0x00000000]
# --------------
[0x00312EEB] [0x00000000] [0x00000000] (0x0175)x00DC) (0x0000) (0x000D) (0x0100) (0x0024) aZyWeRks
[0x00313BF6] [0x00000000] [0x00000021] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0400) (0x0024) Write messages
[0x00312EE2] [0x00000000] [0x00000030] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0400) (0x0024) Net monitor
[0x003135CC] [0x00000000] [0x00000071] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0000) (0x0024) Games
[0x0031324B] [0x00000000] [0x0000006A] (0x0175) (0x05E0) (0x0000) (0x0052) (0x0400) (0x0024) Calculator
# --------------