No objects found with FOMO on ESP-EYE with ESP-IDF

Hey there,
I’m running a object detection model (FOMO) on an ESP-EYE. I used ESP-IDF instead of Arduino to flash the C++ Code, and with the changes to the code mentioned here:

it worked. However, I’m always getting the message:

run_classifier returned: 0
Predictions (DSP: 11 ms., Classification: 4893 ms., Anomaly: 0 ms.): 
Predictions (DSP: 11 ms., Classification: 4893 ms., Anomaly: 0 ms.): 
    No objects found
]

in the monitor. When running the model on my phone or via the CLI when flashing the packaged firmware for ESP-EYE, it is detecting objects.

I need it to work this way, because I want to send the results of the detection to another controller via bluetooth. So every help would be highly appreciated. Thanks in advance!

btw I’ve been following this: https://github.com/edgeimpulse/example-standalone-inferencing-espressif-esp32

Hi,

This means that the camera detects no object, and the visual field is empty.
You can print the number of objects found as well by modifying the above code that you have accordingly.

Regards,
Omar

Hi @OmarShrit ,
thanks for the reply. I get that there is no object found, what I don’t get is, why it says so. There is an object in the field of view and when pointing a smartphone camera of a smartphone that the model runs on in the same direction, the smartphone is detecting the object. Also, when I’m flashing the pre-built firmware for the ESP-EYE to the ESP-EYE, the object is detected. But as soon as I’m building the firmware myself with ESP-IDF the camera is either not detected or no objects are detected. So what am I missing? I’m following the tutorial…

Hi,

Can you try to use the edge-impulse-daemon with the firmware that you have built and then sample dataset from the studio?
Also you can use Live classification from the studio to see what is happening after capturing the image,

Regards,
Omar

When trying to use edge-impulse-daemon, I’m always getting the following problem:

[SER] Connecting to /dev/tty.usbserial-1420
[SER] Serial is connected, trying to read config...
[SER] Failed to get info off device Timeout when waiting for >  (timeout: 5000) onConnected

Hi,

Do you get the same issue when you use the edge-impulse-run-impulse?

Yes, kind of:

❯ edge-impulse-run-impulse
Edge Impulse impulse runner v1.15.1
? Which device do you want to connect to? /dev/tty.usbserial-1420 (Silicon Labs)
[SER] Connecting to /dev/tty.usbserial-1420
[SER] Serial is connected, trying to read config...
[SER] Failed to get info off device:undefined. Is this device running a binary built through Edge Impulse? Reconnecting in 5 seconds...

Hi,

How did you get the above results about the prediction?

Because if the runner is not working, it is probably that the device is not flashed correctly.

Inside VSCode I used the ESP-IDF extension and built the project, flashed the device and then run the monitor… There it’s giving me the mentioned output

Maybe some more insight is helpful:

esp/esp-idf/tools/idf.py' '-p' '/dev/cu.usbserial-1420'"...
--- idf_monitor on /dev/cu.usbserial-1420 115200 ---
--- Quit: Ctrl+] | Menu: Ctrl+T | Help: Ctrl+T followed by Ctrl+H ---
ets Jun  8 2016 00:22:57

rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT)
configsip: 0, SPIWP:0xee
clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00
mode:DIO, clock div:2
load:0x3fff0030,len:6604
ho 0 tail 12 room 4
load:0x40078000,len:14780
load:0x40080400,len:3792
0x40080400: _init at ??:?

entry 0x40080694
I (28) boot: ESP-IDF v4.4 2nd stage bootloader
I (29) boot: compile time 10:35:08
I (29) boot: chip revision: 1
I (31) boot_comm: chip revision: 1, min. bootloader chip revision: 0
I (38) boot.esp32: SPI Speed      : 40MHz
I (43) boot.esp32: SPI Mode       : DIO
I (47) boot.esp32: SPI Flash Size : 4MB
I (52) boot: Enabling RNG early entropy source...
I (57) boot: Partition Table:
I (61) boot: ## Label            Usage          Type ST Offset   Length
I (68) boot:  0 nvs              WiFi data        01 02 00009000 00006000
I (76) boot:  1 phy_init         RF data          01 01 0000f000 00001000
I (83) boot:  2 factory          factory app      00 00 00010000 00100000
I (91) boot:  3 storage          Unknown data     01 82 00110000 000f0000
I (98) boot: End of partition table
I (102) boot_comm: chip revision: 1, min. application chip revision: 0
I (109) esp_image: segment 0: paddr=00010020 vaddr=3f400020 size=2282ch (141356) map
I (169) esp_image: segment 1: paddr=00032854 vaddr=3ffb0000 size=02bbch ( 11196) load
I (174) esp_image: segment 2: paddr=00035418 vaddr=40080000 size=0ac00h ( 44032) load
I (193) esp_image: segment 3: paddr=00040020 vaddr=400d0020 size=27c64h (162916) map
I (252) esp_image: segment 4: paddr=00067c8c vaddr=4008ac00 size=04358h ( 17240) load
I (260) esp_image: segment 5: paddr=0006bfec vaddr=50000000 size=00010h (    16) load
I (267) boot: Loaded app from partition at offset 0x10000
I (267) boot: Disabling RNG early entropy source...
Edge Impulse standalone inferencing (Espressif ESP32)
run_classifier returned: 0
Predictions (DSP: 11 ms., Classification: 4893 ms., Anomaly: 0 ms.): 
Predictions (DSP: 11 ms., Classification: 4893 ms., Anomaly: 0 ms.): 
    No objects found
]

@OmarShrit there is an update:
I am able to build this firmware: https://github.com/edgeimpulse/firmware-espressif-esp32 and flash it onto the ESP-EYE so that i can run the edge-impulse-run-impulse command that runs the audio impulse hello-world example. However, if I replace the model and everything necessary with the files that I get by downloading the C++ code from my edge impulse project, the above mentioned problems occur and I cannot use the edge-impulse-run-impulse command. I was unable to check if it’s also working with the camera example as i did not understand how to switch between them just yet.

I think something is missing in the standalone inferencing example, just adding or exchanging the C++ files downloaded from the project doesn’t seem to do the trick here …

Hi Nordcode,

Sorry for my misunderstanding. I thought you had modified the firmware, and then you were building it. Of course, the standalone example is not intended to work with our CLI.

Can I ask what the content of the feature vector that you are trying to classify is?
Would it be possible to print it?

Hi @OmarShrit,

I’m not sure if I get your question right.
I’m trying to count bees in an image with FOMO.
My feature vector looks like this (raw features copied from “live classification”):

static const float features[] = {
    // copy raw features here (for example from the 'Live classification' page)
    0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c4c4b, 0x464341, 0x484240, 0x4e4a45, 0x515049, 0x53534f, 0x5f5e5d, 0x5d5a5c, 0x575450, 0x585454, 0x645f5e, 0x564f52, 0x807964, 0xa8a75e, 0xada86a, 0x979568, 0x4b553e, 0x496336, 0x56673f, 0x5a6b42, 0x516636, 0x516533, 0x506533, 0x495f31, 0x4e6137, 0x53683d, 0x52673b, 0x516638, 0x596e41, 0x4b6034, 0x44582d, 0x516439, 0x4b6233, 0x506939, 0x4b6335, 0x4a6132, 0x4e6534, 0x4e6433, 0x4f6734, 0x556c3c, 0x586d39, 0x5d7137, 0x4f602d, 0x5a702e, 0x5d7431, 0x4d6227, 0x475b29, 0x44572b, 0x50632f, 0x5f7440, 0x4c612e, 0x4a602b, 0x60783e, 0x7a9449, 0x78903d, 0x647630, 0x5f6f3a, 0x59663b, 0x4c5930, 0x697949, 0x768752, 0x809058, 0x77854d, 0x7f8f4c, 0x71853a, 0x536928, 0x586d3b, 0x627a47, 0x5d7242, 0x82935e, 0x6e8143, 0x607436, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3c3938, 0x3e3938, 0x47403d, 0x47413d, 0x4e4b45, 0x504b48, 0x5d5958, 0x5c5757, 0x4a4442, 0x575152, 0x696463, 0x484245, 0x6e6757, 0xbcb67b, 0xa19944, 0xccc875, 0x62673f, 0x475c2e, 0x4d5b38, 0x54643e, 0x4a5d32, 0x485b2e, 0x45592c, 0x506439, 0x566940, 0x495d33, 0x4e6337, 0x586d40, 0x485d2f, 0x465b2f, 0x3f5328, 0x4b5e33, 0x4d6433, 0x526a39, 0x50683b, 0x475e2e, 0x4c6231, 0x526837, 0x526835, 0x435828, 0x4d612d, 0x65773d, 0x51602b, 0x5d7331, 0x5d7330, 0x556a2f, 0x506531, 0x4f6331, 0x4f6330, 0x4a5e2e, 0x526637, 0x4c602f, 0x4f6431, 0x566b29, 0x829842, 0x839745, 0x677c36, 0x70854b, 0x546433, 0x55643a, 0x5d693f, 0x72784c, 0x9ea768, 0x8d9a4d, 0x85954e, 0x758849, 0x788e50, 0x708748, 0x6a7e41, 0x748648, 0x708545, 0x607635, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x433d3b, 0x484341, 0x55504d, 0x524d4a, 0x4e4744, 0x534a47, 0x504843, 0x504843, 0x544e4b, 0x54504f, 0x534f4e, 0x3e3939, 0x433930, 0xaa9e6f, 0x9c9334, 0xd6d270, 0x767b4a, 0x506437, 0x4d6036, 0x4d5f36, 0x495c34, 0x465930, 0x4b5e36, 0x495c33, 0x4d6035, 0x4b5d34, 0x516539, 0x4e6336, 0x465b2e, 0x485d30, 0x405328, 0x475b30, 0x556b3c, 0x4a6231, 0x4d6534, 0x445c2a, 0x455c29, 0x4f6531, 0x4d622e, 0x4d6130, 0x647544, 0x96a56f, 0x516029, 0x647739, 0x596c2e, 0x4a5d23, 0x657a42, 0x61773e, 0x526733, 0x4a5e2c, 0x4f6336, 0x4b6032, 0x526338, 0x4f5f2a, 0x677b29, 0x849941, 0x778e40, 0x7c954d, 0x718841, 0x677741, 0x666f3e, 0x737642, 0x89914a, 0x859344, 0x647131, 0x7c8d52, 0x697f39, 0x6e863c, 0x7e9248, 0x6b7f37, 0x687c3d, 0x6d8642, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f4b47, 0x5c5b56, 0x5d5d58, 0x5b5855, 0x4f4845, 0x584d45, 0x594b42, 0x51453b, 0x544d48, 0x4e4a46, 0x4a4443, 0x4f4a45, 0x392f29, 0xac9c73, 0x9f9636, 0xddd978, 0x939666, 0x4c5d38, 0x54683d, 0x4c5b32, 0x4c5e37, 0x4d613b, 0x4d6039, 0x50633a, 0x4c5f36, 0x405329, 0x485c30, 0x4e6335, 0x465b2e, 0x44582e, 0x43562d, 0x43562d, 0x4b5f33, 0x516938, 0x4c6433, 0x4b6230, 0x445a27, 0x4d6331, 0x516931, 0x4c622d, 0x576a39, 0x62743d, 0x50602b, 0x57672f, 0x52632a, 0x4e612b, 0x596e34, 0x6a8242, 0x587134, 0x556c35, 0x4c5f2f, 0x505f33, 0x5b6a3f, 0x5c6d3c, 0x798b48, 0x768842, 0x637435, 0x6c7f3e, 0x80944d, 0x7e8f51, 0x94a26a, 0x9ca56b, 0x808c4d, 0x717f41, 0x65723f, 0x637242, 0x596b2d, 0x617a2f, 0x778f3b, 0x63762d, 0x607236, 0x697f3b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x484643, 0x53534e, 0x5a5b56, 0x5b5a58, 0x4e4846, 0x978b82, 0xefe7d8, 0xa49789, 0x4c423c, 0x5a5350, 0x544e50, 0x45413d, 0x584f45, 0xbaab7c, 0xd8cd6c, 0xc4bd58, 0xa8a375, 0x3d4425, 0x485333, 0x4c5930, 0x465530, 0x4b5d38, 0x4d6037, 0x55693c, 0x5a6d43, 0x4c6036, 0x465a2e, 0x4b6033, 0x415529, 0x42552d, 0x455832, 0x455930, 0x405429, 0x4a6133, 0x4c6534, 0x4f6634, 0x445a26, 0x415723, 0x566e35, 0x516832, 0x4e6431, 0x576c36, 0x606f3b, 0x65733f, 0x4f5d2a, 0x556633, 0x52672f, 0x577031, 0x5c7535, 0x5c7337, 0x576b36, 0x516131, 0x506230, 0x617540, 0x62723c, 0x6c7946, 0x6c794a, 0x606e3d, 0x687644, 0x70804d, 0x8a9b66, 0x7f8e5d, 0x5d6d3d, 0x6e804f, 0x768458, 0x58683e, 0x5a693a, 0x5f7632, 0x6b8631, 0x6d8138, 0x607037, 0x657933, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4f4e4c, 0x545251, 0x4b4948, 0x474341, 0x423a39, 0x95847e, 0xfffcea, 0xe0d8c1, 0x6b5e53, 0x6c615d, 0x565151, 0x3a3539, 0x726659, 0xccbc86, 0xe4d980, 0xa09635, 0xb9ab7e, 0x676740, 0x585c32, 0x535d31, 0x51643a, 0x52623d, 0x4f5f36, 0x4c6230, 0x516638, 0x506438, 0x55683f, 0x4d6238, 0x495c34, 0x485834, 0x495c34, 0x3d5027, 0x3e532a, 0x51653d, 0x536940, 0x4c6231, 0x465d28, 0x3d521e, 0x425623, 0x506432, 0x4c612e, 0x546631, 0x68763e, 0x727b44, 0x5c6932, 0x566933, 0x4a5f2d, 0x4b5f30, 0x5d723c, 0x60753a, 0x516630, 0x556b34, 0x657b3d, 0x667740, 0x677446, 0x828e5f, 0x7b8a5a, 0x768959, 0x5b6e45, 0x6e7c58, 0x80925b, 0x607442, 0x61754b, 0x607443, 0x6c7c4c, 0x69784e, 0x556436, 0x627838, 0x77913e, 0x738a3c, 0x718347, 0x718440, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x484745, 0x494846, 0x474644, 0x484342, 0x776f70, 0x998787, 0xe4d0c6, 0xfce7d7, 0xad9c89, 0x5e544a, 0x74706a, 0x655f59, 0x9a8b7e, 0xb5a253, 0xcac33b, 0xbeb63d, 0xdbcb8d, 0xe5d8b7, 0xddd2ad, 0x9b9b7a, 0x526137, 0x586d3f, 0x5b6d40, 0x566b3f, 0x4c6030, 0x45592b, 0x4d6136, 0x51643c, 0x546840, 0x465931, 0x42552d, 0x3e512b, 0x475b34, 0x4a5c38, 0x3b4c28, 0x405229, 0x4d6031, 0x546a37, 0x425723, 0x4e6230, 0x4f6331, 0x536632, 0x62723d, 0x6b7941, 0x65753d, 0x60733d, 0x576c38, 0x506431, 0x586d36, 0x556b33, 0x4f6331, 0x5b6f3d, 0x63773f, 0x556a34, 0x6c7e4e, 0x92a473, 0x6b7f4b, 0x647849, 0x778762, 0x56653f, 0x586935, 0x596c3b, 0x5b6f42, 0x566b39, 0x607242, 0x738354, 0x62743c, 0x677d36, 0x809649, 0x6b7e3b, 0x626f3b, 0x6a763e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x494846, 0x555452, 0x4c4b49, 0x423d3c, 0x676163, 0x796f74, 0x9b7f81, 0xf9cecf, 0xf4c6c1, 0x896b6a, 0x474340, 0x4a4439, 0xbab097, 0xd1c56f, 0xd5cc4c, 0xcfbf57, 0xcab279, 0xfbdfcc, 0xf6d3c3, 0xf6e0db, 0x7e7e66, 0x506137, 0x54693a, 0x4d6131, 0x4b5e2d, 0x54693a, 0x4d6035, 0x43522c, 0x42512e, 0x495d34, 0x3e5129, 0x3c4f29, 0x4d5e3a, 0x425030, 0x455231, 0x41502a, 0x475b2e, 0x506532, 0x526532, 0x586b3a, 0x4f6433, 0x556a38, 0x536532, 0x667840, 0x70814a, 0x62743f, 0x5d723e, 0x718753, 0x687c49, 0x566b37, 0x596f40, 0x65774a, 0x4d5e2c, 0x46582e, 0x5c704a, 0x6d8358, 0x617648, 0x768a61, 0x85976f, 0x6c7c51, 0x596a39, 0x798d5c, 0x7b9064, 0x6e8157, 0x5a6c44, 0x607047, 0x687944, 0x728941, 0x677c39, 0x4b5a26, 0x5b653a, 0x4f572a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x383735, 0x383735, 0x4f4e4c, 0x575251, 0x4a4443, 0x5d5353, 0x675258, 0xc19ea3, 0xf8cccf, 0xe5c0ba, 0x675446, 0x5e4f3d, 0xebdfbb, 0xeedcb2, 0x9f8759, 0xb29457, 0xe3bf94, 0xedceaa, 0xecc2a0, 0xf5c9ba, 0xbcaf9a, 0x53623b, 0x4e6235, 0x4d6031, 0x495e2f, 0x4e6135, 0x4a5930, 0x4a562f, 0x45532b, 0x50643b, 0x43562f, 0x41522e, 0x3a4626, 0x394826, 0x53663e, 0x5b6e47, 0x52653a, 0x4e6331, 0x4e602e, 0x516233, 0x4e6533, 0x4f6433, 0x506432, 0x5e7340, 0x5c703b, 0x586834, 0x5a6f3a, 0x6b814e, 0x667848, 0x687e4c, 0x5d7348, 0x53663d, 0x4a572c, 0x35421e, 0x4c5d3c, 0x60764b, 0x6d8455, 0x6a8052, 0x647a47, 0x6f824d, 0x6b7d4b, 0x6e8352, 0x677d4d, 0x5d7147, 0x667954, 0x60744c, 0x5d7239, 0x789247, 0x677e43, 0x4a5a32, 0x4d5832, 0x4e552e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5a5758, 0x575655, 0x5f5e5c, 0x6a6666, 0x595153, 0x483832, 0x8a7a6d, 0xedd7d5, 0xf0d3dc, 0xfddbd6, 0xba9583, 0xcfb58e, 0xcfbd72, 0xd9c282, 0x987549, 0xbb9e6b, 0xfeebc0, 0xf8e0a7, 0xf1cba4, 0xf9ceb2, 0xd4bf9e, 0x59633b, 0x4d6338, 0x4e6338, 0x465b2f, 0x45582e, 0x4b5a32, 0x4c5932, 0x4f5d36, 0x576b43, 0x53673e, 0x53653e, 0x455533, 0x50623f, 0x52683d, 0x4c6135, 0x4f6335, 0x516634, 0x506331, 0x56683a, 0x516538, 0x566c3e, 0x5e7443, 0x516733, 0x576b39, 0x58693d, 0x4e5f35, 0x546839, 0x5b6d40, 0x556a3e, 0x50623b, 0x4b5833, 0x354316, 0x435424, 0x53673c, 0x5a6f40, 0x617642, 0x5c723d, 0x5f753c, 0x61763a, 0x70834c, 0x6c804a, 0x6a824a, 0x8ba36f, 0x71835a, 0x53663d, 0x627940, 0x66803e, 0x677c4a, 0x495935, 0x697650, 0x818c64, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6b6566, 0x736e6d, 0x67615e, 0x554c4a, 0x524344, 0x7a6255, 0xead6ab, 0xeccdb6, 0xdeb3bc, 0xedc7cf, 0xf0c8c2, 0xcdb384, 0xb8a84f, 0xc4ae52, 0xaa944a, 0xe3d499, 0xffefb4, 0xf9d080, 0xfae3ae, 0xffe5cc, 0xd9bc9d, 0x5a5b35, 0x4a5f35, 0x485932, 0x4a5c34, 0x4e6038, 0x5c6b45, 0x54623f, 0x54633f, 0x5f744d, 0x5d7246, 0x52673a, 0x536742, 0x4e6241, 0x495c34, 0x506438, 0x516534, 0x4d5e2c, 0x536634, 0x607245, 0x4d5a35, 0x4d5d35, 0x526736, 0x596f3a, 0x576c3a, 0x586b46, 0x536443, 0x4f6335, 0x5c733f, 0x4e5e33, 0x3a4520, 0x3e4a1f, 0x4f5e2c, 0x556b32, 0x5f743e, 0x546831, 0x5c7237, 0x597031, 0x698141, 0x677e3e, 0x607538, 0x5a6937, 0x5d713d, 0x70844c, 0x808d5e, 0x6a784c, 0x677b41, 0x576b34, 0x526132, 0x4d5b32, 0x6b7750, 0x707a55, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6a6560, 0x726b6a, 0x74696a, 0x5f4d49, 0x674f44, 0xd5b498, 0xffdeac, 0xf7ce90, 0xe5bfa9, 0xd8b3bd, 0xe9bdbf, 0xe8d0aa, 0xbdb15c, 0xc0b151, 0xe2db8b, 0xd8ca7f, 0xcca56c, 0xf4bd86, 0xeec796, 0xfdd4b7, 0xd3b697, 0x585731, 0x52633c, 0x54603b, 0x53623c, 0x5a6842, 0x53613d, 0x576541, 0x596844, 0x647951, 0x5b6f44, 0x4c6035, 0x5c6d49, 0x596a48, 0x5d7149, 0x5d7044, 0x576a39, 0x4f602e, 0x546735, 0x4d6132, 0x3e4d25, 0x4e5c35, 0x576a3d, 0x47592b, 0x556735, 0x4d5f2d, 0x4d5d34, 0x57683c, 0x60723b, 0x5b6937, 0x556236, 0x5c6d3d, 0x667947, 0x536634, 0x5e7338, 0x647a38, 0x637939, 0x5f7535, 0x667d3a, 0x657b3b, 0x556a30, 0x566938, 0x526233, 0x5e6c36, 0x8c975e, 0x7b874d, 0x7e8f4d, 0x536526, 0x617237, 0x9baa74, 0x5b653a, 0x505838, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x686563, 0x655e5f, 0x5a494a, 0x98817c, 0xeacdbe, 0xf0c5a8, 0xf4c292, 0xf5c783, 0xe6c2a1, 0xdfb9c0, 0xe2adb5, 0xebc7b6, 0xcbb47f, 0xbda369, 0xbcae6a, 0x9c9343, 0x9f8a4f, 0xd7af76, 0xefb88d, 0xecbca1, 0xe9cbac, 0x64633f, 0x546740, 0x576843, 0x52603b, 0x586642, 0x5d6a47, 0x4f5a37, 0x485431, 0x51663f, 0x586b42, 0x54653c, 0x576641, 0x677753, 0x62774c, 0x506636, 0x586c39, 0x5b6e3a, 0x586c36, 0x51622f, 0x4e5a31, 0x57653d, 0x4c6030, 0x47562a, 0x556433, 0x556533, 0x49582d, 0x4f5e34, 0x5f6d3d, 0x647244, 0x536133, 0x718450, 0x5e723f, 0x435229, 0x4f602d, 0x4d6327, 0x566b32, 0x5f743d, 0x5a6d37, 0x5c7138, 0x5e7438, 0x5f7538, 0x607541, 0x536932, 0x677a3d, 0x667b3c, 0x788e4a, 0x677a39, 0x687a38, 0x8a9a59, 0x626d3a, 0x5c653f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x6d6061, 0x5a4846, 0x7f635c, 0xefc7bd, 0xf9c8bc, 0xf4b9a1, 0xf3bb8e, 0xf4c08e, 0xecbea0, 0xe8bdb7, 0xe1aeb4, 0xefcabc, 0xb69c70, 0x9a7a4b, 0xa19856, 0x958c47, 0xb3935f, 0xeabd77, 0xecb48f, 0xebb09c, 0xfad5b9, 0x7f7a58, 0x4b5a33, 0x525e3c, 0x4e5a37, 0x4f5a37, 0x4f5b38, 0x4a5432, 0x485331, 0x4e5d3a, 0x4e5d37, 0x415026, 0x495831, 0x505d36, 0x526031, 0x535f2d, 0x505c26, 0x49571f, 0x545b23, 0x666735, 0x686a41, 0x51572e, 0x4e5728, 0x546432, 0x556533, 0x49582e, 0x414f29, 0x4d5d32, 0x566437, 0x626f40, 0x63723c, 0x738746, 0x657a39, 0x4b5a2e, 0x4e5c2f, 0x455725, 0x50662d, 0x5f7239, 0x62723d, 0x62753f, 0x667c45, 0x617841, 0x6d834e, 0x6d824d, 0x647847, 0x576b38, 0x617838, 0x627931, 0x637733, 0x617332, 0x647338, 0x707d48, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5c4747, 0xb1988c, 0xfdebd4, 0xe7beaf, 0xeeb4ac, 0xefb29f, 0xeca88e, 0xf3b695, 0xf4bc9a, 0xeeb9a0, 0xe5afa8, 0xf7c7b9, 0xc7a67d, 0x8b7038, 0x9a8a54, 0xcab29c, 0xeecac1, 0xf7cfa5, 0xebab8d, 0xefb099, 0xffcab1, 0xb28d73, 0x525231, 0x566441, 0x576641, 0x555e3b, 0x444c2a, 0x515d38, 0x5b6b44, 0x54663a, 0x566238, 0x4a5331, 0x444f2a, 0x4d552a, 0x4e4c25, 0x6c6b42, 0x9a9266, 0x968455, 0xb6a173, 0xdfcaa2, 0xdecba7, 0xc0ad8a, 0x8c845b, 0x58612f, 0x55652f, 0x546539, 0x485632, 0x4e5a2f, 0x55663a, 0x5c6a3e, 0x63733a, 0x6d7f39, 0x6e7f3a, 0x627240, 0x506133, 0x596c3d, 0x6a8147, 0x627a3c, 0x6c7f47, 0x6c7e4a, 0x657646, 0x5e6f42, 0x566737, 0x526535, 0x52653a, 0x5f6f43, 0x566632, 0x6d833d, 0x6b8038, 0x798e48, 0x637333, 0x5b6b2f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x987978, 0xf8ddd1, 0xffecd7, 0xecd0c2, 0xe4bcb4, 0xedb6a8, 0xf8b0a2, 0xefa691, 0xfbaf94, 0xfba88e, 0xf09e8c, 0xf5afa1, 0xd4aa86, 0x806931, 0xc8a57f, 0xfbc7be, 0xe3b0aa, 0xecbba5, 0xf1af94, 0xf7ba8f, 0xf9b894, 0xeab69e, 0x70694e, 0x586a4c, 0x5a6b44, 0x5e6c47, 0x5b6945, 0x53623a, 0x58683f, 0x536538, 0x526337, 0x434f31, 0x465131, 0x535b32, 0x97896b, 0xf9d7be, 0xfed0b7, 0xfdd4b0, 0xfeddb7, 0xffe3bf, 0xfdd7b8, 0xfecfb4, 0xfbd3b5, 0xcbb692, 0x726e3f, 0x657041, 0x5f6e45, 0x5d6a38, 0x5f6c35, 0x536030, 0x65703f, 0x646d3d, 0x6f7b4f, 0x6d8250, 0x6c804f, 0x657a48, 0x708751, 0x5d723c, 0x697a48, 0x728155, 0x627145, 0x516133, 0x56693b, 0x5a6f42, 0x4f6236, 0x647447, 0x5e6e3d, 0x657738, 0x6a7e39, 0x6d813f, 0x6a7d45, 0x657647, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf0cbc9, 0xf2c8c5, 0xf5cec4, 0xf1d1c6, 0xe3bbb4, 0xeeada8, 0xf9aea6, 0xf6a295, 0xf4998d, 0xfb9d8e, 0xed9683, 0xebaa96, 0xf7d2b6, 0xe8cfa9, 0xe2b69a, 0xe4b199, 0xeabba7, 0xe9b8a7, 0xefbb95, 0xfab885, 0xf3ad84, 0xfed3b4, 0x938e6e, 0x5b6b4a, 0x5c6842, 0x596e45, 0x576c42, 0x55653b, 0x4c5229, 0x53582d, 0x566538, 0x59683f, 0x555e38, 0x8a8564, 0xfbdfc6, 0xf7c5b1, 0xf3c4ac, 0xf3e0bf, 0xefd9b5, 0xe7c6a6, 0xecc2a8, 0xf1baa6, 0xf5baa8, 0xfcc7ba, 0xe0c2aa, 0x65633f, 0x5b653a, 0x747d4c, 0x868857, 0x81835c, 0x717650, 0x616b43, 0x637249, 0x788c5a, 0x6e834e, 0x697d49, 0x647644, 0x546235, 0x505e32, 0x516035, 0x5b6f43, 0x576d3d, 0x5d7242, 0x5a6d42, 0x63734c, 0x637243, 0x596b32, 0x687835, 0x4f631f, 0x758950, 0x7e9566, 0x6b825a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9f8683, 0xfacec8, 0xf5beb4, 0xf6beb5, 0xe6aaa6, 0xeda6a3, 0xf0a19c, 0xfaa09b, 0xee9a93, 0xe8a197, 0xeaaa9c, 0xf2bcaa, 0xf9d3c0, 0xfad4b7, 0xf0c1a2, 0xf1c4a2, 0xf2c2ab, 0xeab0a2, 0xecb591, 0xfbba9b, 0xf6b3a0, 0xdbb89e, 0x74754d, 0x566739, 0x55633a, 0x58673c, 0x505b2e, 0x63653a, 0xa49f72, 0xbfb784, 0x928f5e, 0x64642e, 0x6c6535, 0xc7b795, 0xf2d8bb, 0xf1d0b1, 0xfacfb4, 0xfdcfba, 0xfed9c1, 0xfee2c7, 0xfdddc5, 0xebc8b5, 0xebbdb1, 0xf6bcb9, 0xefc0b9, 0x957a62, 0x8e7d56, 0xf2e3be, 0xecd9c6, 0xf6e5d6, 0xa29b7e, 0x606735, 0x8b9962, 0x798856, 0x607344, 0x607346, 0x4b582d, 0x515e32, 0x596939, 0x48592a, 0x5f7342, 0x526731, 0x526630, 0x4b5a2d, 0x5f6e44, 0x5f7139, 0x667a31, 0x7a8c3c, 0x6b7d33, 0x708448, 0x778e5b, 0x5d7544, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4d4141, 0xa87f76, 0xeeb4a1, 0xf0b5a5, 0xe9aea6, 0xecb2a9, 0xeda09b, 0xf29093, 0xe89a98, 0xe2aaa3, 0xe4a698, 0xe3a68f, 0xebb79b, 0xe9bc8f, 0xe8ba7a, 0xe0ba83, 0xddb698, 0xe0ada1, 0xeec5b4, 0xe3b1a7, 0xf4bbb6, 0xb79788, 0x4b502f, 0x637349, 0x607246, 0x5f6539, 0x726c3e, 0xc6b68c, 0xc7b88c, 0xbfb782, 0xd5c898, 0xb2a26a, 0xc9b788, 0xfeeeca, 0xf9e5b9, 0xf6d9ac, 0xf7d6ac, 0xf7d9b6, 0xfbe7c5, 0xfce7c6, 0xf9e7c6, 0xfaebce, 0xeec8b8, 0xe6b0a8, 0xefb7b1, 0xd89d8b, 0xf1b592, 0xffcbad, 0xf0c4b1, 0xe5b9ae, 0xe4c4b3, 0xab9d7d, 0x87875b, 0x525e29, 0x45552d, 0x4f613f, 0x42502a, 0x566637, 0x5f7440, 0x586c37, 0x5d7139, 0x607537, 0x586a30, 0x505f2f, 0x516231, 0x647836, 0x748c2f, 0x72852a, 0x74863a, 0x586c2e, 0x536731, 0x576d38, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x4c3e41, 0x6b553b, 0xe6c384, 0xedba87, 0xfaceba, 0xfde4cf, 0xf1b5a6, 0xea9f95, 0xe29f93, 0xdda295, 0xde9f8b, 0xe9aa92, 0xe7b89a, 0xdcba8b, 0xdabd80, 0xd8ba8f, 0xdabca8, 0xdec0b5, 0xe8c6c0, 0xd7a9a8, 0xf2bfc3, 0xb9a290, 0x51573b, 0x555d36, 0x586031, 0x837844, 0xebd8a5, 0xddcc99, 0x8d7a45, 0x8e7e4f, 0xbaab77, 0xf9eebf, 0xfffad1, 0xf9e5ac, 0xf7cf79, 0xfdd678, 0xf7d07d, 0xfadca4, 0xfdecc1, 0xfef9d0, 0xf9eacd, 0xfde7ce, 0xf5c8ab, 0xe7b7a7, 0xfbbfb2, 0xf9a991, 0xfac8ab, 0xfab396, 0xf1b9a0, 0xf2c8b4, 0xebb8a5, 0xffd7c9, 0xc4ab92, 0x5b5f33, 0x505633, 0x495739, 0x43522a, 0x51612e, 0x576c38, 0x596a37, 0x52652f, 0x687d42, 0x5a7038, 0x526335, 0x4e5c28, 0x71803a, 0x6f852f, 0x798c34, 0x667521, 0x5b672c, 0x505c2d, 0x5c6d37, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60514e, 0xd8c69e, 0xf8d897, 0xe8b984, 0xf3c8a3, 0xfeefcb, 0xfdf6d5, 0xf2e4c6, 0xd3aa91, 0xe3a58e, 0xedaf95, 0xe9b29a, 0xd8b1a0, 0xd3b49c, 0xd1b89d, 0xd5bcac, 0xd6b9ae, 0xd9bbaf, 0xddb2ac, 0xe1b1b0, 0xf0bcb9, 0xb19371, 0x665f39, 0xa39a71, 0xccc48f, 0xdcc99a, 0xf0e3aa, 0xe8e099, 0x9c8d48, 0xbfaf7b, 0xf9efc6, 0xfff7da, 0xfdebc2, 0xecc586, 0xf2c273, 0xf5c470, 0xedbb71, 0xefbf8b, 0xf7bfa5, 0xfcd6b1, 0xfff9d7, 0xf6ebbf, 0xe7bb82, 0xf9ccac, 0xf6b79e, 0xf9bb9f, 0xfab899, 0xebb296, 0xf7c7b0, 0xedb7a3, 0xe9ae96, 0xf1b49c, 0xe2b39e, 0x848559, 0x67794e, 0x4e6039, 0x576436, 0x566a2f, 0x576d32, 0x63743e, 0x4b5e28, 0x597036, 0x586c38, 0x49552c, 0x596335, 0x6a7738, 0x6d7f39, 0x798b38, 0x8b9b47, 0x6c7738, 0x646e3f, 0x5f6d35, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5b4b48, 0xe6c9a1, 0xeec39c, 0xf3c4a4, 0xefbc8e, 0xf0bd97, 0xf9e5c2, 0xfffdd9, 0xdbb795, 0xe5a78b, 0xf1b49d, 0xdead99, 0xcfaca5, 0xcfb1a6, 0xcfafa4, 0xd5b1ac, 0xd3b3a7, 0xd5b8a9, 0xd7b2b0, 0xe0aab3, 0xe3a88c, 0xebbd61, 0xe0bf6b, 0xd3ae72, 0xd0b67e, 0x897652, 0x7a713a, 0xa49e51, 0xd1c583, 0xdcd49e, 0xefedbe, 0xdfdbad, 0xf5d5a3, 0xefbb8a, 0xf1c092, 0xedba8f, 0xecb992, 0xebba97, 0xf1b79c, 0xf5b396, 0xfee5c7, 0xddd66d, 0xceb438, 0xf5b489, 0xfbb696, 0xf9bca6, 0xee9a74, 0xf4ccb3, 0xefceaa, 0xe3ab5e, 0xf3c285, 0xf7c8a7, 0xe5a898, 0x958f66, 0x728655, 0x707f51, 0x636f3b, 0x5c7533, 0x5c7031, 0x596c31, 0x5f703a, 0x5a6f37, 0x526130, 0x434a25, 0x565f37, 0x6d7844, 0x606f33, 0x718435, 0x81933f, 0x6a7934, 0x6d7844, 0x6a763c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x60514d, 0xe8c3a7, 0xe7b99d, 0xecbea4, 0xf4be96, 0xf0b891, 0xe9b794, 0xf7dab3, 0xf3d8a6, 0xf0ca9e, 0xe7b496, 0xddab97, 0xd0a9a4, 0xcdada3, 0xd1ac9d, 0xd7aba0, 0xd5b0a2, 0xdac0b0, 0xd9beba, 0xe0bdc0, 0xe3b8a8, 0xf0c281, 0xf9d288, 0xdec072, 0xbfa566, 0x776637, 0x776939, 0xc3b37f, 0xa39868, 0x8b8559, 0x939559, 0xa1a258, 0xdec188, 0xefbe93, 0xeabd8a, 0xe7b988, 0xe8ba8b, 0xeabb8e, 0xe6bc8f, 0xedb098, 0xf5c0a9, 0xe0d05b, 0xcbbb36, 0xf6b48b, 0xf7b798, 0xf29e8c, 0xefb08b, 0xf9d6b5, 0xeccc85, 0xedc040, 0xeec678, 0xf5d0ab, 0xe3b4a2, 0x968463, 0xb7ad84, 0x989a6d, 0x5f6f37, 0x687f3f, 0x627639, 0x55672f, 0x657543, 0x637943, 0x586738, 0x4f5933, 0x505d34, 0x6d7b47, 0x6a753f, 0x6d7e39, 0x738738, 0x6d7e3b, 0x576330, 0x66703b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x9d8f85, 0xffd6bf, 0xe8b797, 0xe6b99a, 0xf1bd9c, 0xf1bf9b, 0xebb48e, 0xeaba8b, 0xf1bf8b, 0xfad09a, 0xebc796, 0xd7a389, 0xcf9f9b, 0xcda8a3, 0xcbb0a3, 0xd5b9af, 0xd6b9af, 0xd8c1b2, 0xdac1b5, 0xdfbfb9, 0xe2b6ab, 0xf4b996, 0xf2b88e, 0xe5bd85, 0xd0b971, 0xb5a762, 0x937b4a, 0xa9906f, 0x736640, 0x72623c, 0x7b6d40, 0x978d4d, 0xb69b63, 0xecc199, 0xebc093, 0xe7bc90, 0xe8bd92, 0xecc097, 0xecb895, 0xeeb197, 0xf2b79f, 0xe2d19b, 0xcdc074, 0xe3b086, 0xed9783, 0xefa488, 0xf7d8b8, 0xf1ce9e, 0xecc460, 0xebbd64, 0xecbe96, 0xe3c08f, 0xf2d6bc, 0xfde0c7, 0xf4c8ac, 0x8d865c, 0x5b7036, 0x5b692f, 0x536530, 0x556333, 0x4d5c2d, 0x566938, 0x617243, 0x4a5830, 0x3c4d21, 0x55662f, 0x657137, 0x687839, 0x6c8038, 0x6b7d3e, 0x707b4c, 0x80875a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7b6962, 0xf8c9b1, 0xf0bca3, 0xe8bba6, 0xecb69b, 0xf0b999, 0xebb590, 0xe8ae7f, 0xf0b37b, 0xf4c084, 0xffde9e, 0xdcad89, 0xce999c, 0xd2aaae, 0xccb1ae, 0xd2b8a9, 0xd4bba3, 0xd6b69d, 0xdbac8a, 0xdca784, 0xe2a987, 0xf1ae8a, 0xfbb791, 0xba8054, 0x8f733a, 0xa99a65, 0x7a6239, 0x8c7c57, 0x786742, 0x7d6e4a, 0x8d7a4f, 0x877747, 0xc3aa82, 0xf0cfa9, 0xebcca7, 0xe5c7a3, 0xe0bd91, 0xe9bb96, 0xeeb59b, 0xe9b09b, 0xefbaa9, 0xeac4a2, 0xc1b06c, 0xc6a666, 0xe89f81, 0xf1caab, 0xfccda8, 0xf2bb8b, 0xe6b87c, 0xe6bc89, 0xe9bd95, 0xe3bb96, 0xe9cbab, 0xf3c4a9, 0xec9e8f, 0xa37859, 0x57712d, 0x6a7845, 0x4f5e31, 0x4a5830, 0x4c5932, 0x545f36, 0x637544, 0x526135, 0x3f4720, 0x55632f, 0x586c32, 0x65793c, 0x5a712c, 0x5f7531, 0x66763e, 0x828b60, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x563c42, 0xc29087, 0xe2ae9e, 0xe9b8a8, 0xf6b8a7, 0xeeab94, 0xeaa97e, 0xf5b87c, 0xfbc285, 0xebb57c, 0xdcae69, 0xe2b694, 0xd7a3b1, 0xd3a6aa, 0xd9b0ac, 0xd5ae99, 0xc3a077, 0xdcaa82, 0xe7a173, 0xe8976f, 0xefa580, 0xefad86, 0xf0ad88, 0xcf8f6b, 0x74693d, 0x646c3e, 0x787651, 0x626943, 0x646140, 0x646342, 0x595835, 0xc1a989, 0xf1cbab, 0xceb692, 0xbfb28c, 0xc9b587, 0xe0c48a, 0xe8be90, 0xe5b896, 0xe7b9a2, 0xe5b3a7, 0xe8bfa0, 0xbaa664, 0xac8f51, 0xf5bd9e, 0xffdabd, 0xf6c5a2, 0xe9b58e, 0xe6b694, 0xe7b990, 0xe9bb8f, 0xe7bb92, 0xe7c6a1, 0xedb4a0, 0xf5948e, 0xf48e8d, 0x776f40, 0x5c703e, 0x546736, 0x56673b, 0x5c6c43, 0x4b5a2e, 0x4e602f, 0x546235, 0x4e582d, 0x5d6a37, 0x607333, 0x4d5f26, 0x596f32, 0x667e38, 0x627931, 0x50631c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x975b62, 0xd77a80, 0xec898b, 0xeaa5a3, 0xe5ada7, 0xe0a08b, 0xefae81, 0xf7bd7c, 0xf9c185, 0xefaf7c, 0xa96e3f, 0xd09f98, 0xdaa7b3, 0xdaa8a4, 0xcca08f, 0xbf9e71, 0xb08a4f, 0xd19461, 0xf4a471, 0xe39f6a, 0xe6a475, 0xf5aa85, 0xf1a88a, 0xcc9576, 0x515131, 0x485b36, 0x54613f, 0x4f6241, 0x454d2e, 0x4a5834, 0x4f613d, 0xcbb69a, 0xfdd9b8, 0x8f885e, 0x4e5429, 0x9b9559, 0xd3c276, 0xd2b675, 0xe1b98e, 0xe3af95, 0xeeb8a8, 0xdeb895, 0xcbbe7d, 0xbea969, 0xe5bb92, 0xf6d0ab, 0xefbe98, 0xe7b38c, 0xe5b390, 0xe5b88d, 0xf0c196, 0xe7ba96, 0xe3bba0, 0xe69a86, 0xf99c8b, 0xc48c77, 0x646534, 0x465625, 0x5a6f3d, 0x54693a, 0x425728, 0x465a2a, 0x495b2a, 0x4f5e2b, 0x5b6938, 0x5d6b38, 0x697d37, 0x576b2a, 0x516826, 0x637e34, 0x5d782a, 0x718a3b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf39d9a, 0xff8287, 0xff817d, 0xf0978b, 0xe8a097, 0xf0a392, 0xeba888, 0xf7cc98, 0xfbca93, 0xffc395, 0xd8a263, 0xc59a72, 0xddb1ae, 0xd4b18e, 0xa08b3d, 0xa89a3c, 0xb99847, 0xdf9c6a, 0xf6ae7f, 0xe9a872, 0xe8a474, 0xf3a785, 0xf0a48e, 0xdfa18e, 0x676145, 0x3e512b, 0x4f5c39, 0x415733, 0x455233, 0x4f633d, 0x516039, 0x7c7e59, 0xb3b08c, 0x4f562f, 0x5a673d, 0x96965e, 0xaca656, 0x9c9044, 0xb2955e, 0xe3b88b, 0xe4b58a, 0xa4824b, 0x948c42, 0x9a8844, 0xd2b783, 0xf9d6ac, 0xe8b38b, 0xe6b18a, 0xe7b38b, 0xeabb96, 0xe1b098, 0xdcafa1, 0xddb4a7, 0xf39d83, 0xdf8365, 0x755c39, 0x515d29, 0x50602f, 0x4b5e2e, 0x415222, 0x435525, 0x4b5a2f, 0x526231, 0x5c6f32, 0x4a5a23, 0x667348, 0x798a4d, 0x607632, 0x566f29, 0x627b32, 0x536a17, 0x687e2a, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf99491, 0xf6857f, 0xfa9479, 0xf1a37f, 0xf4a48d, 0xf99085, 0xf7a291, 0xe0b998, 0xf5cc9f, 0xdba66e, 0xb88d4a, 0x987239, 0xc2a758, 0xd1d03b, 0xb3b219, 0xc5b93e, 0xd1ab54, 0xf4ad7f, 0xf7b684, 0xf3ae79, 0xe1b380, 0x9b8658, 0x998260, 0xc4a48d, 0x8d8a68, 0x52663c, 0x586b44, 0x506942, 0x546543, 0x52613e, 0x4e5d37, 0x4d5f36, 0x4c603d, 0x506241, 0x4b5836, 0x7b7d52, 0x918d4a, 0x837c36, 0x787132, 0xc5ae71, 0xf5cb8d, 0x95762e, 0x7f7426, 0x84702c, 0xb79969, 0xe1b28d, 0xe5ab84, 0xe6aa87, 0xeab094, 0xdeab9a, 0xd8a9a2, 0xdeb5b1, 0xe3c3ba, 0xf09a81, 0xf58b72, 0xe28b80, 0x6d5f3a, 0x3f5c27, 0x425526, 0x455528, 0x4b5a2f, 0x475a2e, 0x4a5e2a, 0x6c8140, 0x5d7136, 0x647145, 0x626f38, 0x617537, 0x526827, 0x516a20, 0x69802b, 0x748829, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xea7b84, 0xf09996, 0xf6b193, 0xfcc89d, 0xfee0ba, 0xf8cfac, 0xf6a38f, 0xdc9393, 0xb48671, 0xb39355, 0xb99638, 0xbe9a4c, 0xdfbc33, 0xdae101, 0xafbb07, 0xccb841, 0xbf995b, 0xa46e3d, 0xf8b787, 0xf6b886, 0xa48c5f, 0x4b5c31, 0x3d5228, 0x57603c, 0x5a6b3f, 0x54683f, 0x556b44, 0x4c6039, 0x4f6038, 0x526339, 0x3c512d, 0x4c532f, 0x475129, 0x53683e, 0x4b5d39, 0x87825e, 0xb89662, 0x81632e, 0x7a6c34, 0x86692a, 0xcf925b, 0x97712f, 0x81772e, 0x8f8540, 0x715228, 0x9d6646, 0xe9ab82, 0xefb08d, 0xe6a292, 0xdeaba2, 0xe3b6a9, 0xe7b0a3, 0xe9aea5, 0xe89784, 0xf18c7c, 0xf38b8c, 0x8f5a4a, 0x594e25, 0x4e4d28, 0x34461d, 0x49572f, 0x4e5d2e, 0x3f5423, 0x536934, 0x718445, 0x6d7d3d, 0x657137, 0x6f8042, 0x5d722f, 0x5d762d, 0x627925, 0x70862b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xf598ac, 0xf499a8, 0xf19591, 0xfaa085, 0xf8aa87, 0xfabb9d, 0xffd4ba, 0xe7a9aa, 0x77645b, 0x837d59, 0xd6bf40, 0xe4d81b, 0xe8db20, 0xc8cf00, 0x9dad03, 0x8b831f, 0x7e612d, 0xa87139, 0xffc196, 0xd2b389, 0x615f37, 0x586841, 0x506237, 0x4d5e33, 0x546b3f, 0x4a5f34, 0x53653c, 0x506338, 0x475c30, 0x4e5936, 0x8c7660, 0x9f8b6e, 0x9d9874, 0x82825b, 0x454a21, 0x907251, 0xf9a98a, 0x98643c, 0x9b7544, 0xa88950, 0x9d7b47, 0xb78e5a, 0x99763a, 0x9c7d3a, 0x78672c, 0x876433, 0xad764a, 0xab8359, 0xba8f72, 0xdd9890, 0xe58a83, 0xe67f74, 0xe67f7a, 0xed7d81, 0xed787d, 0xe66f80, 0xdd777f, 0xff8b91, 0xb36860, 0x444929, 0x40522c, 0x48582f, 0x4a6032, 0x566938, 0x65763e, 0x5d6c33, 0x6b7540, 0x5e6d39, 0x4e6027, 0x617835, 0x657b2e, 0x617722, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xe3889b, 0xe58097, 0xe67e8f, 0xf18c8c, 0xf59e88, 0xf09f81, 0xfbaa93, 0xf0b6ac, 0x7b5c56, 0x72594a, 0xe99768, 0xecae20, 0xdbd044, 0xc1c538, 0xa2a40a, 0x6f6310, 0x6c5725, 0xaf8547, 0xc69664, 0x827d56, 0x4c5c36, 0x4e613a, 0x576a3e, 0x506638, 0x4e6137, 0x4c5f35, 0x4f6338, 0x4b5f34, 0x4b5934, 0xaf9284, 0xf7b6b1, 0xf4b9a9, 0xfbd3b7, 0xf5c9b0, 0xceaf8f, 0xb99a79, 0xf6b59c, 0xd5977b, 0xc09676, 0xa7815f, 0x96754e, 0xa08752, 0xcf9760, 0xf19969, 0x9b7735, 0x79772c, 0x847132, 0x6b5d21, 0x856b35, 0xcd796a, 0xe26968, 0xe6726f, 0xe5797e, 0xec7d89, 0xec778a, 0xe47689, 0xdba39f, 0xbe7870, 0x9f7b66, 0x3c461f, 0x464b24, 0x454e29, 0x495d32, 0x4d5c2e, 0x5d6d3d, 0x647340, 0x606c38, 0x586536, 0x4e5e2a, 0x576d2e, 0x627935, 0x556926, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xda7590, 0xe3748d, 0xe97b95, 0xe68092, 0xec8385, 0xf69586, 0xf28f82, 0xf6968c, 0xdbab9b, 0xbe8675, 0xf66a78, 0xf38b7b, 0xfed1ba, 0xe4d381, 0xa5ae00, 0x979718, 0x6d6b1d, 0x9c7a48, 0xa0805d, 0x4f5429, 0x4b5d32, 0x4d6236, 0x46592a, 0x475b32, 0x47582f, 0x4b6237, 0x4d5e39, 0x7d745e, 0xcaa59c, 0xe9afaf, 0xe2a5a1, 0xe09f90, 0xe0aa91, 0xf0bda8, 0xf0bca7, 0xf1c8af, 0xeabba8, 0xe4a896, 0xe1a798, 0xcb9c8a, 0xbd8f72, 0x977f52, 0x816230, 0xdf986d, 0xc09859, 0x817e30, 0x888743, 0x746d2c, 0xa57e4d, 0xd88778, 0xdb7674, 0xde7175, 0xe5707e, 0xe77582, 0xea768e, 0xee7d8f, 0x966a5d, 0x444e29, 0x444920, 0x646138, 0x747548, 0x546435, 0x516335, 0x606f41, 0x677548, 0x616f3f, 0x677540, 0x5d6937, 0x53652d, 0x495e1f, 0x4b6127, 0x3e521f, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xb65771, 
...```
...

0xd8c3b8, 0xccb3b0, 0xbcaaa4, 0xb5a78e, 0xb8a474, 0xc3b080, 0xc8b495, 0xcdbdb0, 0xcabbba, 0xd4c3c4, 0xab9b87, 0x8b7c5c, 0xa38f79, 0xb1a39b, 0xc6c1c3, 0xc2b1bb, 0xbaa4a5, 0xbda695, 0x898756, 0x4d5d0f, 0x485c1f, 0x546e20, 0x5a7130, 0x374b19, 0x5c712d, 0x7f9535, 0x8ca035, 0xadb281, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xd1d2b6, 0xcbd2bd, 0xa6b5a9, 0x8b9f99, 0x849a93, 0x7b9084, 0x6a7d70, 0x647761, 0x61735d, 0x5d6b58, 0x718062, 0x586f3e, 0x475c35, 0x637c23, 0x7e9400, 0xafc311, 0x717348, 0x848867, 0x66723b, 0x3a4c04, 0x6b7942, 0x5f6a47, 0x4e5b26, 0x505226, 0x525528, 0x525c20, 0x556020, 0x74812f, 0x63731d, 0x718536, 0x586d28, 0x434b0e, 0xa3ac2b, 0xc3d032, 0xa49b68, 0xc0abaa, 0xc2aba2, 0xc7aca4, 0xbfa49e, 0xbb9d9b, 0xb89a8f, 0xaf9677, 0xa99273, 0xac9282, 0xc2a596, 0xc0a49c, 0xbea89a, 0xbdaf81, 0xbbaf67, 0xb9ac62, 0xbeb47c, 0xc5bda8, 0xc0bcbc, 0xc4c2bf, 0xb3a896, 0x847160, 0xbcaaa7, 0xb8a7af, 0xb8a3a9, 0xb39a8b, 0xac9970, 0xc6b991, 0xa3a670, 0x505c1a, 0x76882b, 0x516707, 0x607237, 0x465c1d, 0x3d5005, 0x7d8d3d, 0x93a45d, 0x78875c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7d8450, 0x869062, 0x64744e, 0x627556, 0x5f7358, 0x465841, 0x4e6145, 0x667857, 0x495939, 0x3a4a26, 0x4b5e32, 0x455a2e, 0x526233, 0x5e6f07, 0x8c9e0b, 0xa3b700, 0x60652f, 0x505247, 0x889064, 0x47550e, 0x838e5b, 0x67723d, 0x4d5719, 0x48511a, 0x495223, 0x58612d, 0x6c7930, 0x778634, 0x55671a, 0x4d621f, 0x4c5c26, 0x556023, 0xb9c45e, 0x9da535, 0x90886b, 0xc0abae, 0xb59d8a, 0xb89c8e, 0xbda098, 0xc2a69f, 0xb59c8c, 0xb2997d, 0xb19476, 0xa68a6e, 0xa78e7c, 0xc2abab, 0xb9a8a2, 0xb8b191, 0xb8b389, 0xbab17e, 0xbcb280, 0xbaad90, 0xc0b3aa, 0xc8c1b6, 0xb1a28d, 0x775f51, 0xb69e9b, 0xb5a098, 0xae968b, 0xaa9477, 0xafa268, 0xc5bc8d, 0x7c7d54, 0x49550e, 0x809340, 0x607810, 0x4f6416, 0x5d7718, 0x8a9c3e, 0x616534, 0x5b6636, 0x7b8e74, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x364b16, 0x465d2c, 0x3e5528, 0x3e522d, 0x495a3b, 0x3f4f32, 0x435635, 0x566946, 0x5f7250, 0x42562f, 0x50682c, 0x4d6232, 0x586438, 0x6e7435, 0x5d6605, 0x7e8f05, 0x95a60a, 0x585b28, 0x6d6c5c, 0x707d46, 0x3c4719, 0x535e27, 0x636e29, 0x4e5918, 0x3d4919, 0x3a451e, 0x505d2e, 0x576926, 0x5a7020, 0x4c6019, 0x46552b, 0x4a5b1e, 0x84914e, 0x667033, 0x81806d, 0xbaacaf, 0xbeaa9a, 0xbfa891, 0xa89679, 0x82745e, 0x988877, 0xb3a087, 0xb69d81, 0x9c8364, 0x967e77, 0xbaa3a7, 0xac9b93, 0xb6a79e, 0xb6aea1, 0xbab09c, 0xbbab91, 0xbca58b, 0xb59b85, 0x9a826a, 0x8b7159, 0x896e60, 0xb59d95, 0xb19b8f, 0xa8937f, 0xb6a286, 0xb8ac83, 0xbcb594, 0x8f8f76, 0x444d26, 0x5b6a33, 0x617525, 0x516412, 0x6f8810, 0x61700f, 0x40471b, 0x4a592a, 0x7d917d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x334b1e, 0x3f5a2c, 0x496235, 0x50633e, 0x455935, 0x556e49, 0x516745, 0x2d421d, 0x4b5f3a, 0x566740, 0x758748, 0x465721, 0x505831, 0x8f8f69, 0xc0be82, 0xd1ce8b, 0xcfd866, 0x98ad14, 0x526319, 0x677153, 0x2f3612, 0x8a9163, 0xabb47b, 0x4a5520, 0x324018, 0x323e23, 0x435032, 0x3e4f1c, 0x4d631c, 0x5f742c, 0x405424, 0x3a5013, 0x596a2e, 0x3d4b1a, 0x3d4526, 0x8d8775, 0x928772, 0x7e705f, 0x49472a, 0x272b14, 0x434532, 0x55513b, 0x837862, 0x9c807b, 0xb294a3, 0xb59eac, 0xaa9792, 0xae9b92, 0xb59c93, 0xb69e92, 0xb69e90, 0xb79b8f, 0xb09182, 0x805f46, 0x84654c, 0x9d8170, 0xac9386, 0xa89181, 0xae9886, 0xb7a390, 0xae9f8a, 0xb8ab99, 0xbebca5, 0x48522b, 0x485731, 0x3a4a18, 0x505d1b, 0x687a1b, 0x677619, 0x424b0d, 0x546430, 0x819674, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x32471c, 0x354e1d, 0x415d28, 0x425c2b, 0x3e5428, 0x486033, 0x4e5f35, 0x535c35, 0x747851, 0x7a7e4f, 0x616d2c, 0x75853f, 0x565f35, 0xa3a87e, 0xbfc199, 0xa2a66d, 0xbbbc7b, 0xa2b223, 0xa1b81e, 0x4b5728, 0x3a4021, 0xb5b98c, 0xb3b986, 0x485126, 0x2f3d1c, 0x2d3823, 0x2d3920, 0x384720, 0x4c5e2c, 0x637442, 0x5d7044, 0x576840, 0x4a5b25, 0x404f19, 0x3a411e, 0x8a895d, 0x5f5e3b, 0x1d1f0e, 0x1e230e, 0x3a422f, 0x3a472b, 0x1d2306, 0x393621, 0xb8a0af, 0xd1bcce, 0xb4a5b7, 0xb8abb7, 0xad9f98, 0xaa9288, 0xa79487, 0xb29e92, 0xb79695, 0xb1888e, 0x88645a, 0x90735f, 0xa78e7a, 0xa68a7c, 0xa98f80, 0xac9885, 0xac9988, 0xad9a89, 0xb59f8c, 0xbab196, 0x5a6432, 0x2d3d0d, 0x27390c, 0x4c5a26, 0x58631f, 0x899b23, 0x66750e, 0x6f7a48, 0x71805c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x364a26, 0x2f461e, 0x415a2d, 0x41592c, 0x3c5529, 0x4b6333, 0x4d5f31, 0x7d8658, 0x939261, 0x9f9d68, 0xb6bc79, 0xaab569, 0x606a3b, 0x525e2f, 0x415022, 0x49552f, 0x5e6732, 0x798330, 0xbbca62, 0x465622, 0x3c4b21, 0x55632b, 0x58642f, 0x535c38, 0x313b23, 0x223018, 0x28371f, 0x4f612e, 0x58683c, 0x637553, 0x54664b, 0x58684b, 0x4e5b2c, 0x404c14, 0x616a3c, 0x7b8345, 0x71773e, 0x2c301b, 0x2e351f, 0x404b39, 0x3a462e, 0x202803, 0x302d1a, 0xaf9eaf, 0xc0b3c2, 0xb2acb5, 0xb8b2b8, 0xb7afa9, 0xafa49c, 0xafa89e, 0xb3a79f, 0xb79ea3, 0xbf9caf, 0xae898e, 0x957862, 0x9c876b, 0xa18975, 0xab9282, 0xad988a, 0xb39e8e, 0xb7a49b, 0xa2957c, 0x67663c, 0x4e592b, 0x354618, 0x334713, 0x47591a, 0x566816, 0x9fb61a, 0x7e910a, 0x585e34, 0x4f5435, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2e421b, 0x31471d, 0x455d2f, 0x435b2d, 0x475f33, 0x475e32, 0x455a2e, 0x536233, 0x616936, 0x5c6028, 0xa5ab67, 0x687127, 0x5c6832, 0x64714a, 0x4b5a35, 0x4d5c3c, 0x4e5d2f, 0x647629, 0x7b8d37, 0x48592b, 0x3e522b, 0x516524, 0x627626, 0x60702f, 0x2a3815, 0x252e1d, 0x39470f, 0x4d6110, 0x536540, 0x566a4f, 0x3f533c, 0x45553c, 0x647520, 0x7a8c20, 0x839246, 0x818930, 0x959b47, 0x3b4217, 0x2c3a20, 0x3a4a37, 0x3b4a2c, 0x1e2700, 0x6c665d, 0xb5a0a8, 0xab9499, 0xad9b96, 0xb29e93, 0xac9587, 0xaf9e8e, 0xb3a796, 0xb6aa9b, 0xbdaba4, 0xc2a9b2, 0xaf929c, 0x826958, 0x7c6c54, 0x92826f, 0x9c8676, 0xa89484, 0xb3a09b, 0xb4a99c, 0x595c2c, 0x3c4515, 0x4b5936, 0x3e4d2f, 0x3c4c29, 0x3e4e25, 0x5a6b2e, 0x6b7e18, 0x839728, 0x626e27, 0x333a18, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2a3f15, 0x44592e, 0x40572a, 0x3d562a, 0x364e22, 0x33471c, 0x44592d, 0x506233, 0x5b6639, 0x727a44, 0x777f42, 0x65702e, 0x576625, 0x899470, 0x4c5945, 0x334428, 0x475927, 0x6d813f, 0x475821, 0x4d5f3a, 0x455735, 0x5c721c, 0x768e19, 0x79883f, 0x2d3f14, 0x3f412b, 0x7d8527, 0x5c6b25, 0x465b41, 0x425541, 0x3f523c, 0x3b4941, 0x7e9220, 0x647c00, 0x444c1e, 0xb0af5f, 0x8c8e30, 0x4f5f09, 0x3c541a, 0x344729, 0x3c4d2c, 0x252d09, 0x999686, 0xc4aba7, 0xba9b9b, 0xc4a29b, 0xb69383, 0x9f7a6d, 0xa58078, 0xa78779, 0xa98c81, 0xb29391, 0xb59599, 0xb09399, 0xa08984, 0x716a5d, 0x717062, 0x8e877a, 0xaa9c9d, 0xb7ada8, 0x8b8f65, 0x3f491f, 0x4b5a3b, 0x455539, 0x36452f, 0x3e4e36, 0x374729, 0x364723, 0x303e15, 0x475914, 0x6b7f2a, 0x4b5e21, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f4519, 0x394e22, 0x354b1f, 0x385124, 0x3a5026, 0x2d4016, 0x2f4316, 0x435726, 0x5c6b3c, 0x606a36, 0x576024, 0x677435, 0x5f6f2f, 0x677748, 0x516141, 0x344427, 0x3d5123, 0x3a5011, 0x445624, 0x516346, 0x3e512b, 0x7a903e, 0x85973d, 0x313812, 0x243011, 0x828a55, 0xa1a948, 0x343f13, 0x475c3f, 0x455942, 0x3e513a, 0x404f48, 0x5e6f27, 0x4b5e00, 0x5a681e, 0xb4b761, 0x858736, 0x788549, 0x667b3b, 0x445829, 0x3c4c2d, 0x2f3a19, 0x4b512c, 0x857d58, 0x8c7962, 0x9d8467, 0x9d8258, 0xa08464, 0xa47c60, 0xa07b54, 0x9f7c60, 0xa07c70, 0xa27d74, 0xb28d8d, 0xb8a09d, 0x787a6a, 0x526351, 0x606d58, 0x848484, 0x9aa575, 0x738734, 0x354624, 0x2e4027, 0x3b4b37, 0x414f37, 0x384624, 0x4b5f2e, 0x3c5122, 0x3b4b24, 0x2c3914, 0x364a19, 0x647e31, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x32471b, 0x354a1d, 0x304518, 0x30461b, 0x3f552d, 0x32441e, 0x334619, 0x637341, 0x74804d, 0x646e3d, 0x566225, 0x63732c, 0x64733c, 0x677a3c, 0x70863b, 0x586d33, 0x435529, 0x344714, 0x4a5f2d, 0x4d5f47, 0x3f5037, 0x5b6942, 0x454e21, 0x717754, 0x2e3216, 0x737e35, 0x86972f, 0x2e3b0c, 0x47573d, 0x4a5b44, 0x3e523b, 0x3f5338, 0x465836, 0x45532c, 0x5f693b, 0x86904a, 0x7c8345, 0x5c652c, 0x505c22, 0x485a24, 0x364b0e, 0x33460f, 0x2d370b, 0x55582b, 0x81755b, 0xa59171, 0xa18f5f, 0xa29070, 0xa28c58, 0x9d8845, 0xa58c63, 0xa48574, 0x997e6c, 0x7c6a5b, 0x625847, 0x404d2c, 0x4c6146, 0x465847, 0x4a5a50, 0x5c7045, 0x50672d, 0x354632, 0x45583f, 0x405036, 0x344025, 0x3c4825, 0x465526, 0x334518, 0x2c3b12, 0x273510, 0x23370b, 0x3c5320, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2a3e13, 0x374c21, 0x2d4316, 0x374d22, 0x3c5029, 0x384a26, 0x37491f, 0x516035, 0x869466, 0x737e4a, 0x525b1e, 0x5c6a26, 0x4c5920, 0x4f5b25, 0x58682e, 0x4e5e2b, 0x5c6a3b, 0x5e6d38, 0x5c6937, 0x425134, 0x435247, 0x3d4a32, 0x676d4b, 0xc6c89d, 0x333b1c, 0x4a5824, 0x4d6016, 0x46581f, 0x455635, 0x4a5943, 0x43563a, 0x475b3d, 0x48593b, 0x586243, 0x616843, 0x656e3d, 0x495224, 0x333f13, 0x30400c, 0x2e3e0d, 0x678208, 0x4f6504, 0x384429, 0x5f5f43, 0x796a5a, 0xa49181, 0xa7977f, 0xa6957a, 0xa99b70, 0xa8966b, 0xa88f73, 0xae9284, 0xa18c7b, 0x4c5137, 0x2f3719, 0x3a4b2c, 0x4a5e45, 0x485b49, 0x5b6c5b, 0x3c4e38, 0x2f4125, 0x40543d, 0x34432b, 0x273217, 0x334022, 0x4b5936, 0x3f4d26, 0x3c492a, 0x3a462a, 0x152104, 0x1e2a09, 0x25320b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x2f4118, 0x354a20, 0x384c23, 0x3c5025, 0x283a0c, 0x374b1b, 0x344518, 0x28350e, 0x4a5933, 0x687749, 0x576528, 0x657835, 0x5f6f30, 0x4e591b, 0x515f2c, 0x4e5d32, 0x758455, 0x5c6a35, 0x35400d, 0x39472a, 0x3c4840, 0x43533c, 0x616b54, 0x797d63, 0x2c361c, 0x283416, 0x2f3e12, 0x303f13, 0x2e3c1b, 0x313e1e, 0x2a3b1c, 0x2f3f26, 0x4b5938, 0x6e7951, 0x7c8255, 0x707643, 0x55592c, 0x474e25, 0x353f15, 0x3f4e1d, 0x668015, 0x5f6d28, 0x63605a, 0x7f706e, 0xa08988, 0xa6918f, 0x9f8e84, 0x9d8b7a, 0xa6967e, 0xa49077, 0x9e8674, 0xa68f82, 0x9b8c79, 0x42462d, 0x2c3717, 0x3c4f2f, 0x445b43, 0x445a3f, 0x3b4f29, 0x394d25, 0x46592c, 0x485930, 0x384426, 0x263114, 0x2a3718, 0x515e3e, 0x505e3e, 0x676f51, 0x545c3e, 0x4d543b, 0x1f2809, 0x475024, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x384b25, 0x31461e, 0x394e25, 0x3e4e23, 0x3e4d18, 0x6f8543, 0x72854c, 0x2c3d10, 0x374721, 0x304118, 0x3c511e, 0x546b31, 0x576b2f, 0x657531, 0x6b7c3f, 0x6a7b4c, 0x6c7c4a, 0x596933, 0x404e1c, 0x515e41, 0x354532, 0x44583c, 0x485549, 0x3f483b, 0x202b14, 0x27321e, 0x303d1f, 0x293712, 0x2d3b18, 0x2d3b18, 0x273316, 0x1c2612, 0x2a3519, 0x59653c, 0x69743f, 0x747f42, 0x6b733e, 0x5f673a, 0x3b4311, 0x3e4b0f, 0x293a0b, 0x646953, 0xaea097, 0xb29d9e, 0xa38b8c, 0xad9798, 0xa79998, 0xa19192, 0xa18b8a, 0xa98f89, 0xad918e, 0xb19897, 0xa79490, 0x645c52, 0x45472b, 0x58653d, 0x50613c, 0x435431, 0x364921, 0x44572a, 0x596a38, 0x354019, 0x293213, 0x253110, 0x1c290b, 0x424e32, 0x475338, 0x677055, 0x475033, 0x757f64, 0x64704f, 0x738153, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x293e14, 0x2b3f18, 0x2a3b12, 0x55612f, 0x8f9c5f, 0x7c9149, 0x4c611e, 0x374c19, 0x3e5227, 0x44572d, 0x445830, 0x445b2a, 0x475d28, 0x637834, 0x596b2c, 0x5b6b3b, 0x4c5d2b, 0x425222, 0x425129, 0x48533a, 0x495a3e, 0x4b613a, 0x445545, 0x3a4738, 0x26321d, 0x2b3621, 0x2c391a, 0x293510, 0x343f1e, 0x323f1e, 0x313d1b, 0x1b250a, 0x333e25, 0x566241, 0x515f2d, 0x69763a, 0x66713d, 0x505e2f, 0x2f3814, 0x2d3906, 0x2e3e0b, 0x454933, 0x5e564e, 0x4f4733, 0x887d61, 0x84785c, 0xa29b85, 0xaca196, 0xaa9693, 0xa88f89, 0xb09492, 0xb39a9c, 0xb8a1a5, 0xb2a5a4, 0x706d52, 0x606639, 0x5f693b, 0x384220, 0x3d4b31, 0x374a24, 0x43552a, 0x2c3217, 0x252d12, 0x24300f, 0x1e2b0d, 0x2a361b, 0x4d5841, 0x46553e, 0x3e4f34, 0x425036, 0x3a4929, 0x2d3d0c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x34491e, 0x33471f, 0x2f3f16, 0x98a26d, 0x9ea96c, 0x4c5f1d, 0x617436, 0x4c5f33, 0x475b31, 0x3d4f22, 0x394a1d, 0x435726, 0x3e531e, 0x5e762e, 0x435418, 0x35421a, 0x394723, 0x364425, 0x37422c, 0x3c4538, 0x4b5940, 0x526840, 0x445243, 0x323c2e, 0x1e2b1b, 0x26321f, 0x293717, 0x273210, 0x313d1f, 0x35461f, 0x384716, 0x1e2b01, 0x384526, 0x3a442a, 0x4c4f31, 0x70764b, 0x5d633b, 0x3a4321, 0x242d13, 0x2d3817, 0x3e481b, 0x1e2510, 0x171f0d, 0x474f28, 0xa5a676, 0x484908, 0x8c8e52, 0x8b8957, 0x8b886a, 0x716749, 0x8a7a66, 0xa9978f, 0x968981, 0x676755, 0x595f39, 0x5c6537, 0x414925, 0x1a2208, 0x253317, 0x445828, 0x50662e, 0x394620, 0x2a3317, 0x222e0f, 0x243115, 0x1a270b, 0x343f27, 0x4d5c48, 0x46563f, 0x424e38, 0x727a5d, 0x737c50, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x3b4c21, 0x385126, 0x3c4d25, 0x98a06f, 0x9ba464, 0x93a650, 0x738646, 0x3e5224, 0x4c5e34, 0x415625, 0x394f1d, 0x384a1e, 0x2f4816, 0x647d34, 0x6d843a, 0x3f541e, 0x2f3f22, 0x22301a, 0x344230, 0x485443, 0x3c4b38, 0x4a5a47, 0x465445, 0x2d392d, 0x192716, 0x2a3723, 0x2b371f, 0x1f280e, 0x2c3617, 0x465625, 0x3f4a1a, 0x313f18, 0x1d290c, 0x34391f, 0x686a4e, 0x656845, 0x4e5332, 0x2b361a, 0x212b11, 0x2f371e, 0x293419, 0x2b381a, 0x44522f, 0x56623e, 0x6d7450, 0x565a36, 0x5a5b2f, 0x767c40, 0x5a682e, 0x586133, 0x444726, 0x585741, 0x464b39, 0x33422a, 0x3d4b21, 0x576539, 0x3d4b23, 0x233212, 0x283519, 0x65742d, 0x90a23b, 0x56641f, 0x313d21, 0x2d3a20, 0x313e1f, 0x27350f, 0x1f2c0e, 0x43543a, 0x475843, 0x3f4d39, 0x4a4d32, 0x6f6b45, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x80983f, 0x52673f, 0x404f23, 0x919a61, 0xbdd255, 0x687f24, 0x41561f, 0x4d6331, 0x445924, 0x364b1e, 0x3e5026, 0x3e4e1e, 0x506734, 0x576d2e, 0x475d18, 0x445928, 0x2b3b22, 0x253322, 0x2f3d2d, 0x344032, 0x3f4d3f, 0x3b4a3e, 0x424f43, 0x2f3a2e, 0x343e34, 0x394235, 0x1d2613, 0x192008, 0x1f270c, 0x57643e, 0x616631, 0x575e34, 0x252d1a, 0x3b422e, 0x5f6945, 0x48512c, 0x424b2a, 0x232d15, 0x2e331e, 0x2f3512, 0x525f2c, 0x768558, 0x404c36, 0x363f2d, 0x3a402e, 0x353729, 0x2c2e16, 0x7a8255, 0x70803f, 0x47531b, 0x2f3813, 0x182003, 0x39442d, 0x38452e, 0x303f16, 0x415127, 0x3f542d, 0x364b22, 0x233312, 0x394427, 0x485724, 0x425626, 0x2c3d20, 0x27361f, 0x344528, 0x40512e, 0x313e21, 0x3b4932, 0x455541, 0x44543f, 0x1e2609, 0x8d8e68, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x88a909, 0x546a11, 0x525a2e, 0xbccc5c, 0x97b412, 0x5b6f32, 0x3f522a, 0x48601e, 0x63793c, 0x4c6035, 0x354411, 0x839057, 0x74894e, 0x4d6224, 0x3f541a, 0x3c502c, 0x283827, 0x303f32, 0x314133, 0x3b483d, 0x404d43, 0x425146, 0x455247, 0x1f281c, 0x324133, 0x334134, 0x2f3c31, 0x283628, 0x263424, 0x525e3e, 0x84874f, 0x9c9d76, 0x41493c, 0x2a3628, 0x515d43, 0x374422, 0x36431b, 0x34401c, 0x454c2a, 0x585e39, 0x878e6a, 0x414a2f, 0x2c3524, 0x383f32, 0x2a3023, 0x181c0f, 0x3d442f, 0x505c35, 0x384619, 0x3c4921, 0x32411d, 0x2a3c16, 0x2b3b18, 0x4a5439, 0x36441b, 0x374921, 0x384f2c, 0x324b26, 0x314224, 0x2c3b29, 0x30422a, 0x354a33, 0x3a4c3c, 0x3d4b3e, 0x3f4e3d, 0x384932, 0x33412d, 0x31402d, 0x40503d, 0x435440, 0x313e20, 0x454d28, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7c9807, 0x89a016, 0x595c15, 0xb5cc36, 0x7f9c1a, 0x5c6d46, 0x475f15, 0x84a51e, 0x617341, 0x47552d, 0x818c54, 0xb2bb81, 0x6a7a40, 0x3b500e, 0x516633, 0x3b4f36, 0x2d3d33, 0x37463e, 0x35463a, 0x445349, 0x3d4b44, 0x54615a, 0x2d382c, 0x1d2515, 0x465341, 0x4d5b4b, 0x465546, 0x40503d, 0x41513a, 0x3d4624, 0x777c48, 0x62684f, 0x2c362c, 0x333d2b, 0x4f5943, 0x465430, 0x3d4c1e, 0x475626, 0x3d481f, 0x4a5335, 0x424739, 0x3e4239, 0x3f4636, 0x24281a, 0x1a1f0c, 0x64694c, 0x3a4427, 0x303f1f, 0x364328, 0x2d3b22, 0x28391b, 0x21330f, 0x2a3812, 0x48542d, 0x3b491b, 0x2c3d15, 0x3a4f32, 0x2e4427, 0x30442a, 0x23371c, 0x2b3f27, 0x344437, 0x37493c, 0x34453a, 0x2f3e34, 0x3c4c3d, 0x3b4a3f, 0x1e2c1d, 0x364435, 0x465647, 0x34452f, 0x27361b, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x546511, 0xa3b824, 0x8e942d, 0xabc410, 0x849e3b, 0x5f722a, 0x8db500, 0x789510, 0x394617, 0x5c6b3b, 0x8c995e, 0x868e53, 0x444f1d, 0x4c6025, 0x5f7548, 0x2e4132, 0x374540, 0x344339, 0x39483f, 0x49584f, 0x435145, 0x46544a, 0x262f25, 0x4f5844, 0x474d3e, 0x404539, 0x252f16, 0x415023, 0x40501e, 0x485024, 0x818b61, 0x303c2e, 0x454f45, 0x656d52, 0x49512e, 0x4b582d, 0x4a592b, 0x425025, 0x3f4b2a, 0x323e24, 0x2c3522, 0x313728, 0x24291c, 0x121505, 0x5e6446, 0x6c764f, 0x273313, 0x425237, 0x314222, 0x253718, 0x233419, 0x26321a, 0x2e381c, 0x354112, 0x36430e, 0x202c05, 0x2c3a24, 0x31432b, 0x3a4e36, 0x425545, 0x374a3b, 0x2f402d, 0x30432f, 0x3d4f40, 0x354939, 0x2f4132, 0x35463a, 0x3b4a3a, 0x364636, 0x425345, 0x344635, 0x324631, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x485420, 0x77832a, 0xb4bd41, 0xb0c106, 0x819424, 0x92b40a, 0x94ba00, 0x4e5f21, 0x53632b, 0x798f3b, 0x62810d, 0x7b9525, 0x616e2c, 0x596e40, 0x465f42, 0x2e4036, 0x37443c, 0x35443b, 0x42534b, 0x45544f, 0x4d5b4c, 0x303e2b, 0x333f2f, 0x27331b, 0x101a04, 0xf1009, 0x313a1b, 0x536625, 0x3a4909, 0x3e4c15, 0x4f5f44, 0x344135, 0x525a4b, 0x71755b, 0x4d532c, 0x3d491b, 0x485727, 0x4e5c30, 0x404d27, 0x222c14, 0x161f0e, 0x182110, 0x17200e, 0x2c3224, 0x515b48, 0x394b31, 0x3f542c, 0x475f26, 0x2d3e20, 0x203219, 0x283824, 0x263320, 0x141e0b, 0x1e2709, 0x323e0a, 0x263308, 0x212f14, 0x2e4325, 0x384c36, 0x47594f, 0x455a4c, 0x445b49, 0x3a4d3e, 0x304133, 0x354839, 0x394c3d, 0x364a3a, 0x334634, 0x3e503e, 0x495c48, 0x384c35, 0x42563c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xbbcb4b, 0xbcc75b, 0xbec055, 0xd8e12b, 0xb1c40b, 0x98bf00, 0x647b05, 0x42551c, 0x6d8a1f, 0x6a8808, 0x819f22, 0x61820e, 0x56701b, 0x55693b, 0x3e4d3c, 0x303e32, 0x314137, 0x2c3a34, 0x4a5940, 0x505f51, 0x435148, 0x29371e, 0x263110, 0x121c07, 0x232916, 0x1e1e0e, 0x565d39, 0x3d4d0e, 0x3b490d, 0x3a4c21, 0x31432a, 0x354438, 0x3d4a3a, 0x404b31, 0x3f4826, 0x3f4e22, 0x4b5c28, 0x586a33, 0x38461d, 0x232d14, 0x242f19, 0x15210c, 0x212c1f, 0x333f37, 0x3a4839, 0x34452f, 0x283c1a, 0x374d1e, 0x28391f, 0x263822, 0x21331f, 0x1d301b, 0x1b2b18, 0x14200c, 0x263313, 0x273512, 0x2c4115, 0x394d26, 0x2c3c26, 0x3c4d37, 0x4a5f46, 0x506556, 0x576c60, 0x465b4c, 0x374c3e, 0x2f4233, 0x364939, 0x37463e, 0x2c3b30, 0x3b4d37, 0x334626, 0x2b3e17, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5f6914, 0x707c1c, 0x909731, 0x969d1a, 0x9dac0f, 0x96aa00, 0x98a24a, 0x76822f, 0x6c8800, 0x82951f, 0x899841, 0x687e28, 0x718034, 0x979f71, 0x707b61, 0x303931, 0x3b3f32, 0x8a8c5f, 0xa6a072, 0x586444, 0x5e7244, 0x2d3c11, 0x202a12, 0x2d351d, 0x323724, 0x51543b, 0x5f683e, 0x192900, 0x364616, 0x3a4f2f, 0x374b37, 0x334637, 0x41543e, 0x2f3f23, 0x3b4926, 0x3e5226, 0x566836, 0x5c6c35, 0x3d4c21, 0x212d15, 0x182512, 0x223020, 0x314037, 0x344731, 0x2d4325, 0x283922, 0x263528, 0x233224, 0x1e2f1b, 0x263723, 0x263722, 0x293b28, 0x20321e, 0x22331e, 0x22301d, 0x2a3721, 0x334424, 0x34452a, 0x25331f, 0x182908, 0x4c6138, 0x526744, 0x566a59, 0x61766b, 0x53695c, 0x46584d, 0x34443b, 0x2a3b2e, 0x263725, 0x21331a, 0x2f4124, 0x2b3b1d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa6aa66, 0x9aac49, 0x92a810, 0x8c9e07, 0x94a524, 0x95a406, 0xacb747, 0xbbc855, 0xa0b036, 0x9ba54e, 0x89943b, 0xa1ad50, 0xa2a35d, 0x737b3e, 0x94a063, 0x75754b, 0x8e8457, 0xb9b667, 0x8b8f4d, 0x65723e, 0x72834b, 0x21300a, 0x2d3920, 0x6c7857, 0x2f3623, 0x848767, 0x434f20, 0x3a4c25, 0x3c4d2c, 0x374b33, 0x364937, 0x3c4d3d, 0x364930, 0x293d1a, 0x34491e, 0x40552a, 0x46582d, 0x404c22, 0x38451a, 0x132107, 0x222f28, 0x2e3e36, 0x30443a, 0x344638, 0x314128, 0x25351c, 0x1c2a18, 0x233420, 0x1c2d1a, 0x2a3825, 0x1d2a14, 0x2b3825, 0x31412c, 0x263820, 0x3f4c3a, 0x495539, 0x232f11, 0x2a381f, 0x27371d, 0x172708, 0x283811, 0x273514, 0x202f19, 0x3e4f3c, 0x5f6f60, 0x607266, 0x4e645a, 0x3a4f42, 0x213722, 0x263a1d, 0x233617, 0x303f26, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x8f9936, 0x798826, 0x707d27, 0x727f1d, 0x95a827, 0xa0b423, 0x718604, 0x7b8e11, 0x7d8732, 0x7a7f4e, 0x969c69, 0xb1ba70, 0xc0c87f, 0x95a345, 0x848b37, 0xbeba75, 0xe3dd8d, 0xa0a753, 0x576f25, 0x5d7133, 0x546231, 0x23300b, 0x414f29, 0x657550, 0x404a2f, 0x525c38, 0x3e4d27, 0x2b3e21, 0x22331c, 0x324630, 0x324530, 0x364734, 0x33462d, 0x3b5128, 0x394d20, 0x394c25, 0x21310f, 0x162304, 0x3c4b25, 0x273820, 0x2d3c3b, 0x30403f, 0x36493e, 0x354630, 0x253519, 0x1b280e, 0x182714, 0x2b3c2d, 0x20331f, 0x2b3a26, 0x131f0b, 0x15200c, 0x293520, 0x2f3f28, 0x455139, 0x505b34, 0x2e3d15, 0x142505, 0x1a2b0d, 0x1c2c12, 0x1d2a11, 0x212c18, 0x26321b, 0x243116, 0x3a4831, 0x687765, 0x667969, 0x556a5e, 0x405647, 0x283e26, 0x1f3316, 0x223515, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x46562c, 0x3f4e1c, 0x495b23, 0x5a6d27, 0x758736, 0x6c7a36, 0x536621, 0x6e7a2e, 0x878b4e, 0x7c8158, 0x616435, 0x7a8044, 0x838f4a, 0x999f4a, 0x8c8d48, 0x71713a, 0x8a8f4f, 0x768439, 0x6a822d, 0x647e29, 0x62772b, 0x677444, 0x5e6945, 0x7c8665, 0x3a4729, 0x425339, 0x3b5034, 0x293d20, 0x384b30, 0x354930, 0x2f4528, 0x405440, 0x495c42, 0x43592b, 0x384a20, 0x2e3a1e, 0x243215, 0x152509, 0x273a22, 0x384c3f, 0x314443, 0x3c4d46, 0x394a34, 0x243813, 0x233510, 0x233412, 0x192a12, 0x2a3c2d, 0x223826, 0x2c3c2c, 0x111f0d, 0x1a2612, 0x18260e, 0x313f21, 0x4c5533, 0x535e35, 0x3c5126, 0x2b4322, 0x2a3c23, 0x20311b, 0x1d2e19, 0x213119, 0x203119, 0x213219, 0x223018, 0x283823, 0x334531, 0x3e503e, 0x465948, 0x475e4d, 0x344934, 0x293b24, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x456128, 0x445e23, 0x526b30, 0x5c7439, 0x40551c, 0x3b5019, 0x586830, 0x7f8649, 0x8d9952, 0x6a7830, 0x737942, 0x797740, 0x5e5b0f, 0x797b32, 0x717745, 0x545735, 0x424622, 0x546023, 0x728c30, 0x829b26, 0x93a248, 0x8c9464, 0x737758, 0x5e6543, 0x24340c, 0x394d29, 0x3d512f, 0x394d2b, 0x415532, 0x2b4120, 0x374a30, 0x4f6049, 0x4b5f39, 0x475c2b, 0x34441f, 0x243114, 0x1f2e11, 0x1a2a13, 0x34463c, 0x314542, 0x3b4c47, 0x364532, 0x465530, 0x6a7e4c, 0x5a6d3b, 0x58683d, 0x2b3c1f, 0x283828, 0x27392c, 0x2e3e2f, 0x1b2915, 0x1c2b14, 0x26361a, 0x324221, 0x424d2c, 0x46532b, 0x40542a, 0x42593b, 0x2e4631, 0x253a24, 0x223420, 0x21311c, 0x253821, 0x263a22, 0x30412b, 0x32432d, 0x2d402d, 0x2a3726, 0x283826, 0x425645, 0x3f5543, 0x3a503d, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x658c12, 0x648232, 0x536b38, 0x4d6531, 0x4f6534, 0x485f26, 0x5e772a, 0x657421, 0x8f9e3d, 0x6b7d09, 0x656b30, 0xa6a575, 0xb1b042, 0xb2bb53, 0x3a4521, 0x414834, 0x5b6239, 0x5f6c30, 0x566c25, 0x9fad48, 0x999f4a, 0x76774d, 0x615f45, 0x434520, 0x6f8241, 0x415623, 0x2b401b, 0x2a3e22, 0x2a3d22, 0x2c4225, 0x34452f, 0x4d5e42, 0x495a31, 0x2f4015, 0x1d2b0b, 0x333f22, 0x18280e, 0x29382c, 0x394b4a, 0x354845, 0x3f4d40, 0x2a371b, 0x46532a, 0x627541, 0x5f723c, 0x5c6b3f, 0x344227, 0x213121, 0x293a2e, 0x2a3929, 0x1f2d18, 0x23331c, 0x2f4027, 0x324029, 0x1b2812, 0x1d2a0d, 0x273919, 0x2a3e22, 0x384f35, 0x364933, 0x283924, 0x20311b, 0x1d2e16, 0x263219, 0x2a331c, 0x232c18, 0x172110, 0x131d0a, 0x13210c, 0x354733, 0x2e4331, 0x2b4031, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x5d760a, 0x54682d, 0x445627, 0x40561e, 0x586b3d, 0x627532, 0x658627, 0x4c5f1a, 0x81884e, 0x838540, 0x80815b, 0x6b724a, 0xa2a150, 0x99a053, 0x374627, 0x37402f, 0x4a4d31, 0x464b25, 0x4d582f, 0x6f7b39, 0x767e43, 0x515534, 0x33371d, 0x3f4722, 0x808b56, 0x61704a, 0x455941, 0x3a5040, 0x2d4233, 0x2b3d2e, 0x293828, 0x5f6e4b, 0x35411a, 0x1c260a, 0x263318, 0x354124, 0x2a391e, 0x3a4a46, 0x2e4140, 0x3e5042, 0x2b3823, 0x212e0f, 0x273412, 0x4e5d35, 0x526236, 0x45532c, 0x202e14, 0x1e2c1f, 0x29392d, 0x293a27, 0x1d2c15, 0x1f301b, 0x334530, 0x22311f, 0x31102, 0x1d2a12, 0x263718, 0x213011, 0x222e0f, 0x1d2b10, 0x2e3d24, 0x2c3c23, 0x28371d, 0x202d11, 0x182207, 0x121902, 0x151d0b, 0x18230e, 0x14230c, 0x2e412a, 0x354933, 0x243525, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x7b8143, 0x434b19, 0x4d6123, 0x5d743c, 0x6f8256, 0x788b58, 0x5f7d2d, 0x485b1c, 0x77774b, 0xd4cf9d, 0x969778, 0x535e3c, 0x667442, 0x4c5c28, 0x37472b, 0x37452f, 0x3e4b34, 0x434b36, 0x3d4527, 0x414d29, 0x4a5634, 0x3a4627, 0x394828, 0x293813, 0x283511, 0x3b4929, 0x495a3f, 0x475947, 0x45584d, 0x40514c, 0x32453a, 0x293d27, 0x314328, 0x33432a, 0x223213, 0x253315, 0x374636, 0x2e413d, 0x3c4e42, 0x2f3e29, 0x19270e, 0x1c2d10, 0x2b3c1f, 0x4b5839, 0x414d31, 0x2a3621, 0x192515, 0x182817, 0x273528, 0x273626, 0x1b2d16, 0x20361f, 0x314635, 0x132210, 0x101e0d, 0x1d2c17, 0x233519, 0x233613, 0x23300f, 0x152108, 0x1e2b10, 0x1f2c0f, 0x25361a, 0x27371b, 0x1a2406, 0x71785d, 0x41442d, 0x161f0b, 0x11200a, 0x23361b, 0x384b34, 0x263726, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4c439, 0x787c2c, 0x748944, 0x6b834f, 0x5d714b, 0x546949, 0x4e652c, 0x46561c, 0x797c56, 0xadb17d, 0x4e562c, 0x414e2b, 0x3f5520, 0x4b602a, 0x384a27, 0x3c502f, 0x495d3f, 0x414d3c, 0x2c361e, 0x1e2811, 0x202c16, 0x26361c, 0x47573c, 0x374628, 0x263512, 0x2d3919, 0x475613, 0x788943, 0x495a2f, 0x425736, 0x425838, 0x374e31, 0x384c2e, 0x374529, 0x233115, 0x334431, 0x33423e, 0x3b4f44, 0x30412d, 0x1a2814, 0x1d2d15, 0x1d2e14, 0x35472e, 0x283720, 0x202e1e, 0x1c2a20, 0x1b291a, 0x1c2a13, 0x1f2e18, 0x253424, 0x162815, 0x233625, 0x2a3d30, 0x122210, 0x182616, 0x1c2b19, 0x233621, 0x21361c, 0x203017, 0x122007, 0x152103, 0x19250b, 0x1a2911, 0x1a2b0f, 0x1c2908, 0x565f40, 0x31361b, 0x17200b, 0x1a2711, 0x1e2e16, 0x3a4d38, 0x243828, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xcfd727, 0xc4cb80, 0x66794f, 0x57714d, 0x5a7055, 0x707e69, 0x4b5933, 0x4a5b22, 0x536238, 0x3f4f1e, 0x415122, 0x44572d, 0x475926, 0x596633, 0x586b38, 0x3b5025, 0x3b4b35, 0x354034, 0x333c2c, 0x2e3826, 0x2a3625, 0x253423, 0x2e3e2c, 0x2c3a27, 0x2e3a30, 0x313c27, 0x5d6a36, 0x909c62, 0x2a370d, 0x293c0b, 0x2f410d, 0x34440c, 0x435519, 0x333f0e, 0x2f3928, 0x31423a, 0x3e5345, 0x415039, 0x293a24, 0x253a24, 0x26381e, 0x25341d, 0x192613, 0x1e3023, 0x223529, 0x213323, 0x1d2d15, 0x1d2e10, 0x1c2c0e, 0x1c2a1b, 0x1d2b21, 0x243429, 0x203025, 0x1a291b, 0x1b2a1d, 0x1a2a1d, 0x253727, 0x213624, 0x253622, 0x243210, 0x253209, 0x202c12, 0x1e2b18, 0x17270d, 0x1c2c0e, 0x172909, 0x1b2d0f, 0x172409, 0x1a260c, 0x1c2a12, 0x394c39, 0x2e4437, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xa3b339, 0x606f45, 0x536851, 0x5a6d53, 0x919c6e, 0xabae78, 0x485131, 0x47592a, 0x44562a, 0x435524, 0x475c28, 0x475c2a, 0x3a4e1a, 0x55662f, 0x6f8542, 0x4a612f, 0x334331, 0x394739, 0x515b46, 0x49543f, 0x3e4c3b, 0x354438, 0x313f32, 0x2e3d2f, 0x314534, 0x314420, 0x2d3d23, 0x303c32, 0x334132, 0x384531, 0x3b4723, 0x354409, 0x495c0f, 0x37470e, 0x333e31, 0x3f5135, 0x465d27, 0x2f401a, 0x2b3b28, 0x263a23, 0x2a3c22, 0x1c2c17, 0x1f2c1d, 0x2a3d33, 0x2b4032, 0x233522, 0x15260c, 0x1c2b0e, 0x203419, 0x1f3024, 0x1f3027, 0x1d2e23, 0x1e2e24, 0x1d2e23, 0x202e25, 0x1e2d23, 0x223528, 0x223929, 0x263a24, 0x2e3c15, 0x273200, 0x202b0a, 0x1f2c18, 0x14240d, 0x1c2f14, 0x223717, 0x213817, 0x293b18, 0x172504, 0x1f2c11, 0x2e3f27, 0x334934, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x607055, 0x546955, 0x637655, 0xa0a171, 0xe2dd74, 0xbfbc50, 0x424921, 0x465c33, 0x45542a, 0x353f0e, 0x43561e, 0x485c26, 0x405522, 0x445d22, 0x536f21, 0x4e6533, 0x2d3c2e, 0x3a4936, 0x485433, 0x414d30, 0x3b4a36, 0x324133, 0x334133, 0x374735, 0x2b3e24, 0x2f3f27, 0x354430, 0x2c3b2a, 0x364834, 0x364930, 0x293a15, 0x2c3b0f, 0x304115, 0x3e5232, 0x3f4f3d, 0x718143, 0x72891e, 0x29400a, 0x1f3124, 0x263820, 0x24361c, 0x243620, 0x344538, 0x354739, 0x273926, 0x162710, 0x15250b, 0x17270e, 0x213728, 0x21352b, 0x20362a, 0x1f3428, 0x22342c, 0x223329, 0x233128, 0x213127, 0x233827, 0x253f2d, 0x223727, 0x2f3a1c, 0x2e370d, 0x1e290b, 0x1f2c1a, 0x172812, 0x12240b, 0x293d1f, 0x273d1b, 0x2b4419, 0x2c4015, 0x182502, 0x1c2c0e, 0x283d1e, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x677262, 0x9a9e7a, 0xc1c47e, 0xe1d992, 0xf2e472, 0xd8d446, 0x3f4a23, 0x45572d, 0x545d2c, 0x5b632a, 0x37410a, 0x374614, 0x3b501c, 0x4f682d, 0x587524, 0x4c652d, 0x2a392b, 0x414e3d, 0x3d4b22, 0x263611, 0x364923, 0x3b4f2c, 0x394c33, 0x2d402b, 0x293925, 0x394a35, 0x32442c, 0x35472d, 0x374830, 0x253518, 0x172809, 0x223313, 0x293a1c, 0x3c4b30, 0x36431b, 0x475511, 0x4f6219, 0x22370c, 0x1c3019, 0x283a1f, 0x1d2c16, 0x29382b, 0x3a4c3f, 0x253b1c, 0x21331a, 0x182613, 0x192813, 0x192817, 0x2a3f34, 0x23382d, 0x22382c, 0x20372b, 0x273c31, 0x25342d, 0x25352f, 0x2a3c2f, 0x1c2e1a, 0x243623, 0x213829, 0x243723, 0x383f1a, 0x222d0f, 0x1e2e1e, 0x1b2b1a, 0x12230d, 0x1a2c12, 0x324829, 0x264018, 0x344a23, 0x394c20, 0x25380b, 0x223510, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0xc4c890, 0xd0c574, 0xe1cb51, 0xe2ca4b, 0xd5be2d, 0xb2a32d, 0x3e4627, 0x394c27, 0x5a642f, 0x828e4c, 0x2c3c00, 0x455924, 0x405621, 0x30470e, 0x5b7729, 0x465c30, 0x293630, 0x334221, 0x25320b, 0x2d3f15, 0x3a511f, 0x3d5229, 0x2d3f26, 0x263924, 0x33432f, 0x394a32, 0x26391d, 0x384a2f, 0x2d3c23, 0x1d2c13, 0x27361d, 0x213015, 0x1c2a0d, 0x1f2a0d, 0x2f3b11, 0x435218, 0x273805, 0x1e320f, 0x21351d, 0x293b20, 0x203015, 0x3e4b39, 0x1f2e1e, 0x22381a, 0x2a3e28, 0x192818, 0x192917, 0x233525, 0x344a3d, 0x263c30, 0x253b2f, 0x253b2f, 0x2c4135, 0x283a32, 0x2a3c36, 0x304432, 0x15240f, 0x17240f, 0x293d2e, 0x1d3527, 0x2d3a21, 0x1c260e, 0x20301f, 0x213322, 0x172916, 0x14250a, 0x253715, 0x334727, 0x283c1c, 0x374d23, 0x324918, 0x20360c, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 

it’s in main/main.cpp of the standalone inferencing example.

Sorry, it’s been too long i had to skip a part in the middle…

Hi,

Indeed, It seems strange that you are getting these results.
Also how many bees are in the image you are trying to detect?

@AIWintermuteAI do you have an idea what is happening here?

In the particular image that I’m testing on, it’s only one bee. But I’ve been testing multiple images. With my smartphone and the pre-built firmware all this is working…

Okay, so the issue is that static buffer example does not detect an object?
Can you post a full code somewhere? Or share a project folder

@AIWintermuteAI
you are right, thats the issue. I just sent you a PM with a link to the project code.

@AIWintermuteAI thanks for your help so far!
okay, so obviously my problem was, that I took the raw features of a sample with no object in it. I’m sorry. I think i totally misunderstood what the feature vector of the static buffer example is meant to do. So for a general model, that can tell wether in any given image there is a bee or a number of bees, what kind of features do i need to use? if any? i’m not sure wether the static buffer example is good for me, as i’m just trying to get the result of the object detection to pass it to another microcontroller. I’m sorry for all the confusion.