• Welcome to #1 Roulette Forum & Message Board | www.RouletteForum.cc.

News:

Test the accuracy of your method to predict the winning number. If it works, then your system works. But tests over a few hundred spins tell you nothing.

Main Menu
Popular pages:

Roulette System

The Roulette Systems That Really Work

Roulette Computers

Hidden Electronics That Predict Spins

Roulette Strategy

Why Roulette Betting Strategies Lose

Roulette System

The Honest Live Online Roulette Casinos

KTF, is just like living in Paradise

Started by nottophammer, Mar 20, 06:25 AM 2017

Previous topic - Next topic

0 Members and 2 Guests are viewing this topic.

Priyanka

Quote from: maestro on Apr 24, 04:34 AM 2017i am sure you could have done better than that.
There is always room for improvement. I was exploring earlier in the random thoughts topic how to remove some Ls and keep the Ws. I was also exploring how to merge games together.

Quote from: nottophammer on Apr 24, 07:19 AM 2017I see the figures, now can you explain to a keystage 3 maths student, VDW means nothing, sounds like an STD thou
Nottop - Hope the following gives you the way to do it in an improved way for today's spins. Try it out and let me know if the KS2 doesnt understand, I am happy to explain. I did code in a hurry, so might have a couple of errors, but mostly in line. It is essentially merging the formation of AP in three separate streams of data playing only the numbers that has appeared on this group. Aim is to keep the numbers unique, merge the betting opportunities so that we do away with some losses and wins to create an imbalance and see where it takes us. NO! not a claim for a winning system, but happy to explain if you have any queries and if you are interested. For one who are looking at trots, this should be interesting. +75 in today's spins.


Disclaimer : Roulette systems are subject to laws of probability. If you are not sure about the effects of it, please refer to link:://:.genuinewinner.com/truth. Don't get robbed by scammers.

falkor2k15

Hi Priyanka, I got a related question: when you advised on reducing apples or pears in the "VdW on ECs" example you posted in the Random Thoughts topic - were you required to bring in any additional streams to create that stunning green graph - or were you able to achieve it simply by tracking just the AP/type and WL streams?
"Trotity trot, trotity trot, the noughts became overtly hot! Merily, merily, merily, merily, the 2s went gently down the stream..."¸¸.•*¨*•♫♪:

falkor2k15

Just to elaborate on my question to Priyanka: were you able to generate the green graph by sticking to VdW on Red and Black - without ever needing to track OE/HL or parachute to them? In other words, if you know the right time to bet normal or opposite then you could generate the graph just from tracking APs and WL results?
"Trotity trot, trotity trot, the noughts became overtly hot! Merily, merily, merily, merily, the 2s went gently down the stream..."¸¸.•*¨*•♫♪:

Priyanka

Quote from: falkor2k15 on Apr 24, 12:18 PM 2017
Just to elaborate on my question to Priyanka: were you able to generate the green graph by sticking to VdW on Red and Black - without ever needing to track OE/HL or parachute to them? In other words, if you know the right time to bet normal or opposite then you could generate the graph just from tracking APs and WL results?
Green graph was betting on only reds and blacks as I stated.
Disclaimer : Roulette systems are subject to laws of probability. If you are not sure about the effects of it, please refer to link:://:.genuinewinner.com/truth. Don't get robbed by scammers.

falkor2k15

Quote from: Priyanka on Apr 24, 03:52 PM 2017
Green graph was betting on only reds and blacks as I stated.
O0 I think I figured out the solution myself, but I guess using 2-3 streams would give more betting opportunities.
"Trotity trot, trotity trot, the noughts became overtly hot! Merily, merily, merily, merily, the 2s went gently down the stream..."¸¸.•*¨*•♫♪:

Still

Quote from: falkor2k15 on Apr 24, 04:23 PM 2017
O0 I think I figured out the solution myself, but I guess using 2-3 streams would give more betting opportunities.

I can't remember, did you share your solution here, or at your new forum?

Steve

Quote from: Still on Apr 25, 02:34 PM 2017I can't remember, did you share your solution here, or at your new forum?

Neither. And he never will. You need to wake up and check Falkor's history over the past few years. Followers stay believing they're on the edge of some huge discovery.

If your intention is to actually beat roulette, understand there needs to be something that actually changes the odds in your favor. When considering something new, there must be some kind of "proof of concept", or the talk is just worthless.
"The only way to beat roulette is by increasing the accuracy of predictions"
Roulettephysics.com ← Professional roulette tips
Roulette-computers.com ← Hidden electronics that predicts the winning number
Roulettephysics.com/roulette-strategy ← Why most systems lose

praline

Quote from: Priyanka on Apr 24, 12:04 PM 2017Hope the following gives you the way to do it in an improved way for today's spins. Try it out and let me know if the KS2 doesnt understand, I am happy to explain. I did code in a hurry, so might have a couple of errors, but mostly in line. It is essentially merging the formation of AP in three separate streams of data playing only the numbers that has appeared on this group. Aim is to keep the numbers unique, merge the betting opportunities so that we do away with some losses and wins to create an imbalance and see where it takes us. NO! not a claim for a winning system, but happy to explain if you have any queries and if you are interested. For one who are looking at trots, this should be interesting. +75 in today's spins.

I've made tiny code for rx based on what Priyanka is talking about. Will appreciate any corrections and hope somebody will test it to see if all bets are correct...
>:D
[reveal]system "untitled"

method "main"
begin
    While Starting a New Session
    begin
        copy black to record "b" layout
        copy red to record "r" layout
        copy even to record "e" layout
        copy odd to record "o" layout
        copy high to record "h" layout
        copy low to record "l" layout
   
        clear record "red" layout
        clear record "black" layout
        clear record "odd" layout
        clear record "even" layout
        clear record "high" layout
        clear record "low" layout
        clear record "last number" layout
        clear record "last cycle" layout
       
        clear record "1aprb" layout
        clear record "2aprb" layout
        clear record "3aprb" layout
        clear record "4aprb" layout
        clear record "5aprb" layout
        clear record "6aprb" layout
        clear record "7aprb" layout
        clear record "8aprb" layout
        clear record "9aprb" layout
       
        clear record "vdwrb" layout
       
        clear record "1apeo" layout
        clear record "2apeo" layout
        clear record "3apeo" layout
        clear record "4apeo" layout
        clear record "5apeo" layout
        clear record "6apeo" layout
        clear record "7apeo" layout
        clear record "8apeo" layout
        clear record "9apeo" layout

        clear record "vdweo" layout
    end

    While on Each Spin
    begin
          call "flags and ap typefor rb"
          call "flags and ap typefor eo"
          call "flags and ap typefor hl"

   
   

                               copy last number to record "last number" layout
                          if record "last number" layout is found in record "last cycle" layout
                          begin
        clear record "red" layout
        clear record "black" layout
        clear record "odd" layout
        clear record "even" layout
        clear record "high" layout
        clear record "low" layout

                           clear record "last cycle" layout
                           copy last number to record "last cycle" layout
                           
                                if red hit each
                                begin
                                  add 1 to record "red" layout index
                                  copy record "last number" layout to record "red" layout
                                end
                                if black hit each
                                begin
                                  add 1 to record "black" layout index
                                  copy record "last number" layout to record "black" layout
                                end
                               
                                if odd hit each
                                begin
                                  add 1 to record "odd" layout index
                                  copy record "last number" layout to record "odd" layout
                                end
                                if even hit each
                                begin
                                  add 1 to record "even" layout index
                                  copy record "last number" layout to record "even" layout
                                end
                               
                                if high hit each
                                begin
                                  add 1 to record "high" layout index
                                  copy record "last number" layout to record "high" layout
                                end
                                if low hit each
                                begin
                                  add 1 to record "low" layout index
                                  copy record "last number" layout to record "low" layout
                                end

                          end
                          else
                          begin
                           add 1 record "last cycle" layout index
                           copy last number to record "last cycle" layout
                               if red hit each
                                begin
                                  add 1 to record "red" layout index
                                  copy record "last number" layout to record "red" layout
                                end
                                if black hit each
                                begin
                                  add 1 to record "black" layout index
                                  copy record "last number" layout to record "black" layout
                                end

                                if odd hit each
                                begin
                                  add 1 to record "odd" layout index
                                  copy record "last number" layout to record "odd" layout
                                end
                                if even hit each
                                begin
                                  add 1 to record "even" layout index
                                  copy record "last number" layout to record "even" layout
                                end

                                if high hit each
                                begin
                                  add 1 to record "high" layout index
                                  copy record "last number" layout to record "high" layout
                                end
                                if low hit each
                                begin
                                  add 1 to record "low" layout index
                                  copy record "last number" layout to record "low" layout
                                end

                          end


        call "vdwrb"
        call "vdweo"
        call "vdwhl"

    end

end


method "vdwrb"
begin
  if number 0 not hit each
  begin
     if record "vdwrb" layout index = 8
     begin
     copy last red-black to record "9aprb" layout
     add 1 to record "vdwrb" layout index
     copy last red-black to record "vdwrb" layout
     end
     if record "vdwrb" layout index = 7
     begin
     copy last red-black to record "8aprb" layout
     add 1 to record "vdwrb" layout index
     copy last red-black to record "vdwrb" layout
     end
     if record "vdwrb" layout index = 6
     begin
     copy last red-black to record "7aprb" layout
     add 1 to record "vdwrb" layout index
     copy last red-black to record "vdwrb" layout
     end
     if record "vdwrb" layout index = 5
     begin
     copy last red-black to record "6aprb" layout
     add 1 to record "vdwrb" layout index
     copy last red-black to record "vdwrb" layout
     end
     if record "vdwrb" layout index = 4
     begin
     copy last red-black to record "5aprb" layout
     add 1 to record "vdwrb" layout index
     copy last red-black to record "vdwrb" layout
     end
     if record "vdwrb" layout index = 3
     begin
     copy last red-black to record "4aprb" layout
     add 1 to record "vdwrb" layout index
     copy last red-black to record "vdwrb" layout
     end
     if record "vdwrb" layout index = 2
     begin
     copy last red-black to record "3aprb" layout
     add 1 to record "vdwrb" layout index
     copy last red-black to record "vdwrb" layout
     end
     if record "vdwrb" layout index = 1
     begin
     copy last red-black to record "2aprb" layout
     add 1 to record "vdwrb" layout index
     copy last red-black to record "vdwrb" layout
     end
     if record "vdwrb" layout index = 0
     begin
     copy last red-black to record "1aprb" layout
     add 1 to record "vdwrb" layout index
     copy last red-black to record "vdwrb" layout
     end
  end
call "find rb ap"

end

method "find rb ap"
begin

    if record "r" layout is found in record "1aprb" layout
    and  record "r" layout  is found in record "2aprb" layout
    and record "vdwrb" layout index = 2
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "1ap" true
    end
    if record "r" layout  is found in record "2aprb" layout
    and  record "r" layout  is found in record "3aprb" layout
    and record "vdwrb" layout index = 3
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "2ap" true
    end
    if record "r"  layout is found in record "1aprb" layout
    and  record "r" layout  is found in record "3aprb" layout
    and record "vdwrb" layout index = 4
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "3ap" true
    end
    if record "r" layout  is found in record "3aprb" layout
    and  record "r"  layout is found in record "4aprb" layout
    and record "vdwrb" layout index = 4
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "4ap" true
    end
    if record "r" layout  is found in record "4aprb" layout
    and  record "r" layout  is found in record "5aprb" layout
    and record "vdwrb" layout index = 5
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "5ap" true
    end
    if record "r"  layout is found in record "2aprb" layout
    and  record "r"  layout is found in record "4aprb" layout
    and record "vdwrb" layout index = 5
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "6ap" true
    end
    if record "r" layout  is found in record "5aprb" layout
    and  record "r" layout  is found in record "6aprb" layout
    and record "vdwrb" layout index = 6
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "7ap" true
    end
    if record "r"  layout is found in record "1aprb" layout
    and  record "r" layout  is found in record "4aprb" layout
    and record "vdwrb" layout index = 6
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "8ap" true
    end
    if record "r"  layout is found in record "3aprb" layout
    and  record "r" layout  is found in record "5aprb" layout
    and record "vdwrb" layout index = 6
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "9ap" true
    end
    if record "r"  layout is found in record "6aprb" layout
    and  record "r" layout  is found in record "7aprb" layout
    and record "vdwrb" layout index = 7
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "10ap" true
    end
    if record "r" layout  is found in record "2aprb" layout
    and  record "r" layout  is found in record "5aprb" layout
    and record "vdwrb" layout index = 7
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "11ap" true
    end
    if record "r" layout  is found in record "4aprb" layout
    and  record "r" layout  is found in record "6aprb" layout
    and record "vdwrb" layout index = 7
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "12ap" true
    end
    if record "r" layout  is found in record "7aprb" layout
    and  record "r" layout  is found in record "8aprb" layout
    and record "vdwrb" layout index = 8
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "13ap" true
    end
    if record "r" layout  is found in record "1aprb" layout
    and  record "r" layout  is found in record "5aprb" layout
    and record "vdwrb" layout index = 8
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "14ap" true
    end
    if record "r"  layout is found in record "3aprb" layout
    and  record "r"  layout is found in record "6aprb" layout
    and record "vdwrb" layout index = 8
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "15ap" true
    end
    if record "r"  layout is found in record "5aprb" layout
    and  record "r"  layout is found in record "7aprb" layout
    and record "vdwrb" layout index = 8
    begin
    put 1 on record "red" layout list
    set flag "bet red" true
    set flag "16ap" true
    end






     if record "b" layout is found in record "1aprb" layout
    and  record "b" layout  is found in record "2aprb" layout
    and record "vdwrb" layout index = 2
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "1ap" true
    end
    if record "b" layout  is found in record "2aprb" layout
    and  record "b" layout  is found in record "3aprb" layout
    and record "vdwrb" layout index = 3
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "2ap" true
    end
    if record "b"  layout is found in record "1aprb" layout
    and  record "b" layout  is found in record "3aprb" layout
    and record "vdwrb" layout index = 4
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "3ap" true
    end
    if record "b" layout  is found in record "3aprb" layout
    and  record "b"  layout is found in record "4aprb" layout
    and record "vdwrb" layout index = 4
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "4ap" true
    end
    if record "b" layout  is found in record "4aprb" layout
    and  record "b" layout  is found in record "5aprb" layout
    and record "vdwrb" layout index = 5
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "5ap" true
    end
    if record "b"  layout is found in record "2aprb" layout
    and  record "b"  layout is found in record "4aprb" layout
    and record "vdwrb" layout index = 5
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "6ap" true
    end
    if record "b" layout  is found in record "5aprb" layout
    and  record "b" layout  is found in record "6aprb" layout
    and record "vdwrb" layout index = 6
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "7ap" true
    end
    if record "b"  layout is found in record "1aprb" layout
    and  record "b" layout  is found in record "4aprb" layout
    and record "vdwrb" layout index = 6
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "8ap" true
    end
    if record "b"  layout is found in record "3aprb" layout
    and  record "b" layout  is found in record "5aprb" layout
    and record "vdwrb" layout index = 6
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "9ap" true
    end
    if record "b"  layout is found in record "6aprb" layout
    and  record "b" layout  is found in record "7aprb" layout
    and record "vdwrb" layout index = 7
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "10ap" true
    end
    if record "b" layout  is found in record "2aprb" layout
    and  record "b" layout  is found in record "5aprb" layout
    and record "vdwrb" layout index = 7
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "11ap" true
    end
    if record "b" layout  is found in record "4aprb" layout
    and  record "b" layout  is found in record "6aprb" layout
    and record "vdwrb" layout index = 7
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "12ap" true
    end
    if record "b" layout  is found in record "7aprb" layout
    and  record "b" layout  is found in record "8aprb" layout
    and record "vdwrb" layout index = 8
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "13ap" true
    end
    if record "b" layout  is found in record "1aprb" layout
    and  record "b" layout  is found in record "5aprb" layout
    and record "vdwrb" layout index = 8
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "14ap" true
    end
    if record "b"  layout is found in record "3aprb" layout
    and  record "b"  layout is found in record "6aprb" layout
    and record "vdwrb" layout index = 8
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "15ap" true
    end
    if record "b"  layout is found in record "5aprb" layout
    and  record "b"  layout is found in record "7aprb" layout
    and record "vdwrb" layout index = 8
    begin
    put 1 on record "black" layout list
    set flag "bet black" true
    set flag "16ap" true
    end



end




method "flags and ap typefor rb"
begin

      if flag "bet red"  true
          begin
              if red hit each
              begin
                  if flag "1ap" true
                  begin
                    clear record "vdwrb" layout
                    copy record "2aprb" layout to record "vdwrb" layout
                   
                    copy record "2aprb" layout to record "1aprb" layout
                    clear record "2aprb" layout
                  end
                  if flag "2ap" true
                  begin
                    clear record "vdwrb" layout
                    copy record "3aprb" layout to record "vdwrb" layout

                    copy record "3aprb" layout to record "1aprb" layout
                    clear record "2aprb" layout
                    clear record "3aprb" layout
                  end
                  if flag "3ap" true
                  and flag "4ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "2aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "3aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "4aprb" layout to record "vdwrb" layout

                    copy record "2aprb" layout to record "1aprb" layout
                    copy record "3aprb" layout to record "2aprb" layout
                    copy record "4aprb" layout to record "3aprb" layout

                    clear record "4aprb" layout
                  end
                  if flag "4ap" true
                  begin
                    clear record "vdwrb" layout
                    copy record "4aprb" layout to record "vdwrb" layout

                    copy record "3aprb" layout to record "1aprb" layout
                    clear record "2aprb" layout
                    clear record "3aprb" layout
                    clear record "4aprb" layout
                  end
                  if flag "5ap" true
                  begin
                    clear record "vdwrb" layout
                    copy record "5aprb" layout to record "vdwrb" layout

                    copy record "5aprb" layout to record "1aprb" layout
                    clear record "2aprb" layout
                    clear record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                  end
                  if flag "6ap" true
                  and flag "5ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "3aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "4aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "5aprb" layout to record "vdwrb" layout

                    copy record "3aprb" layout to record "1aprb" layout
                    copy record "4aprb" layout to record "2aprb" layout
                    copy record "5aprb" layout to record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                  end
                  if flag "7ap" true
                  begin
                    clear record "vdwrb" layout
                    copy record "6aprb" layout to record "vdwrb" layout

                    copy record "6aprb" layout to record "1aprb" layout
                    clear record "2aprb" layout
                    clear record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                    clear record "6aprb" layout
                  end
                  if flag "8ap" true
                  and flag "7ap" false
                  and flag "9ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "2aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "3aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "4aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "5aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "6aprb" layout to record "vdwrb" layout

                    copy record "2aprb" layout to record "1aprb" layout
                    copy record "3aprb" layout to record "2aprb" layout
                    copy record "4aprb" layout to record "3aprb" layout
                    copy record "5aprb" layout to record "4aprb" layout
                    copy record "6aprb" layout to record "5aprb" layout
                    clear record "6aprb" layout
                  end
                  if flag "9ap" true
                  and flag "7ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "4aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "5aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "6aprb" layout to record "vdwrb" layout

                    copy record "4aprb" layout to record "1aprb" layout
                    copy record "5aprb" layout to record "2aprb" layout
                    copy record "6aprb" layout to record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                    clear record "6aprb" layout
                  end
                  if flag "10ap" true
                  begin
                    clear record "vdwrb" layout
                    copy record "7aprb" layout to record "vdwrb" layout

                    copy record "7aprb" layout to record "1aprb" layout
                    clear record "2aprb" layout
                    clear record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                    clear record "6aprb" layout
                    clear record "7aprb" layout
                  end
                  if flag "11ap" true
                  and flag "12ap" false
                  and flag "10ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "3aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "4aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "5aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "6aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "7aprb" layout to record "vdwrb" layout

                    copy record "3aprb" layout to record "1aprb" layout
                    copy record "4aprb" layout to record "2aprb" layout
                    copy record "5aprb" layout to record "3aprb" layout
                    copy record "6aprb" layout to record "4aprb" layout
                    copy record "7aprb" layout to record "5aprb" layout
                    clear record "6aprb" layout
                    clear record "7aprb" layout
                  end
                  if flag "12ap" true
                  and flag "10ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "5aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "6aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "7aprb" layout to record "vdwrb" layout

                    copy record "5aprb" layout to record "1aprb" layout
                    copy record "6aprb" layout to record "2aprb" layout
                    copy record "7aprb" layout to record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                    clear record "6aprb" layout
                    clear record "7aprb" layout
                  end
                  if flag "13ap" true
                  begin
                    clear record "vdwrb" layout
                    copy record "8aprb" layout to record "vdwrb" layout

                    copy record "8aprb" layout to record "1aprb" layout
                    clear record "2aprb" layout
                    clear record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                    clear record "6aprb" layout
                    clear record "7aprb" layout
                    clear record "8aprb" layout
                  end
                  if flag "14ap" true
                  and flag "13ap" false
                  and flag "15ap" false
                  and flag "16ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "2aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "3aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "4aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "5aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "6aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "7aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "8aprb" layout to record "vdwrb" layout

                    copy record "2aprb" layout to record "1aprb" layout
                    copy record "3aprb" layout to record "2aprb" layout
                    copy record "4aprb" layout to record "3aprb" layout
                    copy record "5aprb" layout to record "4aprb" layout
                    copy record "6aprb" layout to record "5aprb" layout
                    copy record "7aprb" layout to record "6aprb" layout
                    copy record "8aprb" layout to record "7aprb" layout
                    clear record "8aprb" layout
                  end
                  if flag "15ap" true
                  and flag "13ap" false
                  and flag "16ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "4aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "5aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "6aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "7aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "8aprb" layout to record "vdwrb" layout

                    copy record "4aprb" layout to record "1aprb" layout
                    copy record "5aprb" layout to record "2aprb" layout
                    copy record "6aprb" layout to record "3aprb" layout
                    copy record "7aprb" layout to record "4aprb" layout
                    copy record "8aprb" layout to record "5aprb" layout
                    clear record "6aprb" layout
                    clear record "7aprb" layout
                    clear record "8aprb" layout
                  end
                  if flag "16ap" true

                  and flag "13ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "6aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "7aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "8aprb" layout to record "vdwrb" layout

                    copy record "6aprb" layout to record "1aprb" layout
                    copy record "7aprb" layout to record "2aprb" layout
                    copy record "8aprb" layout to record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                    clear record "6aprb" layout
                    clear record "7aprb" layout
                    clear record "8aprb" layout
                  end
                 
                 
                 
                 
                 
              end
              set flag "bet red" false

          end
         
         
         
          if flag "bet black"  true
          begin
              if black hit each
              begin
                   if flag "1ap" true
                  begin
                    clear record "vdwrb" layout
                    copy record "2aprb" layout to record "vdwrb" layout

                    copy record "2aprb" layout to record "1aprb" layout
                    clear record "2aprb" layout
                  end
                  if flag "2ap" true
                  begin
                    clear record "vdwrb" layout
                    copy record "3aprb" layout to record "vdwrb" layout

                    copy record "3aprb" layout to record "1aprb" layout
                    clear record "2aprb" layout
                    clear record "3aprb" layout
                  end
                  if flag "3ap" true
                  and flag "4ap" false
                 
                  begin
                    clear record "vdwrb" layout
                    copy record "2aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "3aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "4aprb" layout to record "vdwrb" layout

                    copy record "2aprb" layout to record "1aprb" layout
                    copy record "3aprb" layout to record "2aprb" layout
                    copy record "4aprb" layout to record "3aprb" layout

                    clear record "4aprb" layout
                  end
                  if flag "4ap" true
                  begin
                    clear record "vdwrb" layout
                    copy record "4aprb" layout to record "vdwrb" layout

                    copy record "3aprb" layout to record "1aprb" layout
                    clear record "2aprb" layout
                    clear record "3aprb" layout
                    clear record "4aprb" layout
                  end
                  if flag "5ap" true
                  begin
                    clear record "vdwrb" layout
                    copy record "5aprb" layout to record "vdwrb" layout

                    copy record "5aprb" layout to record "1aprb" layout
                    clear record "2aprb" layout
                    clear record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                  end
                  if flag "6ap" true
                  and flag "5ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "3aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "4aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "5aprb" layout to record "vdwrb" layout

                    copy record "3aprb" layout to record "1aprb" layout
                    copy record "4aprb" layout to record "2aprb" layout
                    copy record "5aprb" layout to record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                  end
                  if flag "7ap" true
                  begin
                    clear record "vdwrb" layout
                    copy record "6aprb" layout to record "vdwrb" layout

                    copy record "6aprb" layout to record "1aprb" layout
                    clear record "2aprb" layout
                    clear record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                    clear record "6aprb" layout
                  end
                  if flag "8ap" true
                  and flag "7ap" false
                  and flag "9ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "2aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "3aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "4aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "5aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "6aprb" layout to record "vdwrb" layout

                    copy record "2aprb" layout to record "1aprb" layout
                    copy record "3aprb" layout to record "2aprb" layout
                    copy record "4aprb" layout to record "3aprb" layout
                    copy record "5aprb" layout to record "4aprb" layout
                    copy record "6aprb" layout to record "5aprb" layout
                    clear record "6aprb" layout
                  end
                  if flag "9ap" true
                  and flag "7ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "4aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "5aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "6aprb" layout to record "vdwrb" layout

                    copy record "4aprb" layout to record "1aprb" layout
                    copy record "5aprb" layout to record "2aprb" layout
                    copy record "6aprb" layout to record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                    clear record "6aprb" layout
                  end
                  if flag "10ap" true
                  begin
                    clear record "vdwrb" layout
                    copy record "7aprb" layout to record "vdwrb" layout

                    copy record "7aprb" layout to record "1aprb" layout
                    clear record "2aprb" layout
                    clear record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                    clear record "6aprb" layout
                    clear record "7aprb" layout
                  end
                  if flag "11ap" true
                  and flag "12ap" false
                  and flag "10ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "3aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "4aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "5aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "6aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "7aprb" layout to record "vdwrb" layout

                    copy record "3aprb" layout to record "1aprb" layout
                    copy record "4aprb" layout to record "2aprb" layout
                    copy record "5aprb" layout to record "3aprb" layout
                    copy record "6aprb" layout to record "4aprb" layout
                    copy record "7aprb" layout to record "5aprb" layout
                    clear record "6aprb" layout
                    clear record "7aprb" layout
                  end
                  if flag "12ap" true
                  and flag "10ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "5aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "6aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "7aprb" layout to record "vdwrb" layout

                    copy record "5aprb" layout to record "1aprb" layout
                    copy record "6aprb" layout to record "2aprb" layout
                    copy record "7aprb" layout to record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                    clear record "6aprb" layout
                    clear record "7aprb" layout
                  end
                  if flag "13ap" true
                  begin
                    clear record "vdwrb" layout
                    copy record "8aprb" layout to record "vdwrb" layout

                    copy record "8aprb" layout to record "1aprb" layout
                    clear record "2aprb" layout
                    clear record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                    clear record "6aprb" layout
                    clear record "7aprb" layout
                    clear record "8aprb" layout
                  end
                  if flag "14ap" true
                  and flag "13ap" false
                  and flag "15ap" false
                  and flag "16ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "2aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "3aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "4aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "5aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "6aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "7aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "8aprb" layout to record "vdwrb" layout

                    copy record "2aprb" layout to record "1aprb" layout
                    copy record "3aprb" layout to record "2aprb" layout
                    copy record "4aprb" layout to record "3aprb" layout
                    copy record "5aprb" layout to record "4aprb" layout
                    copy record "6aprb" layout to record "5aprb" layout
                    copy record "7aprb" layout to record "6aprb" layout
                    copy record "8aprb" layout to record "7aprb" layout
                    clear record "8aprb" layout
                  end
                  if flag "15ap" true
                  and flag "13ap" false
                  and flag "16ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "4aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "5aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "6aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "7aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "8aprb" layout to record "vdwrb" layout

                    copy record "4aprb" layout to record "1aprb" layout
                    copy record "5aprb" layout to record "2aprb" layout
                    copy record "6aprb" layout to record "3aprb" layout
                    copy record "7aprb" layout to record "4aprb" layout
                    copy record "8aprb" layout to record "5aprb" layout
                    clear record "6aprb" layout
                    clear record "7aprb" layout
                    clear record "8aprb" layout
                  end
                  if flag "16ap" true

                  and flag "13ap" false
                  begin
                    clear record "vdwrb" layout
                    copy record "6aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "7aprb" layout to record "vdwrb" layout
                    add 1 record "vdwrb" layout index
                    copy record "8aprb" layout to record "vdwrb" layout

                    copy record "6aprb" layout to record "1aprb" layout
                    copy record "7aprb" layout to record "2aprb" layout
                    copy record "8aprb" layout to record "3aprb" layout
                    clear record "4aprb" layout
                    clear record "5aprb" layout
                    clear record "6aprb" layout
                    clear record "7aprb" layout
                    clear record "8aprb" layout
                  end
              end
              set flag "bet black" false


          end


              set flag "1ap" false
              set flag "2ap" false
              set flag "3ap" false
              set flag "4ap" false
              set flag "5ap" false
              set flag "6ap" false
              set flag "7ap" false
              set flag "8ap" false
              set flag "9ap" false
              set flag "10ap" false
              set flag "11ap" false
              set flag "12ap" false
              set flag "13ap" false
              set flag "14ap" false
              set flag "15ap" false
              set flag "16ap" false

end



method "vdweo"
begin
  if number 0 not hit each
  begin
     if record "vdweo" layout index = 8
     begin
     copy last even-odd to record "9apeo" layout
     add 1 to record "vdweo" layout index
     copy last even-odd to record "vdweo" layout
     end
     if record "vdweo" layout index = 7
     begin
     copy last even-odd to record "8apeo" layout
     add 1 to record "vdweo" layout index
     copy last even-odd to record "vdweo" layout
     end
     if record "vdweo" layout index = 6
     begin
     copy last even-odd to record "7apeo" layout
     add 1 to record "vdweo" layout index
     copy last even-odd to record "vdweo" layout
     end
     if record "vdweo" layout index = 5
     begin
     copy last even-odd to record "6apeo" layout
     add 1 to record "vdweo" layout index
     copy last even-odd to record "vdweo" layout
     end
     if record "vdweo" layout index = 4
     begin
     copy last even-odd to record "5apeo" layout
     add 1 to record "vdweo" layout index
     copy last even-odd to record "vdweo" layout
     end
     if record "vdweo" layout index = 3
     begin
     copy last even-odd to record "4apeo" layout
     add 1 to record "vdweo" layout index
     copy last even-odd to record "vdweo" layout
     end
     if record "vdweo" layout index = 2
     begin
     copy last even-odd to record "3apeo" layout
     add 1 to record "vdweo" layout index
     copy last even-odd to record "vdweo" layout
     end
     if record "vdweo" layout index = 1
     begin
     copy last even-odd to record "2apeo" layout
     add 1 to record "vdweo" layout index
     copy last even-odd to record "vdweo" layout
     end
     if record "vdweo" layout index = 0
     begin
     copy last even-odd to record "1apeo" layout
     add 1 to record "vdweo" layout index
     copy last even-odd to record "vdweo" layout
     end
  end
call "find eo ap"

end

method "find eo ap"
begin

    if record "e" layout is found in record "1apeo" layout
    and  record "e" layout  is found in record "2apeo" layout
    and record "vdweo" layout index = 2
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "1apeo" true
    end
    if record "e" layout  is found in record "2apeo" layout
    and  record "e" layout  is found in record "3apeo" layout
    and record "vdweo" layout index = 3
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "2apeo" true
    end
    if record "e"  layout is found in record "1apeo" layout
    and  record "e" layout  is found in record "3apeo" layout
    and record "vdweo" layout index = 4
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "3apeo" true
    end
    if record "e" layout  is found in record "3apeo" layout
    and  record "e"  layout is found in record "4apeo" layout
    and record "vdweo" layout index = 4
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "4apeo" true
    end
    if record "e" layout  is found in record "4apeo" layout
    and  record "e" layout  is found in record "5apeo" layout
    and record "vdweo" layout index = 5
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "5apeo" true
    end
    if record "e"  layout is found in record "2apeo" layout
    and  record "e"  layout is found in record "4apeo" layout
    and record "vdweo" layout index = 5
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "6apeo" true
    end
    if record "e" layout  is found in record "5apeo" layout
    and  record "e" layout  is found in record "6apeo" layout
    and record "vdweo" layout index = 6
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "7apeo" true
    end
    if record "e"  layout is found in record "1apeo" layout
    and  record "e" layout  is found in record "4apeo" layout
    and record "vdweo" layout index = 6
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "8apeo" true
    end
    if record "e"  layout is found in record "3apeo" layout
    and  record "e" layout  is found in record "5apeo" layout
    and record "vdweo" layout index = 6
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "9apeo" true
    end
    if record "e"  layout is found in record "6apeo" layout
    and  record "e" layout  is found in record "7apeo" layout
    and record "vdweo" layout index = 7
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "10apeo" true
    end
    if record "e" layout  is found in record "2apeo" layout
    and  record "e" layout  is found in record "5apeo" layout
    and record "vdweo" layout index = 7
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "11apeo" true
    end
    if record "e" layout  is found in record "4apeo" layout
    and  record "e" layout  is found in record "6apeo" layout
    and record "vdweo" layout index = 7
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "12apeo" true
    end
    if record "e" layout  is found in record "7apeo" layout
    and  record "e" layout  is found in record "8apeo" layout
    and record "vdweo" layout index = 8
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "13apeo" true
    end
    if record "e" layout  is found in record "1apeo" layout
    and  record "e" layout  is found in record "5apeo" layout
    and record "vdweo" layout index = 8
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "14apeo" true
    end
    if record "e"  layout is found in record "3apeo" layout
    and  record "e"  layout is found in record "6apeo" layout
    and record "vdweo" layout index = 8
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "15apeo" true
    end
    if record "e"  layout is found in record "5apeo" layout
    and  record "e"  layout is found in record "7apeo" layout
    and record "vdweo" layout index = 8
    begin
    put 1 on record "even" layout list
    set flag "bet even" true
    set flag "16apeo" true
    end






     if record "o" layout is found in record "1apeo" layout
    and  record "o" layout  is found in record "2apeo" layout
    and record "vdweo" layout index = 2
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "1apeo" true
    end
    if record "o" layout  is found in record "2apeo" layout
    and  record "o" layout  is found in record "3apeo" layout
    and record "vdweo" layout index = 3
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "2apeo" true
    end
    if record "o"  layout is found in record "1apeo" layout
    and  record "o" layout  is found in record "3apeo" layout
    and record "vdweo" layout index = 4
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "3apeo" true
    end
    if record "o" layout  is found in record "3apeo" layout
    and  record "o"  layout is found in record "4apeo" layout
    and record "vdweo" layout index = 4
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "4apeo" true
    end
    if record "o" layout  is found in record "4apeo" layout
    and  record "o" layout  is found in record "5apeo" layout
    and record "vdweo" layout index = 5
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "5apeo" true
    end
    if record "o"  layout is found in record "2apeo" layout
    and  record "o"  layout is found in record "4apeo" layout
    and record "vdweo" layout index = 5
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "6apeo" true
    end
    if record "o" layout  is found in record "5apeo" layout
    and  record "o" layout  is found in record "6apeo" layout
    and record "vdweo" layout index = 6
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "7apeo" true
    end
    if record "o"  layout is found in record "1apeo" layout
    and  record "o" layout  is found in record "4apeo" layout
    and record "vdweo" layout index = 6
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "8apeo" true
    end
    if record "o"  layout is found in record "3apeo" layout
    and  record "o" layout  is found in record "5apeo" layout
    and record "vdweo" layout index = 6
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "9apeo" true
    end
    if record "o"  layout is found in record "6apeo" layout
    and  record "o" layout  is found in record "7apeo" layout
    and record "vdweo" layout index = 7
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "10apeo" true
    end
    if record "o" layout  is found in record "2apeo" layout
    and  record "o" layout  is found in record "5apeo" layout
    and record "vdweo" layout index = 7
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "11apeo" true
    end
    if record "o" layout  is found in record "4apeo" layout
    and  record "o" layout  is found in record "6apeo" layout
    and record "vdweo" layout index = 7
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "12apeo" true
    end
    if record "o" layout  is found in record "7apeo" layout
    and  record "o" layout  is found in record "8apeo" layout
    and record "vdweo" layout index = 8
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "13apeo" true
    end
    if record "o" layout  is found in record "1apeo" layout
    and  record "o" layout  is found in record "5apeo" layout
    and record "vdweo" layout index = 8
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "14apeo" true
    end
    if record "o"  layout is found in record "3apeo" layout
    and  record "o"  layout is found in record "6apeo" layout
    and record "vdweo" layout index = 8
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "15apeo" true
    end
    if record "o"  layout is found in record "5apeo" layout
    and  record "o"  layout is found in record "7apeo" layout
    and record "vdweo" layout index = 8
    begin
    put 1 on record "odd" layout list
    set flag "bet odd" true
    set flag "16apeo" true
    end



end
method "flags and ap typefor eo"
begin

      if flag "bet odd"  true
          begin
              if odd hit each
              begin
                  if flag "1apeo" true
                  begin
                    clear record "vdweo" layout
                    copy record "2apeo" layout to record "vdweo" layout

                    copy record "2apeo" layout to record "1apeo" layout
                    clear record "2apeo" layout
                  end
                  if flag "2apeo" true
                  begin
                    clear record "vdweo" layout
                    copy record "3apeo" layout to record "vdweo" layout

                    copy record "3apeo" layout to record "1apeo" layout
                    clear record "2apeo" layout
                    clear record "3apeo" layout
                  end
                  if flag "3apeo" true
                  and flag "4apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "2apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "3apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "4apeo" layout to record "vdweo" layout

                    copy record "2apeo" layout to record "1apeo" layout
                    copy record "3apeo" layout to record "2apeo" layout
                    copy record "4apeo" layout to record "3apeo" layout

                    clear record "4apeo" layout
                  end
                  if flag "4apeo" true
                  begin
                    clear record "vdweo" layout
                    copy record "4apeo" layout to record "vdweo" layout

                    copy record "3apeo" layout to record "1apeo" layout
                    clear record "2apeo" layout
                    clear record "3apeo" layout
                    clear record "4apeo" layout
                  end
                  if flag "5apeo" true
                  begin
                    clear record "vdweo" layout
                    copy record "5apeo" layout to record "vdweo" layout

                    copy record "5apeo" layout to record "1apeo" layout
                    clear record "2apeo" layout
                    clear record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                  end
                  if flag "6apeo" true
                  and flag "5apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "3apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "4apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "5apeo" layout to record "vdweo" layout

                    copy record "3apeo" layout to record "1apeo" layout
                    copy record "4apeo" layout to record "2apeo" layout
                    copy record "5apeo" layout to record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                  end
                  if flag "7apeo" true
                  begin
                    clear record "vdweo" layout
                    copy record "6apeo" layout to record "vdweo" layout

                    copy record "6apeo" layout to record "1apeo" layout
                    clear record "2apeo" layout
                    clear record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                    clear record "6apeo" layout
                  end
                  if flag "8apeo" true
                  and flag "7apeo" false
                  and flag "9apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "2apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "3apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "4apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "5apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "6apeo" layout to record "vdweo" layout

                    copy record "2apeo" layout to record "1apeo" layout
                    copy record "3apeo" layout to record "2apeo" layout
                    copy record "4apeo" layout to record "3apeo" layout
                    copy record "5apeo" layout to record "4apeo" layout
                    copy record "6apeo" layout to record "5apeo" layout
                    clear record "6apeo" layout
                  end
                  if flag "9apeo" true
                  and flag "7apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "4apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "5apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "6apeo" layout to record "vdweo" layout

                    copy record "4apeo" layout to record "1apeo" layout
                    copy record "5apeo" layout to record "2apeo" layout
                    copy record "6apeo" layout to record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                    clear record "6apeo" layout
                  end
                  if flag "10apeo" true
                  begin
                    clear record "vdweo" layout
                    copy record "7apeo" layout to record "vdweo" layout

                    copy record "7apeo" layout to record "1apeo" layout
                    clear record "2apeo" layout
                    clear record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                    clear record "6apeo" layout
                    clear record "7apeo" layout
                  end
                  if flag "11apeo" true
                  and flag "12apeo" false
                  and flag "10apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "3apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "4apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "5apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "6apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "7apeo" layout to record "vdweo" layout

                    copy record "3apeo" layout to record "1apeo" layout
                    copy record "4apeo" layout to record "2apeo" layout
                    copy record "5apeo" layout to record "3apeo" layout
                    copy record "6apeo" layout to record "4apeo" layout
                    copy record "7apeo" layout to record "5apeo" layout
                    clear record "6apeo" layout
                    clear record "7apeo" layout
                  end
                  if flag "12apeo" true
                  and flag "10apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "5apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "6apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "7apeo" layout to record "vdweo" layout

                    copy record "5apeo" layout to record "1apeo" layout
                    copy record "6apeo" layout to record "2apeo" layout
                    copy record "7apeo" layout to record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                    clear record "6apeo" layout
                    clear record "7apeo" layout
                  end
                  if flag "13apeo" true
                  begin
                    clear record "vdweo" layout
                    copy record "8apeo" layout to record "vdweo" layout

                    copy record "8apeo" layout to record "1apeo" layout
                    clear record "2apeo" layout
                    clear record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                    clear record "6apeo" layout
                    clear record "7apeo" layout
                    clear record "8apeo" layout
                  end
                  if flag "14apeo" true
                  and flag "13apeo" false
                  and flag "15apeo" false
                  and flag "16apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "2apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "3apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "4apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "5apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "6apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "7apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "8apeo" layout to record "vdweo" layout

                    copy record "2apeo" layout to record "1apeo" layout
                    copy record "3apeo" layout to record "2apeo" layout
                    copy record "4apeo" layout to record "3apeo" layout
                    copy record "5apeo" layout to record "4apeo" layout
                    copy record "6apeo" layout to record "5apeo" layout
                    copy record "7apeo" layout to record "6apeo" layout
                    copy record "8apeo" layout to record "7apeo" layout
                    clear record "8apeo" layout
                  end
                  if flag "15apeo" true
                  and flag "13apeo" false
                  and flag "16apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "4apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "5apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "6apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "7apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "8apeo" layout to record "vdweo" layout

                    copy record "4apeo" layout to record "1apeo" layout
                    copy record "5apeo" layout to record "2apeo" layout
                    copy record "6apeo" layout to record "3apeo" layout
                    copy record "7apeo" layout to record "4apeo" layout
                    copy record "8apeo" layout to record "5apeo" layout
                    clear record "6apeo" layout
                    clear record "7apeo" layout
                    clear record "8apeo" layout
                  end
                  if flag "16apeo" true

                  and flag "13apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "6apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "7apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "8apeo" layout to record "vdweo" layout

                    copy record "6apeo" layout to record "1apeo" layout
                    copy record "7apeo" layout to record "2apeo" layout
                    copy record "8apeo" layout to record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                    clear record "6apeo" layout
                    clear record "7apeo" layout
                    clear record "8apeo" layout
                  end
              end
              set flag "bet odd" false

          end



          if flag "bet even"  true
          begin
              if even hit each
              begin
                   if flag "1apeo" true
                  begin
                    clear record "vdweo" layout
                    copy record "2apeo" layout to record "vdweo" layout

                    copy record "2apeo" layout to record "1apeo" layout
                    clear record "2apeo" layout
                  end
                  if flag "2apeo" true
                  begin
                    clear record "vdweo" layout
                    copy record "3apeo" layout to record "vdweo" layout

                    copy record "3apeo" layout to record "1apeo" layout
                    clear record "2apeo" layout
                    clear record "3apeo" layout
                  end
                  if flag "3apeo" true
                  and flag "4apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "2apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "3apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "4apeo" layout to record "vdweo" layout

                    copy record "2apeo" layout to record "1apeo" layout
                    copy record "3apeo" layout to record "2apeo" layout
                    copy record "4apeo" layout to record "3apeo" layout

                    clear record "4apeo" layout
                  end
                  if flag "4apeo" true
                  begin
                    clear record "vdweo" layout
                    copy record "4apeo" layout to record "vdweo" layout

                    copy record "3apeo" layout to record "1apeo" layout
                    clear record "2apeo" layout
                    clear record "3apeo" layout
                    clear record "4apeo" layout
                  end
                  if flag "5apeo" true
                  begin
                    clear record "vdweo" layout
                    copy record "5apeo" layout to record "vdweo" layout

                    copy record "5apeo" layout to record "1apeo" layout
                    clear record "2apeo" layout
                    clear record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                  end
                  if flag "6apeo" true
                  and flag "5apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "3apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "4apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "5apeo" layout to record "vdweo" layout

                    copy record "3apeo" layout to record "1apeo" layout
                    copy record "4apeo" layout to record "2apeo" layout
                    copy record "5apeo" layout to record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                  end
                  if flag "7apeo" true
                  begin
                    clear record "vdweo" layout
                    copy record "6apeo" layout to record "vdweo" layout

                    copy record "6apeo" layout to record "1apeo" layout
                    clear record "2apeo" layout
                    clear record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                    clear record "6apeo" layout
                  end
                  if flag "8apeo" true
                  and flag "7apeo" false
                  and flag "9apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "2apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "3apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "4apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "5apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "6apeo" layout to record "vdweo" layout

                    copy record "2apeo" layout to record "1apeo" layout
                    copy record "3apeo" layout to record "2apeo" layout
                    copy record "4apeo" layout to record "3apeo" layout
                    copy record "5apeo" layout to record "4apeo" layout
                    copy record "6apeo" layout to record "5apeo" layout
                    clear record "6apeo" layout
                  end
                  if flag "9apeo" true
                  and flag "7apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "4apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "5apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "6apeo" layout to record "vdweo" layout

                    copy record "4apeo" layout to record "1apeo" layout
                    copy record "5apeo" layout to record "2apeo" layout
                    copy record "6apeo" layout to record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                    clear record "6apeo" layout
                  end
                  if flag "10apeo" true
                  begin
                    clear record "vdweo" layout
                    copy record "7apeo" layout to record "vdweo" layout

                    copy record "7apeo" layout to record "1apeo" layout
                    clear record "2apeo" layout
                    clear record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                    clear record "6apeo" layout
                    clear record "7apeo" layout
                  end
                  if flag "11apeo" true
                  and flag "12apeo" false
                  and flag "10apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "3apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "4apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "5apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "6apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "7apeo" layout to record "vdweo" layout

                    copy record "3apeo" layout to record "1apeo" layout
                    copy record "4apeo" layout to record "2apeo" layout
                    copy record "5apeo" layout to record "3apeo" layout
                    copy record "6apeo" layout to record "4apeo" layout
                    copy record "7apeo" layout to record "5apeo" layout
                    clear record "6apeo" layout
                    clear record "7apeo" layout
                  end
                  if flag "12apeo" true
                  and flag "10apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "5apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "6apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "7apeo" layout to record "vdweo" layout

                    copy record "5apeo" layout to record "1apeo" layout
                    copy record "6apeo" layout to record "2apeo" layout
                    copy record "7apeo" layout to record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                    clear record "6apeo" layout
                    clear record "7apeo" layout
                  end
                  if flag "13apeo" true
                  begin
                    clear record "vdweo" layout
                    copy record "8apeo" layout to record "vdweo" layout

                    copy record "8apeo" layout to record "1apeo" layout
                    clear record "2apeo" layout
                    clear record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                    clear record "6apeo" layout
                    clear record "7apeo" layout
                    clear record "8apeo" layout
                  end
                  if flag "14apeo" true
                  and flag "13apeo" false
                  and flag "15apeo" false
                  and flag "16apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "2apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "3apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "4apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "5apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "6apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "7apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "8apeo" layout to record "vdweo" layout

                    copy record "2apeo" layout to record "1apeo" layout
                    copy record "3apeo" layout to record "2apeo" layout
                    copy record "4apeo" layout to record "3apeo" layout
                    copy record "5apeo" layout to record "4apeo" layout
                    copy record "6apeo" layout to record "5apeo" layout
                    copy record "7apeo" layout to record "6apeo" layout
                    copy record "8apeo" layout to record "7apeo" layout
                    clear record "8apeo" layout
                  end
                  if flag "15apeo" true
                  and flag "13apeo" false
                  and flag "16apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "4apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "5apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "6apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "7apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "8apeo" layout to record "vdweo" layout

                    copy record "4apeo" layout to record "1apeo" layout
                    copy record "5apeo" layout to record "2apeo" layout
                    copy record "6apeo" layout to record "3apeo" layout
                    copy record "7apeo" layout to record "4apeo" layout
                    copy record "8apeo" layout to record "5apeo" layout
                    clear record "6apeo" layout
                    clear record "7apeo" layout
                    clear record "8apeo" layout
                  end
                  if flag "16apeo" true

                  and flag "13apeo" false
                  begin
                    clear record "vdweo" layout
                    copy record "6apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "7apeo" layout to record "vdweo" layout
                    add 1 record "vdweo" layout index
                    copy record "8apeo" layout to record "vdweo" layout

                    copy record "6apeo" layout to record "1apeo" layout
                    copy record "7apeo" layout to record "2apeo" layout
                    copy record "8apeo" layout to record "3apeo" layout
                    clear record "4apeo" layout
                    clear record "5apeo" layout
                    clear record "6apeo" layout
                    clear record "7apeo" layout
                    clear record "8apeo" layout
                  end
              end
              set flag "bet even" false


          end


              set flag "1apeo" false
              set flag "2apeo" false
              set flag "3apeo" false
              set flag "4apeo" false
              set flag "5apeo" false
              set flag "6apeo" false
              set flag "7apeo" false
              set flag "8apeo" false
              set flag "9apeo" false
              set flag "10apeo" false
              set flag "11apeo" false
              set flag "12apeo" false
              set flag "13apeo" false
              set flag "14apeo" false
              set flag "15apeo" false
              set flag "16apeo" false

end


method "vdwhl"
begin
  if number 0 not hit each
  begin
     if record "vdwhl" layout index = 8
     begin
     copy last high-low to record "9aphl" layout
     add 1 to record "vdwhl" layout index
     copy last high-low to record "vdwhl" layout
     end
     if record "vdwhl" layout index = 7
     begin
     copy last high-low to record "8aphl" layout
     add 1 to record "vdwhl" layout index
     copy last high-low to record "vdwhl" layout
     end
     if record "vdwhl" layout index = 6
     begin
     copy last high-low to record "7aphl" layout
     add 1 to record "vdwhl" layout index
     copy last high-low to record "vdwhl" layout
     end
     if record "vdwhl" layout index = 5
     begin
     copy last high-low to record "6aphl" layout
     add 1 to record "vdwhl" layout index
     copy last high-low to record "vdwhl" layout
     end
     if record "vdwhl" layout index = 4
     begin
     copy last high-low to record "5aphl" layout
     add 1 to record "vdwhl" layout index
     copy last high-low to record "vdwhl" layout
     end
     if record "vdwhl" layout index = 3
     begin
     copy last high-low to record "4aphl" layout
     add 1 to record "vdwhl" layout index
     copy last high-low to record "vdwhl" layout
     end
     if record "vdwhl" layout index = 2
     begin
     copy last high-low to record "3aphl" layout
     add 1 to record "vdwhl" layout index
     copy last high-low to record "vdwhl" layout
     end
     if record "vdwhl" layout index = 1
     begin
     copy last high-low to record "2aphl" layout
     add 1 to record "vdwhl" layout index
     copy last high-low to record "vdwhl" layout
     end
     if record "vdwhl" layout index = 0
     begin
     copy last high-low to record "1aphl" layout
     add 1 to record "vdwhl" layout index
     copy last high-low to record "vdwhl" layout
     end
  end
call "find hl ap"

end

method "find hl ap"
begin

    if record "l" layout is found in record "1aphl" layout
    and  record "l" layout  is found in record "2aphl" layout
    and record "vdwhl" layout index = 2
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "1aphl" true
    end
    if record "l" layout  is found in record "2aphl" layout
    and  record "l" layout  is found in record "3aphl" layout
    and record "vdwhl" layout index = 3
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "2aphl" true
    end
    if record "l"  layout is found in record "1aphl" layout
    and  record "l" layout  is found in record "3aphl" layout
    and record "vdwhl" layout index = 4
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "3aphl" true
    end
    if record "l" layout  is found in record "3aphl" layout
    and  record "l"  layout is found in record "4aphl" layout
    and record "vdwhl" layout index = 4
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "4aphl" true
    end
    if record "l" layout  is found in record "4aphl" layout
    and  record "l" layout  is found in record "5aphl" layout
    and record "vdwhl" layout index = 5
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "5aphl" true
    end
    if record "l"  layout is found in record "2aphl" layout
    and  record "l"  layout is found in record "4aphl" layout
    and record "vdwhl" layout index = 5
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "6aphl" true
    end
    if record "l" layout  is found in record "5aphl" layout
    and  record "l" layout  is found in record "6aphl" layout
    and record "vdwhl" layout index = 6
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "7aphl" true
    end
    if record "l"  layout is found in record "1aphl" layout
    and  record "l" layout  is found in record "4aphl" layout
    and record "vdwhl" layout index = 6
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "8aphl" true
    end
    if record "l"  layout is found in record "3aphl" layout
    and  record "l" layout  is found in record "5aphl" layout
    and record "vdwhl" layout index = 6
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "9aphl" true
    end
    if record "l"  layout is found in record "6aphl" layout
    and  record "l" layout  is found in record "7aphl" layout
    and record "vdwhl" layout index = 7
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "10aphl" true
    end
    if record "l" layout  is found in record "2aphl" layout
    and  record "l" layout  is found in record "5aphl" layout
    and record "vdwhl" layout index = 7
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "11aphl" true
    end
    if record "l" layout  is found in record "4aphl" layout
    and  record "l" layout  is found in record "6aphl" layout
    and record "vdwhl" layout index = 7
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "12aphl" true
    end
    if record "l" layout  is found in record "7aphl" layout
    and  record "l" layout  is found in record "8aphl" layout
    and record "vdwhl" layout index = 8
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "13aphl" true
    end
    if record "l" layout  is found in record "1aphl" layout
    and  record "l" layout  is found in record "5aphl" layout
    and record "vdwhl" layout index = 8
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "14aphl" true
    end
    if record "l"  layout is found in record "3aphl" layout
    and  record "l"  layout is found in record "6aphl" layout
    and record "vdwhl" layout index = 8
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "15aphl" true
    end
    if record "l"  layout is found in record "5aphl" layout
    and  record "l"  layout is found in record "7aphl" layout
    and record "vdwhl" layout index = 8
    begin
    put 1 on record "low" layout list
    set flag "bet low" true
    set flag "16aphl" true
    end






     if record "h" layout is found in record "1aphl" layout
    and  record "h" layout  is found in record "2aphl" layout
    and record "vdwhl" layout index = 2
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "1aphl" true
    end
    if record "h" layout  is found in record "2aphl" layout
    and  record "h" layout  is found in record "3aphl" layout
    and record "vdwhl" layout index = 3
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "2aphl" true
    end
    if record "h"  layout is found in record "1aphl" layout
    and  record "h" layout  is found in record "3aphl" layout
    and record "vdwhl" layout index = 4
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "3aphl" true
    end
    if record "h" layout  is found in record "3aphl" layout
    and  record "h"  layout is found in record "4aphl" layout
    and record "vdwhl" layout index = 4
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "4aphl" true
    end
    if record "h" layout  is found in record "4aphl" layout
    and  record "h" layout  is found in record "5aphl" layout
    and record "vdwhl" layout index = 5
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "5aphl" true
    end
    if record "h"  layout is found in record "2aphl" layout
    and  record "h"  layout is found in record "4aphl" layout
    and record "vdwhl" layout index = 5
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "6aphl" true
    end
    if record "h" layout  is found in record "5aphl" layout
    and  record "h" layout  is found in record "6aphl" layout
    and record "vdwhl" layout index = 6
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "7aphl" true
    end
    if record "h"  layout is found in record "1aphl" layout
    and  record "h" layout  is found in record "4aphl" layout
    and record "vdwhl" layout index = 6
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "8aphl" true
    end
    if record "h"  layout is found in record "3aphl" layout
    and  record "h" layout  is found in record "5aphl" layout
    and record "vdwhl" layout index = 6
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "9aphl" true
    end
    if record "h"  layout is found in record "6aphl" layout
    and  record "h" layout  is found in record "7aphl" layout
    and record "vdwhl" layout index = 7
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "10aphl" true
    end
    if record "h" layout  is found in record "2aphl" layout
    and  record "h" layout  is found in record "5aphl" layout
    and record "vdwhl" layout index = 7
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "11aphl" true
    end
    if record "h" layout  is found in record "4aphl" layout
    and  record "h" layout  is found in record "6aphl" layout
    and record "vdwhl" layout index = 7
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "12aphl" true
    end
    if record "h" layout  is found in record "7aphl" layout
    and  record "h" layout  is found in record "8aphl" layout
    and record "vdwhl" layout index = 8
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "13aphl" true
    end
    if record "h" layout  is found in record "1aphl" layout
    and  record "h" layout  is found in record "5aphl" layout
    and record "vdwhl" layout index = 8
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "14aphl" true
    end
    if record "h"  layout is found in record "3aphl" layout
    and  record "h"  layout is found in record "6aphl" layout
    and record "vdwhl" layout index = 8
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "15aphl" true
    end
    if record "h"  layout is found in record "5aphl" layout
    and  record "h"  layout is found in record "7aphl" layout
    and record "vdwhl" layout index = 8
    begin
    put 1 on record "high" layout list
    set flag "bet high" true
    set flag "16aphl" true
    end



end


method "flags and ap typefor hl"
begin

      if flag "bet low"  true
          begin
              if low hit each
              begin
                  if flag "1aphl" true
                  begin
                    clear record "vdwhl" layout
                    copy record "2aphl" layout to record "vdwhl" layout

                    copy record "2aphl" layout to record "1aphl" layout
                    clear record "2aphl" layout
                  end
                  if flag "2aphl" true
                  begin
                    clear record "vdwhl" layout
                    copy record "3aphl" layout to record "vdwhl" layout

                    copy record "3aphl" layout to record "1aphl" layout
                    clear record "2aphl" layout
                    clear record "3aphl" layout
                  end
                  if flag "3aphl" true
                  and flag "4aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "2aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "3aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "4aphl" layout to record "vdwhl" layout

                    copy record "2aphl" layout to record "1aphl" layout
                    copy record "3aphl" layout to record "2aphl" layout
                    copy record "4aphl" layout to record "3aphl" layout

                    clear record "4aphl" layout
                  end
                  if flag "4aphl" true
                  begin
                    clear record "vdwhl" layout
                    copy record "4aphl" layout to record "vdwhl" layout

                    copy record "3aphl" layout to record "1aphl" layout
                    clear record "2aphl" layout
                    clear record "3aphl" layout
                    clear record "4aphl" layout
                  end
                  if flag "5aphl" true
                  begin
                    clear record "vdwhl" layout
                    copy record "5aphl" layout to record "vdwhl" layout

                    copy record "5aphl" layout to record "1aphl" layout
                    clear record "2aphl" layout
                    clear record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                  end
                  if flag "6aphl" true
                  and flag "5aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "3aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "4aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "5aphl" layout to record "vdwhl" layout

                    copy record "3aphl" layout to record "1aphl" layout
                    copy record "4aphl" layout to record "2aphl" layout
                    copy record "5aphl" layout to record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                  end
                  if flag "7aphl" true
                  begin
                    clear record "vdwhl" layout
                    copy record "6aphl" layout to record "vdwhl" layout

                    copy record "6aphl" layout to record "1aphl" layout
                    clear record "2aphl" layout
                    clear record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                    clear record "6aphl" layout
                  end
                  if flag "8aphl" true
                  and flag "7aphl" false
                  and flag "9aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "2aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "3aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "4aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "5aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "6aphl" layout to record "vdwhl" layout

                    copy record "2aphl" layout to record "1aphl" layout
                    copy record "3aphl" layout to record "2aphl" layout
                    copy record "4aphl" layout to record "3aphl" layout
                    copy record "5aphl" layout to record "4aphl" layout
                    copy record "6aphl" layout to record "5aphl" layout
                    clear record "6aphl" layout
                  end
                  if flag "9aphl" true
                  and flag "7aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "4aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "5aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "6aphl" layout to record "vdwhl" layout

                    copy record "4aphl" layout to record "1aphl" layout
                    copy record "5aphl" layout to record "2aphl" layout
                    copy record "6aphl" layout to record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                    clear record "6aphl" layout
                  end
                  if flag "10aphl" true
                  begin
                    clear record "vdwhl" layout
                    copy record "7aphl" layout to record "vdwhl" layout

                    copy record "7aphl" layout to record "1aphl" layout
                    clear record "2aphl" layout
                    clear record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                    clear record "6aphl" layout
                    clear record "7aphl" layout
                  end
                  if flag "11aphl" true
                  and flag "12aphl" false
                  and flag "10aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "3aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "4aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "5aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "6aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "7aphl" layout to record "vdwhl" layout

                    copy record "3aphl" layout to record "1aphl" layout
                    copy record "4aphl" layout to record "2aphl" layout
                    copy record "5aphl" layout to record "3aphl" layout
                    copy record "6aphl" layout to record "4aphl" layout
                    copy record "7aphl" layout to record "5aphl" layout
                    clear record "6aphl" layout
                    clear record "7aphl" layout
                  end
                  if flag "12aphl" true
                  and flag "10aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "5aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "6aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "7aphl" layout to record "vdwhl" layout

                    copy record "5aphl" layout to record "1aphl" layout
                    copy record "6aphl" layout to record "2aphl" layout
                    copy record "7aphl" layout to record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                    clear record "6aphl" layout
                    clear record "7aphl" layout
                  end
                  if flag "13aphl" true
                  begin
                    clear record "vdwhl" layout
                    copy record "8aphl" layout to record "vdwhl" layout

                    copy record "8aphl" layout to record "1aphl" layout
                    clear record "2aphl" layout
                    clear record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                    clear record "6aphl" layout
                    clear record "7aphl" layout
                    clear record "8aphl" layout
                  end
                  if flag "14aphl" true
                  and flag "13aphl" false
                  and flag "15aphl" false
                  and flag "16aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "2aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "3aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "4aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "5aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "6aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "7aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "8aphl" layout to record "vdwhl" layout

                    copy record "2aphl" layout to record "1aphl" layout
                    copy record "3aphl" layout to record "2aphl" layout
                    copy record "4aphl" layout to record "3aphl" layout
                    copy record "5aphl" layout to record "4aphl" layout
                    copy record "6aphl" layout to record "5aphl" layout
                    copy record "7aphl" layout to record "6aphl" layout
                    copy record "8aphl" layout to record "7aphl" layout
                    clear record "8aphl" layout
                  end
                  if flag "15aphl" true
                  and flag "13aphl" false
                  and flag "16aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "4aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "5aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "6aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "7aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "8aphl" layout to record "vdwhl" layout

                    copy record "4aphl" layout to record "1aphl" layout
                    copy record "5aphl" layout to record "2aphl" layout
                    copy record "6aphl" layout to record "3aphl" layout
                    copy record "7aphl" layout to record "4aphl" layout
                    copy record "8aphl" layout to record "5aphl" layout
                    clear record "6aphl" layout
                    clear record "7aphl" layout
                    clear record "8aphl" layout
                  end
                  if flag "16aphl" true

                  and flag "13aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "6aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "7aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "8aphl" layout to record "vdwhl" layout

                    copy record "6aphl" layout to record "1aphl" layout
                    copy record "7aphl" layout to record "2aphl" layout
                    copy record "8aphl" layout to record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                    clear record "6aphl" layout
                    clear record "7aphl" layout
                    clear record "8aphl" layout
                  end





              end
              set flag "bet low" false

          end



          if flag "bet high"  true
          begin
              if high hit each
              begin
                  if flag "1aphl" true
                  begin
                    clear record "vdwhl" layout
                    copy record "2aphl" layout to record "vdwhl" layout

                    copy record "2aphl" layout to record "1aphl" layout
                    clear record "2aphl" layout
                  end
                  if flag "2aphl" true
                  begin
                    clear record "vdwhl" layout
                    copy record "3aphl" layout to record "vdwhl" layout

                    copy record "3aphl" layout to record "1aphl" layout
                    clear record "2aphl" layout
                    clear record "3aphl" layout
                  end
                  if flag "3aphl" true
                  and flag "4aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "2aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "3aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "4aphl" layout to record "vdwhl" layout

                    copy record "2aphl" layout to record "1aphl" layout
                    copy record "3aphl" layout to record "2aphl" layout
                    copy record "4aphl" layout to record "3aphl" layout

                    clear record "4aphl" layout
                  end
                  if flag "4aphl" true
                  begin
                    clear record "vdwhl" layout
                    copy record "4aphl" layout to record "vdwhl" layout

                    copy record "3aphl" layout to record "1aphl" layout
                    clear record "2aphl" layout
                    clear record "3aphl" layout
                    clear record "4aphl" layout
                  end
                  if flag "5aphl" true
                  begin
                    clear record "vdwhl" layout
                    copy record "5aphl" layout to record "vdwhl" layout

                    copy record "5aphl" layout to record "1aphl" layout
                    clear record "2aphl" layout
                    clear record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                  end
                  if flag "6aphl" true
                  and flag "5aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "3aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "4aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "5aphl" layout to record "vdwhl" layout

                    copy record "3aphl" layout to record "1aphl" layout
                    copy record "4aphl" layout to record "2aphl" layout
                    copy record "5aphl" layout to record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                  end
                  if flag "7aphl" true
                  begin
                    clear record "vdwhl" layout
                    copy record "6aphl" layout to record "vdwhl" layout

                    copy record "6aphl" layout to record "1aphl" layout
                    clear record "2aphl" layout
                    clear record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                    clear record "6aphl" layout
                  end
                  if flag "8aphl" true
                  and flag "7aphl" false
                  and flag "9aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "2aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "3aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "4aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "5aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "6aphl" layout to record "vdwhl" layout

                    copy record "2aphl" layout to record "1aphl" layout
                    copy record "3aphl" layout to record "2aphl" layout
                    copy record "4aphl" layout to record "3aphl" layout
                    copy record "5aphl" layout to record "4aphl" layout
                    copy record "6aphl" layout to record "5aphl" layout
                    clear record "6aphl" layout
                  end
                  if flag "9aphl" true
                  and flag "7aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "4aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "5aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "6aphl" layout to record "vdwhl" layout

                    copy record "4aphl" layout to record "1aphl" layout
                    copy record "5aphl" layout to record "2aphl" layout
                    copy record "6aphl" layout to record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                    clear record "6aphl" layout
                  end
                  if flag "10aphl" true
                  begin
                    clear record "vdwhl" layout
                    copy record "7aphl" layout to record "vdwhl" layout

                    copy record "7aphl" layout to record "1aphl" layout
                    clear record "2aphl" layout
                    clear record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                    clear record "6aphl" layout
                    clear record "7aphl" layout
                  end
                  if flag "11aphl" true
                  and flag "12aphl" false
                  and flag "10aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "3aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "4aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "5aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "6aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "7aphl" layout to record "vdwhl" layout

                    copy record "3aphl" layout to record "1aphl" layout
                    copy record "4aphl" layout to record "2aphl" layout
                    copy record "5aphl" layout to record "3aphl" layout
                    copy record "6aphl" layout to record "4aphl" layout
                    copy record "7aphl" layout to record "5aphl" layout
                    clear record "6aphl" layout
                    clear record "7aphl" layout
                  end
                  if flag "12aphl" true
                  and flag "10aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "5aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "6aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "7aphl" layout to record "vdwhl" layout

                    copy record "5aphl" layout to record "1aphl" layout
                    copy record "6aphl" layout to record "2aphl" layout
                    copy record "7aphl" layout to record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                    clear record "6aphl" layout
                    clear record "7aphl" layout
                  end
                  if flag "13aphl" true
                  begin
                    clear record "vdwhl" layout
                    copy record "8aphl" layout to record "vdwhl" layout

                    copy record "8aphl" layout to record "1aphl" layout
                    clear record "2aphl" layout
                    clear record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                    clear record "6aphl" layout
                    clear record "7aphl" layout
                    clear record "8aphl" layout
                  end
                  if flag "14aphl" true
                  and flag "13aphl" false
                  and flag "15aphl" false
                  and flag "16aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "2aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "3aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "4aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "5aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "6aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "7aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "8aphl" layout to record "vdwhl" layout

                    copy record "2aphl" layout to record "1aphl" layout
                    copy record "3aphl" layout to record "2aphl" layout
                    copy record "4aphl" layout to record "3aphl" layout
                    copy record "5aphl" layout to record "4aphl" layout
                    copy record "6aphl" layout to record "5aphl" layout
                    copy record "7aphl" layout to record "6aphl" layout
                    copy record "8aphl" layout to record "7aphl" layout
                    clear record "8aphl" layout
                  end
                  if flag "15aphl" true
                  and flag "13aphl" false
                  and flag "16aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "4aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "5aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "6aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "7aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "8aphl" layout to record "vdwhl" layout

                    copy record "4aphl" layout to record "1aphl" layout
                    copy record "5aphl" layout to record "2aphl" layout
                    copy record "6aphl" layout to record "3aphl" layout
                    copy record "7aphl" layout to record "4aphl" layout
                    copy record "8aphl" layout to record "5aphl" layout
                    clear record "6aphl" layout
                    clear record "7aphl" layout
                    clear record "8aphl" layout
                  end
                  if flag "16aphl" true

                  and flag "13aphl" false
                  begin
                    clear record "vdwhl" layout
                    copy record "6aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "7aphl" layout to record "vdwhl" layout
                    add 1 record "vdwhl" layout index
                    copy record "8aphl" layout to record "vdwhl" layout

                    copy record "6aphl" layout to record "1aphl" layout
                    copy record "7aphl" layout to record "2aphl" layout
                    copy record "8aphl" layout to record "3aphl" layout
                    clear record "4aphl" layout
                    clear record "5aphl" layout
                    clear record "6aphl" layout
                    clear record "7aphl" layout
                    clear record "8aphl" layout
                  end
              end
              set flag "bet high" false


          end


              set flag "1aphl" false
              set flag "2aphl" false
              set flag "3aphl" false
              set flag "4aphl" false
              set flag "5aphl" false
              set flag "6aphl" false
              set flag "7aphl" false
              set flag "8aphl" false
              set flag "9aphl" false
              set flag "10aphl" false
              set flag "11aphl" false
              set flag "12aphl" false
              set flag "13aphl" false
              set flag "14aphl" false
              set flag "15aphl" false
              set flag "16aphl" false

end

[/reveal]
I don't have TheHolyGrail.

bigmoney

Just played ktf at a bricks and motar casino
Using a 15 step progression 
First three series ok
And 4th series FAILED
GIDDY UP N GO GO

bigmoney

I was betting on the 8 remainig numbers and when the first hit of my  8 numbers ...
Started a whole new game using the next 8 hit remaining numbers
GIDDY UP N GO GO

bigmoney

GIDDY UP N GO GO

Kattila

BigM,
I am not fan of ktf , but  why did you used such long and
negative progression on the 8 unhit numbers     :question:
Not sure about statistics on KTF , but IF there is a good avarage
to hit the 8 unhit in the first 4 or five spins, then after the *trigger*
bet for max. 4 or 5 spins , then W   or L4 ( L5) stop , bet again
after new *trigger*.  Also could use some `possitive progression/ levels :
1,1,2,3 / 3,4,4,5 / 6,6,7,8 / 9,10,12, 15/ 20,25,30, 50 ......
Rise level only after W, after L4 down one level. 
IF sessions ( not spins) looks like LWLLLWLLWLLLWWLL  not good, if
looks like LWLWLLWWLWLLWWLLWLWLWWW  then ok.
Test before play it for real.

cheers

bigmoney

Well i played it

And lost 791 sollars and ouch ot hurts and will never play ktf  again
GIDDY UP N GO GO

nottophammer

Quote from: bigmoney on Apr 27, 07:12 AM 2017
I meant 8 unhit numbers

and said to flat bet those remaining 8#'s. Look at bottom of reply 20 in 75%.
How do you win at roulette, simple, make the right decision

nottophammer

Big M, here is result for betting the 8 remaining on jackpot obviously the 29th has just hit
So the total spins =1149, so you have flat bet every spin = 9192. The return is 36 (35-1) 297*36= 10692


How do you win at roulette, simple, make the right decision

-