GDoctor Posted February 7, 2022 Share Posted February 7, 2022 (edited) Well, while I wait for a response from admin regarding source for Egyptian, I figured I would at least get some stuff done so I added Plinko, Limbo, HashDice, and ClassicDice to the site. I know these aren't part of the competition but I like the idea to have all games in 1 place so I will continue working on getting that done. BC-Game Verification App (bcverify.gdoc.win) Edited February 8, 2022 by Gdoctors 4 Link to comment Share on other sites More sharing options...
DFdubG Posted February 8, 2022 Share Posted February 8, 2022 @Gdoctors Yeah all I can find is same thing you linked me to. I have a code that will show results but don't have source to make it visual. Link to comment Share on other sites More sharing options...
GDoctor Posted February 8, 2022 Share Posted February 8, 2022 (edited) 6 hours ago, DFdubG said: @Gdoctors Yeah all I can find is same thing you linked me to. I have a code that will show results but don't have source to make it visual. Do you mean the slot you linked before, because that doesn't seem right? Your results show 3 words, but Egyptian is a 6-column slot. Regardless, as Danny777 said before you should submit it for verification even without the pictures. As long as it shows the correct results, you could win it. I can't seem to get anywhere really on that slot. I will try some more today but so far; I haven't even gotten to the point where I can start getting results from it. I'm still trying to figure out the flow of the program. Edited February 8, 2022 by Gdoctors Link to comment Share on other sites More sharing options...
DFdubG Posted February 8, 2022 Share Posted February 8, 2022 1 hour ago, Gdoctors said: Do you mean the slot you linked before, because that doesn't seem right? Your results show 3 words, but Egyptian is a 6-column slot. Regardless, as Danny777 said before you should submit it for verification even without the pictures. As long as it shows the correct results, you could win it. I can't seem to get anywhere really on that slot. I will try some more today but so far; I haven't even gotten to the point where I can start getting results from it. I'm still trying to figure out the flow of the program. @Gdoctors correct all that needs to be done is add 3 more reels and update (Sulphur, Cloth, Gunpowder, Charcoal, Saloon) with Pics Identity of Egyptian Afventure. If you want I can collab with ya and send you source code for it and see if ya can get the last part i been trying to fig out. Link to comment Share on other sites More sharing options...
GDoctor Posted February 8, 2022 Share Posted February 8, 2022 (edited) 37 minutes ago, DFdubG said: @Gdoctors correct all that needs to be done is add 3 more reels and update (Sulphur, Cloth, Gunpowder, Charcoal, Saloon) with Pics Identity of Egyptian Afventure. If you want I can collab with ya and send you source code for it and see if ya can get the last part i been trying to fig out. The page you submitted does not seem like it's the same game. It calculates a single item for the 3 reels it currently does but there is never a time when the gave only has a single item in the reel. I don't know what that "chance" package from Cloudflare is, but I don't think its BC Game's algorithm for determining random. It was the way the random numbers are calculated in your script. It doesn't seem correct, but to be honest I can't verify my statements because I have nothing to compare it to. That's why I was asking Admin for information or game source. So far, I have nothing so I really can't tell for sure what needs to be done and what is missing. Forgot to mention, there should be 9 possible elements plus a wild element for a total of 10 elements, versus the 5 you mentioned. Edited February 8, 2022 by Gdoctors 1 Link to comment Share on other sites More sharing options...
DFdubG Posted February 8, 2022 Share Posted February 8, 2022 37 minutes ago, Gdoctors said: The page you submitted does not seem like it's the same game. It calculates a single item for the 3 reels it currently does but there is never a time when the gave only has a single item in the reel. I don't know what that "chance" package from Cloudflare is, but I don't think its BC Game's algorithm for determining random. It was the way the random numbers are calculated in your script. It doesn't seem correct, but to be honest I can't verify my statements because I have nothing to compare it to. That's why I was asking Admin for information or game source. So far, I have nothing so I really can't tell for sure what needs to be done and what is missing. Forgot to mention, there should be 9 possible elements plus a wild element for a total of 10 elements, versus the 5 you mentioned. const SLOT_TABLE = { 1: { Cloth: 5, Charcoal: 5, Sulfur: 5, Gunpowder: 4, "High Quality Metal": 3, Saloon: 1 }, 2: { Cloth: 6, Charcoal: 6, Sulfur: 6, Gunpowder: 3, "High Quality Metal": 1, Saloon: 1 }, 3: { Cloth: 6, Charcoal: 6, Sulfur: 6, Gunpowder: 3, "High Quality Metal": 1, Saloon: 1 } }; const SLOTS = { 1: [], 2: [], 3: [] } The Saloon would be your special bonus element and What needs to happen I think is add 5 more elements on each reel and change the 10 element (saloon) which is correctly identified as special. As yoh said nit much we can verify with out proper source. Link to comment Share on other sites More sharing options...
GDoctor Posted February 8, 2022 Share Posted February 8, 2022 2 minutes ago, DFdubG said: const SLOT_TABLE = { 1: { Cloth: 5, Charcoal: 5, Sulfur: 5, Gunpowder: 4, "High Quality Metal": 3, Saloon: 1 }, 2: { Cloth: 6, Charcoal: 6, Sulfur: 6, Gunpowder: 3, "High Quality Metal": 1, Saloon: 1 }, 3: { Cloth: 6, Charcoal: 6, Sulfur: 6, Gunpowder: 3, "High Quality Metal": 1, Saloon: 1 } }; const SLOTS = { 1: [], 2: [], 3: [] } The Saloon would be your special bonus element and What needs to happen I think is add 5 more elements on each reel and change the 10 element (saloon) which is correctly identified as special. As yoh said nit much we can verify with out proper source. Yea I saw that source. What I don't understand is this. Based on this screenshot. which one of these do those terms in your source match? None of them look like cloth, charcoal or sulfur to me. Link to comment Share on other sites More sharing options...
DFdubG Posted February 8, 2022 Share Posted February 8, 2022 1 hour ago, Gdoctors said: Yea I saw that source. What I don't understand is this. Based on this screenshot. which one of these do those terms in your source match? None of them look like cloth, charcoal or sulfur to me. I understand what your saying and I agree im confused on it aswell. The sulphur charcoal cloth is just there as a stand in since it kinda confusing and still trying to figure out how to place the proper icons and info. The x6 =15 is the pay out scale for landing 6 eye books (lol) is payout of 15x ?? @Danny777 @Coco_Father Link to comment Share on other sites More sharing options...
GDoctor Posted February 8, 2022 Share Posted February 8, 2022 (edited) 13 minutes ago, DFdubG said: I understand what your saying and I agree im confused on it aswell. The sulphur charcoal cloth is just there as a stand in since it kinda confusing and still trying to figure out how to place the proper icons and info. The x6 =15 is the pay out scale for landing 6 eye books (lol) is payout of 15x ?? @Danny777 @Coco_Father Well, I don't see the tables that are in the pdf in your source at all. how are you determining the symbols without it? If this is not your code then it's most likely for a different game. If it is your code, then you should know what you did right? You are right though if the admins would respond with the game source, then I could get it done. To @Danny777 or @Coco_Father Please share the Egyptian game source with me. Once you do, I could knock out a verifier in a day, maybe two. Should be simple enough to share the game source with me since the site is open source, right? If it is something you wish to keep private, you are welcome to PM me details, I could get what I need and keep it private. Edited February 8, 2022 by Gdoctors 1 Link to comment Share on other sites More sharing options...
DFdubG Posted February 8, 2022 Share Posted February 8, 2022 54 minutes ago, Gdoctors said: Well, I don't see the tables that are in the pdf in your source at all. how are you determining the symbols without it? If this is not your code then it's most likely for a different game. If it is your code, then you should know what you did right? You are right though if the admins would respond with the game source, then I could get it done. To @Danny777 or @Coco_Father Please share the Egyptian game source with me. Once you do, I could knock out a verifier in a day, maybe two. Should be simple enough to share the game source with me since the site is open source, right? If it is something you wish to keep private, you are welcome to PM me details, I could get what I need and keep it private. I dont have the pdf in the code bc I never had it tell you sent that link. the code works of Client seed, Server Seed, Nonce. Example if I had the right elements incorporated into the reel spots amd take out the stand in (Sulphur ect) and put the client seed, Server Seed and nince it will work. Link to comment Share on other sites More sharing options...
GDoctor Posted February 9, 2022 Share Posted February 9, 2022 (edited) 4 hours ago, DFdubG said: I dont have the pdf in the code bc I never had it tell you sent that link. the code works of Client seed, Server Seed, Nonce. Example if I had the right elements incorporated into the reel spots amd take out the stand in (Sulphur ect) and put the client seed, Server Seed and nince it will work. Then just finish it up and submit it, man. You have the pdf now. So, all the data is there. Get it done, submit it, and collect the prize. Me personally I'm stuck on the algo still. So maybe that's why I can't understand your code. Edited February 9, 2022 by Gdoctors 1 Link to comment Share on other sites More sharing options...
ILikeToParty Posted February 9, 2022 Share Posted February 9, 2022 @Gdoctors i've been working on it in my free time but stuck on the algorithm too. lots of trial and error with this one. 2 Link to comment Share on other sites More sharing options...
GDoctor Posted February 9, 2022 Share Posted February 9, 2022 (edited) 2 hours ago, ILikeToParty said: @Gdoctors i've been working on it in my free time but stuck on the algorithm too. lots of trial and error with this one. lol I'm hoping you get it done man. I can't understand the flow of the code, and I haven't been able to get all the data from the tables into arrays since they weren't text in the pdf. Did you catch the 32bit vs 64bit right shift issue in the random function? lol took me a whole day to realize it and fix it. Although, I'm not 100% sure it was actaully an issue, but the numbers seem more correct now. PM me if you haven't and need help through it. I see my psych doc tomorrow; I need an adjustment on my medications. Hopefully, it goes according to plan then I can get back to work. Edited February 9, 2022 by Gdoctors Link to comment Share on other sites More sharing options...
Admin BCGame_Bob Posted February 10, 2022 Author Admin Share Posted February 10, 2022 @Gdoctors can you please check the PDF again, should be alright now and more clear , let me know please Link to comment Share on other sites More sharing options...
GDoctor Posted February 10, 2022 Share Posted February 10, 2022 11 hours ago, Danny777 said: @Gdoctors can you please check the PDF again, should be alright now and more clear , let me know please Hello @Danny777, Now I only see a blank white page. I don't know what's going on. Also, I don't think I was clear on what I needed before. Updating the pdf probably won't resolve my issue. Hopefully the following screenshot can help you understand what I mean. As you can see the text above the table is selectable, but the table data is not. I need to be able to select the text inside of the tables (to copy it). It could be csv, excel, html, anything but not png. Link to comment Share on other sites More sharing options...
GDoctor Posted February 10, 2022 Share Posted February 10, 2022 (edited) Hey @Danny777 I figured out I could view the new pdf in chrome. However, the whole thing is now an image and none of the text is selectable. This pdf went into an opposite direction. Can you please have the developers who are working on clearing this up, contact me directly? If that's not possible, it's okay. I just need the data from the tables in a format I can use, not images. EDIT: I don't know why this didn't occur to me sooner, but I left an issue on the GitHub repo. Hopefully the devs see it and understand what's needed. I really would like to get this done as well. Edited February 12, 2022 by Gdoctors Link to comment Share on other sites More sharing options...
GDoctor Posted February 12, 2022 Share Posted February 12, 2022 (edited) mistake Edited February 12, 2022 by Gdoctors Link to comment Share on other sites More sharing options...
Admin BCGame_Bob Posted February 13, 2022 Author Admin Share Posted February 13, 2022 Alright its clear, will see if its possible to get that, update you as soon as i can. Thank you 1 Link to comment Share on other sites More sharing options...
Admin BCGame_Bob Posted February 14, 2022 Author Admin Share Posted February 14, 2022 Base Game Base Reel Set 1 Base Reel Set 2 Free Reel Set Wild Reel R1 R2 R3 R4 R5 R6 R1 R2 R3 R4 R5 R6 R1 R2 R3 R4 R5 R6 R1 1 PIC6 PIC3 PIC9 PIC2 PIC3 PIC5 1 PIC4 PIC2 PIC7 PIC3 PIC4 PIC6 1 PIC5 PIC5 PIC8 PIC9 PIC9 PIC8 1 PIC4 2 PIC8 PIC4 PIC4 PIC4 PIC4 PIC2 2 PIC5 PIC2 PIC3 PIC4 SCAT1 PIC7 2 PIC5 PIC7 PIC5 PIC9 PIC8 PIC9 2 WILD 3 PIC5 PIC5 PIC7 PIC5 PIC7 PIC2 3 PIC6 PIC1 PIC8 PIC7 PIC9 PIC8 3 PIC7 PIC6 PIC5 PIC9 PIC6 PIC5 3 PIC6 4 PIC3 PIC7 PIC7 PIC3 PIC6 PIC3 4 PIC7 PIC8 PIC1 PIC8 PIC3 PIC3 4 PIC6 PIC9 PIC7 PIC4 PIC6 PIC6 4 PIC5 5 PIC9 PIC4 PIC8 PIC4 PIC5 PIC8 5 PIC3 PIC6 PIC5 PIC2 PIC4 PIC4 5 PIC6 SCAT1 PIC9 PIC5 PIC6 PIC7 5 PIC5 6 PIC7 PIC9 PIC6 PIC7 PIC8 PIC4 6 SCAT1 PIC5 PIC5 PIC9 PIC7 PIC1 6 PIC9 PIC5 PIC9 PIC7 PIC5 PIC7 6 PIC5 7 PIC8 PIC2 PIC9 PIC1 PIC4 PIC6 7 PIC8 PIC4 SCAT1 PIC6 PIC2 PIC9 7 PIC5 PIC6 PIC9 PIC9 PIC9 PIC4 7 PIC5 8 PIC6 PIC2 PIC5 PIC6 PIC4 PIC3 8 PIC9 PIC9 PIC4 PIC8 PIC3 PIC8 8 PIC8 PIC3 PIC7 PIC6 PIC8 PIC9 8 PIC8 9 PIC7 PIC3 PIC8 PIC2 PIC7 PIC2 9 PIC3 PIC8 PIC3 PIC4 PIC8 PIC3 9 PIC8 PIC2 PIC6 PIC7 PIC6 PIC3 9 PIC9 10 PIC7 PIC3 PIC8 SCAT1 PIC9 PIC1 10 PIC5 PIC5 PIC8 PIC7 PIC1 PIC3 10 PIC4 PIC4 PIC5 PIC8 PIC7 PIC1 10 PIC9 11 PIC4 PIC3 PIC8 PIC5 PIC9 PIC8 11 PIC1 PIC5 PIC8 PIC9 PIC5 PIC5 11 PIC2 PIC8 PIC2 PIC8 PIC7 PIC8 11 PIC5 12 PIC3 PIC5 PIC4 PIC1 PIC5 PIC6 12 PIC8 PIC3 PIC4 PIC6 PIC3 PIC6 12 PIC5 PIC5 PIC3 PIC7 PIC7 PIC2 12 PIC3 13 PIC6 PIC2 PIC3 PIC3 PIC4 PIC1 13 PIC2 PIC7 PIC5 SCAT1 PIC6 PIC6 13 PIC6 PIC5 PIC8 PIC7 PIC4 PIC9 13 PIC7 14 PIC2 PIC4 PIC8 PIC7 PIC8 PIC2 14 PIC7 PIC7 PIC6 PIC1 PIC8 PIC6 14 PIC7 PIC6 PIC7 PIC5 PIC9 PIC9 14 PIC4 15 PIC9 PIC1 PIC5 PIC2 PIC5 PIC3 15 PIC7 PIC7 PIC1 PIC6 PIC4 PIC7 15 PIC3 PIC3 PIC5 PIC9 PIC9 PIC4 15 PIC8 16 PIC5 PIC9 PIC7 PIC8 PIC2 PIC9 16 PIC5 PIC7 PIC1 PIC6 PIC3 PIC1 16 PIC8 PIC7 PIC4 PIC9 PIC7 PIC3 16 PIC9 17 PIC4 PIC4 PIC9 PIC3 PIC6 SCAT1 17 PIC1 PIC6 PIC1 PIC9 PIC1 PIC8 17 PIC9 PIC8 PIC9 PIC3 PIC8 PIC1 17 PIC9 18 PIC7 PIC4 PIC9 PIC2 PIC6 PIC1 18 PIC3 PIC6 PIC5 PIC9 PIC5 PIC6 18 PIC7 PIC5 PIC7 PIC3 PIC6 PIC9 18 PIC8 19 SCAT1 PIC7 PIC9 PIC8 PIC4 PIC1 19 PIC5 PIC8 PIC6 PIC8 PIC2 PIC9 19 PIC6 PIC5 PIC5 PIC9 PIC5 PIC6 19 PIC7 20 PIC9 PIC3 PIC5 PIC4 PIC2 PIC7 20 PIC4 PIC8 PIC4 PIC8 PIC2 PIC8 20 PIC4 PIC8 PIC5 PIC9 PIC9 PIC7 20 PIC6 21 PIC8 PIC1 PIC6 PIC1 PIC9 PIC5 21 PIC2 PIC9 PIC2 PIC5 PIC2 PIC3 21 PIC9 PIC8 PIC9 PIC6 PIC9 PIC5 21 PIC4 22 PIC8 PIC7 PIC3 PIC7 PIC7 PIC5 22 PIC8 PIC9 PIC9 PIC6 PIC2 PIC6 22 PIC1 PIC1 PIC6 PIC6 PIC7 PIC3 22 PIC3 23 PIC8 PIC5 PIC5 PIC5 PIC7 PIC5 23 PIC5 PIC9 PIC8 PIC6 PIC8 PIC7 23 PIC1 PIC1 PIC7 PIC6 PIC3 SCAT1 23 WILD 24 PIC6 PIC1 PIC9 PIC8 PIC7 PIC2 24 PIC7 PIC6 PIC5 PIC6 PIC4 PIC7 24 PIC1 PIC1 PIC7 PIC4 PIC9 PIC9 24 PIC5 25 PIC4 PIC2 PIC6 PIC3 PIC7 PIC8 25 PIC4 PIC6 PIC7 PIC6 PIC7 PIC7 25 PIC6 PIC5 PIC7 PIC7 PIC2 PIC8 25 PIC7 26 PIC8 PIC2 SCAT1 PIC4 PIC6 PIC4 26 PIC1 PIC9 PIC4 PIC7 PIC5 PIC6 26 PIC8 PIC9 PIC5 PIC9 PIC6 PIC7 26 PIC3 27 PIC5 PIC2 PIC7 PIC2 PIC8 PIC5 27 PIC2 PIC4 PIC1 PIC4 SCAT1 PIC5 27 PIC8 PIC3 PIC8 PIC3 PIC6 PIC7 27 PIC3 28 PIC7 PIC6 PIC8 PIC8 SCAT1 PIC7 28 PIC3 PIC4 PIC2 PIC4 PIC2 PIC8 28 PIC8 PIC4 PIC8 PIC6 PIC6 PIC8 28 PIC3 29 PIC6 PIC3 PIC4 PIC5 PIC7 PIC2 29 PIC8 PIC4 PIC2 PIC5 PIC9 PIC1 29 PIC5 PIC7 PIC9 PIC8 PIC6 PIC9 29 PIC6 30 PIC8 PIC2 PIC6 PIC1 PIC6 PIC1 30 PIC9 PIC4 PIC8 PIC3 PIC4 PIC3 30 PIC5 PIC9 PIC2 PIC7 PIC4 PIC9 30 PIC1 31 PIC2 PIC2 PIC3 PIC9 PIC8 PIC8 31 PIC9 PIC3 PIC3 PIC8 PIC5 PIC3 31 PIC4 PIC9 PIC3 PIC4 PIC8 PIC9 31 PIC9 32 PIC9 PIC2 PIC3 PIC7 PIC2 PIC2 32 PIC5 PIC3 PIC5 PIC7 PIC3 PIC3 32 PIC9 PIC9 PIC9 PIC8 PIC1 PIC6 32 PIC5 33 PIC5 PIC2 PIC9 PIC4 PIC5 PIC2 33 PIC7 PIC3 PIC8 PIC7 PIC4 PIC3 33 PIC8 PIC8 PIC6 PIC8 PIC1 PIC6 33 PIC2 34 PIC1 PIC9 PIC7 PIC1 PIC4 PIC2 34 PIC8 PIC8 PIC2 PIC7 PIC2 SCAT1 34 PIC8 PIC6 PIC7 PIC8 PIC9 PIC6 34 PIC8 35 PIC7 SCAT1 PIC6 PIC8 PIC8 PIC2 35 PIC6 PIC6 PIC3 PIC6 PIC5 PIC6 35 PIC2 PIC7 PIC7 PIC7 PIC5 PIC5 35 PIC4 36 PIC8 PIC5 PIC3 PIC6 PIC7 PIC4 36 PIC1 PIC5 PIC4 PIC8 PIC7 PIC9 36 PIC4 PIC7 PIC2 PIC7 PIC4 PIC5 36 PIC3 37 PIC6 PIC9 PIC5 PIC3 PIC3 PIC5 37 PIC4 PIC7 PIC4 PIC4 PIC8 PIC7 37 PIC5 PIC7 PIC4 PIC7 PIC1 PIC9 37 PIC7 38 PIC6 PIC1 PIC4 PIC2 PIC2 PIC3 38 PIC5 PIC7 PIC4 PIC4 PIC2 PIC7 38 PIC7 PIC2 PIC9 PIC4 PIC9 PIC3 38 PIC6 39 PIC6 PIC4 PIC6 PIC2 PIC5 PIC3 39 PIC8 PIC6 PIC1 PIC4 PIC6 PIC7 39 PIC3 PIC8 PIC9 PIC6 PIC9 PIC8 39 PIC6 40 PIC9 PIC2 PIC9 PIC2 PIC6 PIC3 40 PIC3 PIC1 PIC3 PIC4 PIC4 PIC6 40 PIC6 PIC7 PIC6 PIC5 PIC7 SCAT1 40 PIC5 41 PIC9 PIC3 PIC2 PIC7 PIC6 PIC2 41 PIC3 PIC8 PIC3 PIC5 PIC7 PIC6 41 PIC9 PIC7 PIC4 PIC5 PIC3 PIC9 41 WILD 42 PIC6 PIC5 PIC8 PIC6 PIC7 PIC7 42 PIC3 PIC4 PIC2 PIC9 PIC5 PIC9 42 PIC8 PIC7 PIC8 PIC9 PIC6 PIC3 42 PIC9 43 PIC8 PIC1 PIC8 PIC9 PIC8 PIC4 43 PIC4 PIC9 PIC6 PIC7 PIC3 PIC2 43 PIC4 PIC3 PIC8 PIC1 PIC6 PIC7 43 PIC4 44 PIC4 PIC8 PIC7 PIC5 PIC4 PIC5 44 PIC2 PIC9 PIC9 PIC3 PIC8 PIC8 44 PIC1 PIC3 PIC8 PIC2 PIC4 PIC8 44 PIC7 45 PIC5 PIC8 PIC9 PIC2 PIC4 PIC1 45 PIC7 PIC8 PIC2 PIC5 PIC1 PIC7 45 PIC6 PIC6 PIC8 PIC4 PIC8 PIC8 45 PIC7 46 PIC5 PIC3 PIC8 PIC3 PIC4 PIC4 46 PIC4 PIC6 PIC3 PIC1 PIC1 PIC6 46 PIC8 PIC9 PIC6 PIC4 PIC2 PIC8 46 PIC5 47 PIC4 PIC3 PIC4 SCAT1 PIC3 PIC4 47 PIC9 PIC7 PIC5 PIC6 PIC4 PIC6 47 PIC8 PIC8 PIC6 SCAT1 PIC9 PIC3 47 PIC5 48 PIC3 PIC5 PIC2 PIC4 PIC6 PIC5 48 PIC1 PIC9 PIC8 PIC8 PIC5 PIC6 48 PIC7 PIC3 PIC6 PIC7 SCAT1 PIC7 48 PIC7 49 PIC6 PIC5 PIC2 PIC1 PIC5 PIC6 49 PIC6 PIC5 SCAT1 PIC4 PIC1 PIC6 49 PIC7 PIC6 PIC6 PIC7 PIC8 PIC4 49 PIC7 50 PIC7 PIC5 PIC7 PIC6 PIC3 PIC2 50 PIC9 PIC3 PIC1 PIC3 PIC1 PIC2 50 PIC6 PIC6 PIC2 PIC7 PIC3 PIC5 50 PIC7 51 PIC3 PIC3 PIC7 PIC5 PIC7 PIC1 51 PIC2 PIC3 PIC4 PIC7 PIC1 PIC5 51 PIC3 PIC6 PIC2 PIC3 PIC7 PIC6 51 PIC3 52 PIC3 PIC2 PIC8 PIC2 PIC7 PIC5 52 PIC2 PIC3 PIC5 PIC7 PIC1 PIC5 52 PIC9 PIC9 PIC2 PIC6 PIC6 PIC7 52 PIC3 53 PIC3 PIC4 PIC5 PIC4 PIC2 PIC3 53 PIC2 PIC3 PIC9 PIC4 PIC9 PIC4 53 PIC4 PIC9 PIC9 PIC5 PIC4 PIC7 53 PIC3 54 PIC8 SCAT1 PIC5 PIC3 PIC9 PIC2 54 PIC1 PIC7 PIC6 PIC6 PIC2 PIC6 54 PIC2 PIC7 PIC6 PIC8 PIC7 PIC7 54 PIC4 55 PIC8 PIC9 PIC6 PIC1 PIC9 PIC9 55 PIC5 PIC9 PIC5 PIC2 PIC1 PIC9 55 PIC3 PIC7 PIC6 PIC8 PIC2 PIC7 55 PIC5 56 PIC6 PIC7 PIC1 PIC1 PIC9 PIC9 56 PIC9 PIC2 PIC3 PIC8 PIC6 PIC7 56 PIC8 PIC7 PIC7 PIC8 PIC8 PIC2 56 PIC5 57 PIC1 PIC7 PIC1 PIC1 PIC6 PIC1 57 PIC4 PIC5 PIC9 PIC8 PIC5 PIC7 57 PIC8 PIC8 PIC8 PIC8 PIC6 PIC8 57 PIC5 58 PIC1 PIC3 PIC3 PIC1 PIC6 PIC4 58 PIC2 PIC7 PIC4 PIC5 PIC1 PIC7 58 PIC8 PIC6 PIC6 PIC9 PIC7 PIC3 58 PIC2 59 PIC2 PIC5 PIC3 PIC9 PIC6 PIC6 59 PIC3 PIC7 PIC7 PIC4 PIC3 PIC7 59 PIC8 PIC9 PIC7 SCAT1 PIC7 PIC6 59 PIC4 60 PIC2 PIC8 PIC3 PIC5 PIC9 PIC6 60 PIC3 PIC6 PIC5 PIC7 PIC9 PIC9 60 PIC2 PIC2 PIC3 PIC7 PIC2 PIC6 60 PIC4 61 PIC8 PIC1 PIC3 PIC2 PIC3 PIC5 61 PIC6 PIC8 PIC3 PIC6 PIC9 PIC6 61 PIC2 PIC8 PIC9 PIC7 PIC4 PIC9 61 PIC1 62 PIC7 PIC6 PIC7 PIC2 PIC7 SCAT1 62 PIC6 PIC4 PIC6 PIC5 PIC4 PIC8 62 PIC2 PIC7 PIC8 PIC5 SCAT1 PIC9 62 PIC8 63 PIC6 SCAT1 PIC9 PIC2 PIC5 PIC3 63 PIC9 PIC2 PIC6 PIC9 PIC4 PIC4 63 PIC9 PIC7 PIC6 PIC9 PIC7 PIC9 63 PIC3 64 PIC8 PIC3 PIC2 PIC2 PIC9 PIC6 64 PIC1 PIC9 PIC1 PIC8 PIC4 PIC4 64 PIC8 PIC4 PIC5 PIC7 PIC3 PIC6 64 PIC9 65 PIC8 PIC5 PIC4 PIC3 PIC6 PIC4 65 PIC1 PIC8 PIC8 PIC3 PIC5 PIC4 65 PIC7 PIC8 PIC5 PIC4 PIC9 PIC8 65 PIC6 66 PIC5 PIC4 PIC7 PIC6 PIC8 PIC3 66 SCAT1 PIC6 PIC3 PIC9 PIC6 PIC4 66 PIC3 PIC6 PIC8 PIC5 PIC9 PIC3 66 PIC7 67 PIC9 PIC3 PIC5 PIC6 PIC8 PIC8 67 PIC5 PIC6 PIC5 PIC8 PIC9 PIC3 67 PIC9 PIC9 PIC9 PIC3 PIC9 PIC4 67 PIC7 68 PIC8 PIC1 PIC8 PIC3 PIC8 PIC2 68 PIC3 PIC6 PIC2 PIC4 PIC3 PIC5 68 PIC6 PIC1 PIC9 PIC7 PIC8 PIC7 68 PIC5 69 PIC7 PIC9 PIC8 PIC3 PIC4 PIC1 69 PIC7 PIC9 PIC9 PIC7 SCAT1 PIC9 69 PIC5 PIC7 PIC8 PIC9 PIC5 PIC8 69 PIC4 70 PIC5 PIC5 PIC7 PIC3 PIC4 PIC9 70 PIC2 PIC3 PIC7 PIC9 PIC2 PIC6 70 PIC5 PIC3 PIC6 PIC9 PIC9 PIC6 70 PIC8 71 PIC9 PIC8 PIC2 PIC5 PIC9 PIC4 71 PIC2 PIC8 PIC3 PIC3 PIC2 PIC6 71 PIC9 PIC8 PIC4 PIC4 PIC9 PIC7 71 PIC2 72 PIC9 PIC2 PIC4 PIC2 PIC6 PIC5 72 PIC5 PIC8 PIC4 PIC6 PIC3 PIC5 72 PIC9 PIC2 PIC3 PIC2 PIC9 PIC4 72 PIC2 73 PIC9 PIC4 PIC6 PIC9 PIC7 PIC5 73 PIC3 PIC8 PIC5 PIC6 PIC7 PIC7 73 PIC8 PIC9 PIC7 PIC2 PIC5 PIC9 73 PIC4 74 PIC3 PIC5 PIC9 PIC9 PIC9 PIC1 74 PIC1 PIC7 PIC6 PIC6 PIC8 PIC4 74 PIC4 PIC4 PIC9 PIC4 PIC7 PIC8 74 PIC5 75 PIC4 PIC5 PIC8 PIC8 PIC5 PIC1 75 PIC5 PIC3 PIC8 PIC4 PIC9 PIC8 75 PIC3 PIC1 PIC5 PIC6 PIC6 PIC6 75 PIC6 76 PIC5 PIC1 PIC7 SCAT1 PIC4 PIC1 76 PIC5 PIC8 PIC9 PIC7 PIC1 PIC8 76 PIC6 PIC7 PIC4 PIC9 PIC6 PIC1 76 PIC9 77 PIC7 PIC1 PIC3 PIC4 PIC7 PIC1 77 PIC3 PIC1 PIC7 PIC8 PIC2 PIC4 77 PIC7 PIC6 PIC9 PIC9 PIC9 PIC1 77 WILD 78 PIC6 PIC6 PIC9 PIC1 PIC7 PIC2 78 PIC2 PIC1 PIC6 PIC6 PIC2 PIC4 78 PIC5 PIC8 PIC8 PIC9 PIC3 PIC5 78 PIC8 79 PIC8 PIC9 PIC9 PIC5 PIC9 PIC7 79 PIC9 PIC7 PIC3 PIC6 PIC2 PIC9 79 PIC9 PIC7 PIC5 PIC5 PIC4 PIC5 79 PIC2 80 SCAT1 PIC9 PIC7 PIC2 PIC6 PIC4 80 PIC8 PIC4 PIC4 PIC9 PIC5 PIC6 80 PIC7 PIC4 PIC4 PIC6 PIC7 PIC5 80 PIC6 81 PIC3 PIC4 PIC6 PIC7 PIC8 PIC1 81 PIC3 PIC6 PIC1 PIC9 PIC5 PIC5 81 PIC8 PIC8 PIC7 PIC2 PIC6 PIC9 81 PIC7 82 PIC7 PIC4 PIC6 PIC3 PIC5 PIC3 82 PIC7 PIC3 PIC2 PIC5 PIC5 PIC8 82 PIC6 PIC9 PIC8 PIC2 PIC8 PIC3 82 PIC1 83 PIC8 PIC4 PIC6 PIC8 PIC5 PIC5 83 PIC1 PIC5 PIC4 PIC7 PIC2 PIC7 83 PIC2 PIC6 PIC8 PIC2 PIC8 PIC3 83 PIC8 84 PIC4 PIC2 PIC6 SCAT1 PIC5 PIC9 84 PIC3 PIC7 PIC7 PIC6 PIC4 PIC3 84 PIC4 PIC6 PIC8 SCAT1 SCAT1 PIC3 84 PIC9 85 PIC9 PIC6 PIC9 PIC9 PIC5 PIC7 85 PIC4 SCAT1 PIC1 SCAT1 PIC7 PIC9 85 PIC4 PIC6 PIC9 PIC6 PIC3 PIC9 85 PIC6 86 PIC7 PIC3 PIC9 PIC4 PIC8 PIC1 86 PIC6 PIC3 PIC1 PIC4 PIC7 PIC9 86 PIC5 PIC6 PIC5 PIC8 PIC9 PIC9 86 PIC2 87 PIC7 PIC7 PIC9 PIC3 PIC3 PIC4 87 PIC2 PIC6 PIC1 PIC9 PIC4 PIC3 87 PIC6 PIC7 PIC4 PIC7 PIC5 PIC9 87 PIC4 88 PIC3 PIC4 PIC9 PIC7 PIC6 PIC5 88 PIC1 PIC8 PIC1 PIC6 PIC4 PIC7 88 PIC9 PIC4 PIC7 PIC7 PIC6 PIC6 88 PIC6 89 PIC8 PIC6 PIC3 PIC9 PIC9 PIC9 89 PIC4 PIC2 PIC2 PIC3 PIC1 PIC4 89 PIC9 PIC5 PIC9 PIC6 PIC6 PIC7 89 PIC9 90 PIC8 PIC1 PIC1 PIC2 PIC5 PIC8 90 PIC4 PIC9 PIC2 PIC3 SCAT1 PIC1 90 PIC9 PIC3 PIC8 PIC3 PIC6 PIC8 90 PIC5 91 PIC6 PIC8 PIC8 PIC3 PIC5 PIC5 91 PIC5 PIC4 PIC2 PIC3 PIC9 PIC3 91 PIC7 SCAT1 PIC7 PIC9 PIC7 PIC3 91 PIC8 92 PIC6 PIC6 PIC8 PIC5 PIC8 PIC7 92 PIC6 PIC2 PIC3 PIC6 PIC4 PIC8 92 PIC6 PIC7 PIC3 PIC2 PIC5 PIC7 92 PIC8 93 PIC2 PIC7 PIC8 PIC6 PIC7 PIC3 93 PIC4 PIC8 PIC4 PIC7 PIC3 PIC7 93 PIC8 PIC9 PIC8 PIC8 PIC4 PIC9 93 PIC7 94 PIC5 PIC2 PIC8 SCAT1 SCAT1 PIC9 94 PIC8 PIC6 PIC9 PIC8 PIC2 PIC4 94 PIC8 PIC5 PIC8 PIC6 PIC8 PIC9 94 PIC6 95 PIC4 PIC3 PIC9 PIC3 PIC4 PIC4 95 PIC8 PIC4 PIC2 PIC4 PIC4 SCAT1 95 PIC8 PIC7 PIC4 PIC6 PIC9 PIC8 95 PIC3 96 PIC4 PIC5 PIC9 PIC4 PIC6 PIC6 96 PIC4 PIC9 PIC7 PIC4 PIC8 PIC5 96 PIC7 PIC7 PIC2 PIC5 PIC9 PIC7 96 PIC1 97 PIC4 PIC4 PIC8 PIC1 PIC9 PIC3 97 PIC4 PIC5 PIC5 PIC1 PIC8 PIC8 97 PIC5 PIC9 PIC7 PIC8 PIC9 PIC2 97 PIC4 98 PIC4 PIC2 PIC7 PIC9 PIC5 SCAT1 98 PIC4 PIC5 PIC9 PIC1 PIC4 PIC2 98 PIC8 PIC8 PIC9 PIC8 PIC6 PIC6 98 PIC9 99 PIC3 PIC1 PIC4 PIC4 PIC8 PIC4 99 PIC6 PIC5 PIC4 PIC8 PIC5 PIC3 99 PIC6 PIC2 PIC9 PIC3 PIC6 PIC6 99 PIC8 100 PIC9 PIC1 PIC5 PIC6 PIC8 PIC3 100 PIC9 PIC5 PIC6 PIC9 PIC1 PIC4 100 PIC6 PIC6 PIC9 PIC9 PIC6 PIC6 100 PIC7 101 PIC1 PIC1 PIC9 PIC5 PIC8 PIC6 101 PIC2 PIC9 PIC3 PIC5 PIC3 PIC4 101 PIC9 PIC6 PIC9 PIC9 PIC9 PIC2 101 PIC6 102 PIC3 PIC1 PIC4 PIC5 PIC6 PIC8 102 PIC2 PIC7 PIC2 PIC1 PIC9 PIC9 102 PIC8 PIC9 PIC7 PIC9 PIC7 PIC4 102 PIC6 103 PIC5 PIC6 PIC6 PIC6 PIC9 PIC7 103 PIC2 PIC2 PIC1 PIC7 PIC8 PIC6 103 PIC7 PIC7 PIC3 PIC8 PIC7 PIC5 103 PIC6 104 PIC7 PIC9 PIC8 PIC1 PIC2 PIC3 104 PIC2 PIC6 PIC3 PIC8 PIC6 PIC7 104 PIC2 PIC8 PIC3 PIC4 PIC8 PIC3 104 PIC6 105 PIC9 PIC4 PIC7 PIC1 PIC6 PIC9 105 PIC3 PIC5 PIC4 PIC6 PIC1 PIC9 105 PIC6 PIC6 PIC8 PIC6 PIC8 PIC9 105 PIC1 106 PIC9 PIC5 SCAT1 PIC1 PIC6 SCAT1 106 PIC7 PIC4 PIC4 PIC6 PIC1 PIC8 106 PIC5 PIC9 PIC6 PIC7 PIC8 PIC1 106 PIC3 107 PIC9 PIC2 PIC3 PIC3 PIC5 PIC5 107 PIC1 PIC3 PIC2 PIC3 PIC1 PIC5 107 PIC7 PIC7 PIC5 PIC9 PIC7 PIC8 107 PIC3 108 PIC9 PIC1 PIC2 PIC7 PIC7 PIC4 108 PIC3 PIC8 PIC1 PIC3 PIC7 PIC9 108 PIC4 PIC7 PIC4 PIC4 PIC3 PIC7 108 WILD 109 PIC8 PIC5 PIC7 PIC7 PIC4 PIC6 109 SCAT1 PIC7 PIC1 PIC8 PIC3 PIC7 109 PIC3 PIC2 PIC9 PIC4 PIC3 PIC6 109 PIC7 110 PIC6 PIC3 PIC8 PIC4 PIC2 PIC7 110 PIC5 PIC3 PIC8 PIC8 SCAT1 PIC3 110 PIC6 PIC4 PIC6 PIC8 PIC8 PIC3 110 PIC4 111 PIC6 PIC7 PIC3 PIC4 PIC8 PIC4 111 PIC2 PIC4 PIC6 PIC3 PIC6 PIC6 111 PIC4 PIC4 PIC1 PIC1 PIC9 PIC9 111 PIC8 112 PIC8 SCAT1 PIC7 PIC4 PIC7 PIC4 112 PIC4 PIC6 PIC4 PIC6 PIC5 PIC8 112 PIC9 PIC5 PIC3 PIC3 PIC6 PIC6 112 PIC7 113 PIC4 PIC5 PIC8 PIC5 PIC7 PIC4 113 PIC6 PIC9 PIC1 PIC7 PIC1 PIC5 113 PIC8 PIC6 PIC4 PIC4 PIC8 PIC7 113 PIC3 114 PIC4 PIC8 PIC8 PIC5 PIC7 PIC3 114 PIC5 PIC7 PIC5 PIC5 PIC3 PIC9 114 PIC6 PIC6 PIC4 PIC1 PIC8 PIC2 114 PIC2 115 PIC4 PIC6 PIC8 PIC5 PIC9 SCAT1 115 PIC1 PIC7 PIC4 PIC3 PIC5 PIC8 115 PIC4 PIC9 PIC7 PIC1 PIC5 PIC9 115 PIC4 116 PIC6 PIC6 PIC6 PIC2 PIC9 PIC6 116 PIC1 PIC7 SCAT1 PIC2 PIC2 PIC4 116 PIC1 PIC9 PIC9 PIC1 PIC4 PIC9 116 PIC6 117 PIC9 PIC8 PIC5 PIC2 PIC9 PIC1 117 PIC1 PIC5 PIC2 PIC7 PIC8 PIC3 117 PIC7 PIC9 PIC4 PIC7 PIC4 PIC8 117 PIC6 118 PIC9 PIC4 PIC5 PIC1 PIC2 PIC7 118 PIC1 PIC8 PIC2 PIC8 PIC3 PIC5 118 PIC9 PIC3 PIC8 PIC6 PIC2 PIC4 118 PIC8 119 PIC3 PIC7 PIC5 PIC4 PIC2 PIC7 119 PIC3 PIC8 PIC2 PIC9 PIC3 PIC9 119 PIC8 PIC3 PIC6 PIC8 PIC8 PIC6 119 PIC8 120 PIC8 PIC3 PIC5 PIC8 PIC8 PIC8 120 PIC2 PIC8 PIC2 PIC3 PIC3 PIC6 120 PIC1 PIC1 PIC6 PIC3 PIC9 PIC6 120 PIC7 121 PIC9 PIC2 PIC4 PIC8 PIC9 PIC8 121 SCAT1 PIC4 PIC3 PIC5 PIC6 PIC6 121 PIC1 PIC8 PIC7 PIC2 PIC3 PIC2 121 PIC6 122 PIC6 PIC4 PIC6 PIC5 SCAT1 PIC1 122 PIC4 PIC5 PIC3 PIC5 PIC7 PIC6 122 PIC8 PIC3 PIC1 PIC4 PIC8 PIC1 122 PIC1 123 PIC6 PIC5 PIC6 PIC4 PIC3 PIC1 123 PIC1 PIC6 PIC3 PIC8 PIC9 PIC9 123 PIC9 PIC4 PIC1 PIC9 PIC7 PIC7 123 PIC5 124 PIC7 PIC1 PIC7 PIC4 PIC7 PIC1 124 PIC1 PIC6 PIC7 PIC6 PIC1 PIC9 124 PIC2 PIC7 PIC6 PIC1 PIC6 PIC7 124 PIC5 125 PIC3 PIC1 PIC3 PIC1 PIC8 PIC5 125 PIC1 PIC6 PIC7 PIC6 PIC2 PIC7 125 PIC7 PIC6 PIC5 PIC5 PIC6 PIC7 125 PIC5 126 PIC8 PIC1 PIC1 PIC1 PIC9 PIC3 126 PIC4 PIC7 PIC5 PIC6 PIC3 PIC3 126 PIC3 PIC9 PIC9 PIC6 SCAT1 PIC2 126 PIC3 127 PIC8 PIC4 PIC2 PIC5 PIC3 PIC3 127 PIC9 PIC4 PIC5 PIC4 PIC3 PIC6 127 PIC9 PIC2 PIC9 PIC3 PIC9 PIC8 127 PIC2 128 PIC5 PIC8 PIC8 PIC6 PIC4 PIC5 128 PIC5 PIC4 PIC5 PIC9 PIC5 PIC6 128 PIC5 PIC2 PIC3 PIC8 PIC4 PIC8 128 PIC6 129 SCAT1 PIC6 PIC5 PIC9 PIC8 PIC9 129 PIC5 PIC8 SCAT1 PIC8 PIC5 PIC7 129 PIC7 PIC3 PIC8 PIC7 PIC8 PIC8 129 PIC9 130 PIC9 PIC5 PIC4 PIC7 PIC9 PIC1 130 PIC5 PIC8 PIC3 PIC8 PIC7 PIC7 130 PIC2 PIC8 PIC1 PIC9 PIC2 PIC5 130 PIC7 131 PIC5 PIC9 PIC4 PIC3 PIC4 PIC8 131 PIC4 PIC9 PIC7 PIC8 PIC4 PIC6 131 PIC2 PIC8 PIC3 PIC5 PIC7 PIC6 131 PIC7 132 PIC7 PIC8 PIC4 PIC3 PIC1 PIC2 132 PIC6 PIC2 PIC1 PIC5 SCAT1 PIC9 132 PIC8 PIC8 PIC5 PIC5 PIC5 PIC7 132 PIC7 133 PIC4 PIC1 PIC4 SCAT1 PIC7 SCAT1 133 PIC7 PIC6 PIC5 PIC9 PIC5 PIC4 133 PIC6 PIC1 PIC5 PIC6 PIC9 PIC7 133 PIC8 134 PIC5 PIC3 PIC7 PIC1 PIC5 PIC4 134 PIC8 PIC5 PIC9 PIC6 PIC6 PIC8 134 PIC7 PIC7 PIC5 PIC8 PIC9 PIC9 134 PIC8 135 PIC6 PIC7 PIC7 PIC4 PIC9 PIC3 135 PIC3 PIC8 PIC9 PIC8 PIC6 PIC5 135 PIC7 PIC6 PIC4 PIC5 PIC8 PIC4 135 PIC7 136 PIC9 PIC2 PIC7 PIC8 PIC4 PIC2 136 PIC2 PIC7 PIC2 PIC3 PIC5 PIC7 136 PIC9 PIC1 PIC4 PIC4 PIC3 PIC3 136 PIC7 137 PIC8 PIC8 PIC6 PIC3 PIC6 PIC2 137 PIC1 PIC4 PIC1 PIC5 PIC2 PIC4 137 PIC6 PIC3 PIC8 PIC2 PIC3 PIC7 137 PIC7 138 PIC8 PIC3 PIC5 PIC8 PIC2 138 PIC3 PIC9 PIC1 PIC3 138 PIC6 PIC9 PIC9 PIC7 PIC9 PIC6 138 PIC7 139 PIC8 PIC8 PIC9 PIC7 PIC9 139 PIC5 PIC2 PIC6 PIC9 139 PIC7 PIC2 PIC4 PIC6 PIC7 PIC6 139 PIC9 140 PIC8 PIC9 PIC9 140 PIC8 PIC7 PIC7 140 PIC3 PIC7 PIC5 PIC3 PIC7 PIC8 140 PIC5 141 PIC2 PIC7 PIC3 141 PIC6 PIC3 PIC2 141 PIC9 PIC8 PIC6 PIC9 PIC3 PIC8 141 PIC3 142 PIC6 PIC6 PIC3 142 PIC2 PIC6 PIC8 142 PIC9 PIC5 PIC6 PIC9 PIC4 PIC9 142 WILD 143 PIC5 PIC4 PIC6 143 PIC9 PIC6 PIC7 143 PIC9 PIC5 PIC9 PIC9 PIC8 PIC4 143 PIC4 144 PIC7 PIC7 PIC4 144 PIC7 PIC7 PIC5 144 PIC5 PIC7 PIC2 PIC9 PIC3 PIC8 144 PIC4 145 PIC4 PIC6 SCAT1 145 PIC3 PIC8 PIC5 145 PIC2 PIC4 PIC1 PIC6 PIC7 PIC8 145 PIC4 146 PIC5 PIC6 PIC7 146 PIC9 PIC3 PIC5 146 SCAT1 PIC9 PIC7 PIC7 PIC6 PIC5 146 PIC4 147 PIC8 PIC8 PIC8
Recommended Posts