•   Home   
  • Downloads
  •   Guide  
  •    FAQ   
  •  Various 
  • The Book
  • The Future
  •  Contact 
  • MOPEKS® FAQ - Methods

    If the following does not solve your problem then please send an Email

    1.  What is a 'Method'?
    2.  What are Method Classes?
    3.  What are Method Instructions?
    4.  How are Method Instructions Arranged?
    5.  How does MOPEKS generate a Class 1 Method?
    6.  How does MOPEKS generate a Class 2 Method?
    7.  How does MOPEKS generate a Class 3 Method?
    8.  How does MOPEKS generate Class 11, 12, 13 and 14 Methods?
    9.  How does MOPEKS generate Class 21, 22, 23 and 24 Methods?
    10. How does MOPEKS generate a Class 34 Method ( a 'Simulation')?
    11. What is the difference between a Page and a Method?
    12. Not in Use
    13. What is a Detached or Attached Method?
    14. Tell me about Sequential and Simultaneous Method finding.
    15. Tell me about the Breeding Pool.
    16. Please explain the Mopeks form layout.
    17. Is MOPEKS much better than Random?
    18. What is a Script?
    19. Explain Form Advice when I choose an Environment
    20. Why does MOPEKS sometimes produce inelegant code in Methods?
    21. Please explain Maths, Static and Dynamic Trials
    22. Contrast the Data for Maths, Static and Dynamic Trials
    23. What is the 'Score' of a Method?
    24.  Not in Use
    25.  Not in Use


    1. What is a 'Method'?

    In Object Oriented Programming ('OOP') a Method is something that carries out a series of actions. In a language such as Visual Basic it would be called a function or a subroutine.

    In MOPEKS, I have used the term 'Method' to describe a computer program which is derived from raw data by the 'Factory' and the 'Simulator'. The derived Method should then be able to reproduce all (or the relevant part) of that data and also reproduce the actions of whatever produced that data.

    So, for example, if the data represents the distance between two particular objects in a series of trials, then the derived Method should always be able to compute the distance between any two objects.

    Similarly, a Method derived from data showing the progress of an object as it pursues another object, should be able to predict the position of any object which is pursuing another object.

    You can view such a Method as a generalised explanation of an observed phenomenon.

    Q. 'Can you understand why the sun rises in the east and sets in the west?'
    A. 'Here is a derived Method that reproduces that behaviour'

    Q. 'What is this series of numbers?'
    A. 'Here is a derived Method that reproduces each number and the rest of the series too'

    Such derived Methods are at the heart of MOPEKS. Here is a Method generated by MOPEKS that finds the square root of a number:

    Private Function SquareRoots(ByVal R As Double) As Double
      'Problem Description: '01 Square Roots'
      'Generated by MOPEKS at 1.01 pm on Friday 12th April 2013

      Dim ax As Double, bx As Double, cx As Double, dx As Double

      1: ax = R + 1
      2: bx = R / ax
      3: ax = bx + ax
      4: ax = ax / 2
      5: If bx < R / ax Then GoTo 2

      'Return
      Out: SquareRoots = ax

    End Function

    A line of a Method generated by MOPEKS consists of 11 separate instructions (see FAQ ⇨ Methods ⇨ Q4) which are all stored in a 64-bit word which is just a container (ie it is used as a storage area).

    Not all of these Instructions will be used (or even visible) in any one line of a Method but they are all available in principle and can be expressed in terms easily understood by a human programmer.

    MOPEKS allows you to view a Method either in a Visual Basic based language or a C based language. I have called these two alternatives 'MOPEKS Basic' and 'MOPEKS C'.

    The following example in 'Mopeks C' is very similar to the Method shown above (derived on Friday 12th April 2013) but different, as you would expect. Each of these Methods took about ten minutes to generate on my very old laptop:

    double _stdcall SquareRoots(double R){
      // Problem Description: '01 Square Roots'
      // Generated by MOPEKS at 11.55 pm on Saturday 13th April 2013

      // Initialise variables at zero
      double ax = 0;
      double bx = 0;
      double cx = 0;
      double dx = 0;

      Line1: ax = R + 3;
      Line2: cx = R / ax;
      Line3: ax = ax + cx;
      Line4: ax = ax / 2;
      Line5: if(ax < R / cx)goto line2;

      out: return ax;
    }

    As mentioned above, all Methods are actually held in MOPEKS as 64 bit words (I have used 'currency' but any 64 bit word would do - it is just a storage area). The particular Method found above consists of five 64 bit words as follows:

    0000000000000000000100000000011000000000000000000000000000000000
    0000010000000001100100000000000000000000000000000000000000000000
    0000000000000000000001000000000000000000000000000000000000000000
    0000000000000001100000000000011100000000000000000000000000000000
    0100010000000001100100000000000000000000001000000000000000000000

    Here is the same Method in hexadecimal:

    &H335A1336E5058200
    &H27B592E83D280DB1
    &H0010040000000020
    &HA19B80F70066BDF3
    &H5515F0C83E292DB5

    You can swap between these formats and analyse them in detail by using the Laboratory (see Guide ⇨ Laboratory)

    This Method is simple enough but if we want to know the distance between two objects operating in an environment, this is going to be more complicated. MOPEKS has generated the following Method to do this:

    Private Function DistBtwn2Objcts(ByVal R As Long, ByVal S As Long) As Double
      Dim ax As Double, bx As Double, cx As Double, dx As Double

      1: bx = R.Xaxis - S.Xaxis
      2: bx = bx * bx
      3: ax = R.Yaxis - S.Yaxis
      4: ax = ax * ax
      5: ax = ax + bx
      6: ax = SquareRoot(ax)

      'Return
      Out: DistBtwn2Objcts = ax

    End Function

    This is more complicated and uses the SquareRoot function found earlier. It also uses the properties of objects - the term 'S.Xaxis' refers, as you would expect, to the position on the X axis of object S. Here is a Class 22 Method that enables object R to go into an anti clockwise tangent around object S:

    Private Function R_Tngnts_S_AntC(ByVal R As Long, ByVal S As Long)
      Dim ax As Double, bx As Double, cx As Double, dx As Double

      1: bx = AnglSbtnddBy2Ob(S, R)
      2: dx = DistBtwn2Objcts(R, S)
      3: cx = R.Radius + S.Radius
      4: cx = cx / dx
      5: cx = ASin(cx)
      6: bx = bx + cx
      7: dx = Return90()
      8: bx = bx + dx
      9: ax = Cos(bx)
      10: ax = R.Speed * ax
      11: ax = ax + R.XAxis
      12: ax ==> NextStep(R.XAxis)
      13: ax = Sin(bx)
      14: ax = R.Speed * ax
      15: ax = R.YAxis - ax
      16: ax ==> NextStep(R.YAxis)

    End Function

    You will see that this contains references to quite a number of other Methods, all generated by MOPEKS. The instruction 'ax ==> NextStep(R.YAxis)' transfers the value of ax to R.YAxis.

    It must be emphasised that MOPEKS actually uses the Methods it has generated. It runs them in an interpreter written in a mixture of C and Assembler. It does not run the Method as a Visual Basic or C program - that is purely for ease of comprehension by human beings.

    There is no reason in principle why MOPEKS cannot go on generating Methods of ever increasing complexity to solve problems which in turn become more complex. The current version of MOPEKS has been tested with up to at least 10 levels of program calling ie

    1. Method A uses Method B
    2. Method B uses Method C
    ...
    ...
    9. Method I uses Method J
    10. Method J uses Method K

    It should be able to cope with many more levels until it runs out of stack space.

    Back to Top

    2. What are Method Classes?

    The term 'Class' has slightly different meanings in Object Oriented Programming and .net languages but I have hijacked the term to mean something else yet again. I have used it to describe different types of Methods which deal with different numbers of parameters and objects. Maybe I should have called them 'Categories'. Too late now.

    The MOPEKS Method Classes are as follows:

    Mathematical Method returning a single number

    Class 1 - one parameter, 'R' eg find factorial of a number
    Class 2 - two parameters, 'R' and 'S' eg sum of two squares
    Class 3 - no parameter eg return 1028

    Static Object Based Method returning a single number

    Class 11 - one object, 'R' only eg find distance from this object to edge of table
    Class 12 - two objects, 'R' and 'S' only eg find distance between two objects
    Class 13 - no one object but consider all objects eg find the weight of all objects
    Class 14 - one object, 'R' but consider all objects eg find the object closest to the radio

    A Dynamic Object Based Method which returns a Process

    Class 21 - one object only, 'R' eg describe how this balloon expands when inflated
    Class 22 - two objects only, 'R' and 'S' eg find a process that describes how the Shark swims towards the Tuna
    Class 23 - no one object but consider all objects eg find a process that describes how this flock of birds behave
    Class 24 - one object, 'R' but consider all objects eg find a process that describes how all the fishes flee from the Shark

    A Simulation which returns a Process Enabling an Object, 'R', to Act Intelligently

    Class 34 - one object only but consider all objects eg Brian kills the Lion by tempting it into the Pit

    A Class 34 Method contains only Classes 21, 22, 23 and 24 since it consists of a number of objects all interacting over a period of time.

    Back to Top

    3. What are Method Instruction?
    General

    One crucial thing to realise about Methods in MOPEKS is that every 64 bit word you can imagine constitutes a valid program line in MOPEKS. So if you just generate five random 64 bit words you end up with a valid computer program. This is right at the heart of Genetic Programming - you generate a random program and see how it performs.

    But please bear in mind that an instructon line will be interpreted differently depending on which Method Class it is in. This is an example of Polymorphism, which will be familiar to Object Oriented Programming experts. See 'FAQ ⇨ General ⇨ Q4'

    Here is the very first vaguely sensible Method generated by MOPEKS in its search for a five line program that will find square roots:

    Private Function SquareRoots(ByVal R As Double) As Double
      'Problem Description: '01 Square Roots'
      'Generated by MOPEKS at 1.32 pm on Saturday 13th April 2013

      Dim ax As Double, bx As Double, cx As Double, dx As Double

      1: cx = R + cx
      2: ax = bx + cx
      3: If dx >= bx - 3 Then GoTo Out
      4: If dx < 3 - 2 Then GoTo Out
      5: If ax < bx - 1 Then GoTo 1

      'Return
      Out: SquareRoots = ax

    End Function

    If you look at this program you will find that it is basically garbage but it is very slightly better than random. Three of the lines do nothing but lines 1 and 2 boil down to:

    ax = R

    In other words, its first guess that is better than random is that the square root of 16 (or whatever) is 16. Significantly, if you look at the actual Method (that works) derived to find square roots, the guts of it are:

    1: ax = R + 1
    2: bx = R / ax
    3: ax = bx + ax
    4: ax = ax / 2
    5: If bx < R / ax Then GoTo 2

    And right there in the first line is:

    ax = R + 1

    If you work through this program line by line (see Guide ⇨ Factory ⇨ Review ⇨ Class 1) you will see that it finds square roots works by making an initial guess and then refining it. So clearly, the very first program that used "ax = R" was on the right lines.

    Because of the way that MOPEKS is formulated there are only four variables that can go on the left hand side of a line of code in a Method, with or without an 'if', namely:

    ax =
    bx =
    cx =
    dx =
    if ax ...
    if bx ...
    if cx ...
    if dx ...

    On the right hand side there are ten possible variables but only eight of them can be used in any particular class:

    ax - always allowed
    bx - always allowed
    cx - always allowed
    dx - always allowed
    R or 3 allowed
    S or 4 allowed
    1 - always allowed
    2 - always allowed

    We use "R" and "S" as the two parameters to avoid possible confusion with "X" and "Y" which are normally used as the x and y co-ordinates in the environment.

    This is because there are three bits allocated for storage (giving 8 possible values) of each right hand side variable. If "R" and "S" are present on the right hand side then "3" and "4" are not allowed. This is explained further in 'FAQ ⇨ Methods ⇨ Q4' This means that if you wish to use a number such as "90" you have to derive it using only ax, bx, cx, dx, 1, 2, 3 and 4 eg

    double _stdcall Return90(){
      // Problem Description: '16 Return 90'
      // Generated by MOPEKS at 12.10 pm on Sunday 14th April 2013

      // Initialise variables at zero
      double ax = 0;
      double bx = 0;
      double cx = 0;
      double dx = 0;

      Line1: ax = 3 * 3;
      Line2: bx = ax * ax;
      Line3: ax = ax + bx;

      out: return ax;
    }

    MOPEKS took less than two seconds to find this function and there are hints of intelligence here - could you have done better in two seconds? Or two minutes? This is typical of Genetic Programming.

    Finally, you can only use one operator OR one totally freestanding Method on the right hand side (you cannot currently use 'if' with a Method). The following forms are permitted:

    ax = S.Smell + ax
    cx = dx / R.Velocity
    if bx < S.Height * 2 then goto 2
    dx = SquareRoot(S.Height)
    Proceed(S, R)

    The following forms are not permitted because they have more than one operator or the Method is not totally freestanding:

    ax = bx + ax + 1
    cx = cx + Friron(R.Knole)
    cx = cx + dx / 3
    if bx < Squide(R, ax) then goto 2

    The essence of the MOPEKS Language (whether expressed as MOPEKS Basic or MOPEKS C) boils down to a highly simplified version of Assembly Language with its four registers ax, bx, cx, dx and endless 'jump' statements (equivalent to 'goto') together with elements of Visual Basic eg its use of Type enabling the user to create statements such as:

    ax = MyObject.Property

    The use of 'goto' is rightly frowned upon but X86 Assembly Language has over 30 different types of 'jumps' so ultimately all of your beautifully elegant Object Oriented programming ends up littered with what boils down to 'goto' statements when it is compiled.

    Back to Top

    4. How are Method Instructions Arranged?

    A line of a MOPEKS Method consists of 11 separate sections as follows. This means that every 64-bit string (or word) constitutes a valid Method line. The chances are that it will be useless but it will still be valid.

     Instruction   Description   Bits From   Bits   Value   Code   Example 
     1.   Type of Statement   1 to 3   3   0   "LHS = RHS 1 (Operator) RHS 2"   "ax = bx * cx" 
                    1   "LHS = RHS 1 (Operator) RHS 2"   "bx = 3 / R" 
                     2   "If LHS < RHS 1 (Operator) RHS 2 then goto N"   "If ax < bx / dx then goto 2" 
                     3   "If LHS >= RHS 1 (Operator) RHS 2 then goto N"   "if dx >= dx * 2 then got 13" 
                     4   "LHS = RHS 1 (Operator) RHS 2"   "dx = 3 / 2" 
                     5   "LHS = RHS 1 (Operator) RHS 2"   "cx = cx + 1" 
                     6   "If LHS < RHS 1 (Operator) RHS 2 then goto N"   "If dx < 3 / 1 then got 31" 
                     7   "Method Call"   "ax = DistBtwn2Objcts(R, S)" 
                               
         Spare   4 to 4   1             
                               
     2.   Left Hand Side   5 to 6   2   0   "ax"   "ax = " 
                     1   "bx"   "If bx < cx / dx then goto 12" 
                     2   "cx"   "cx = cx + 1" 
                     3   "dx"   "dx = cx + 4" 
                               
         Spare   7 to 8   2             
                               
     3.   Environment Properties   9 to 13   5   -   Property   "ax = Constant(E.GreyClr)" 
                               
         Spare   14 to 15   2             
                               
     4.    Operator   16 to 17   2   0   "+"   "If ax < bx + 1 then goto 2" 
                     1   "-"   "ax = ax - 1" 
                     2   "*"   "cx = cx * dx" 
                     3   "/"   "dx = 3 / 3" 
                               
         Spare   18 to 19   2             
                               
     5.    Right Hand Side 1   20 to 22   3   0   "ax"   "bx = ax / cx" 
                     1   "bx"   "ax = bx + 3" 
                     2   "cx"   "cx = cx * cx" 
                     3   "dx"   "If dx < dx * dx then got 31" 
                     4   "R" or "4"   "ax = R + 3" 
                     5   "S" or "3"   "ax = S + 1" 
                     6   "1"   "if dx >= 1 + 1 then goto 3" 
                     7   "2"   "dx = 2 + 2" 
                               
     6.    Properties 1   23 to 27   5   eg "3"   eg "Xaxis"   "ax ==> NextStep(R.Xaxis)" 
                               
         Spare   28 to 29   2             
                               
     7.    Right Hand Side 2   30 to 32   3   0   "ax"   "dx = ax + ax
                     1   "bx"   "ax = bx + bx
                     2   "cx"   "dx = dx + cx
                     3   "dx"   "If dx >= dx * dx then got 9" 
                     4   "R" or "4"   "dx = 4 - 4
                     5   "S" or "3"   "dx = S + S
                     6   "1"   "if dx < S + 1 then goto 1" 
                     7   "2"   "dx = dx / 2
                               
     8.    Properties 2   33 to 37   5   eg "21"   eg "Radius"   "bx = 1 - R.Radius
                               
         Spare   38 to 39   2             
                               
     9.   Go To Statement   40 to 43   4   eg 0   "If ... then goto (Value + 1)  "If ax < bx * cx then goto 1
                 eg 17   "If ... then goto (Value + 1)  "If bx >= 3 * 2 then goto 18
                               
         Spare   44 to 45   2             
                               
     10.    Methods Called   46 to 52   7   eg "73"   eg "DistBtwn2Objcts()"   "bx = DistBtwn2Objcts(ax, cx)" 
                 eg "125"   eg "ObjectNumber()"   "ax = ObjectNumber(R)" 
                               
         Spare   53 to 56   4             
                               
     11.   Steps in a Simulation   57 to 63   7   eg 45   "... for (Value + 1)  "1: GravityPrcdFll 7 for 46 steps" 
                 eg 2   "... for (Value + 1)  "6: R_Orbts_S_Clckw R, 5 for 3 steps" 
                               
         Spare   64 to 64   1             
                               
     Instruction   Description   Bits From   Bits   Value   Code   Example 

    So, for example, in the Method extract below, the following applies:

    http://www.mopeks.org/images/form_notepad_class_01_method_extract.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

     Instruction   Description   Value   Code   Comment 
     1.   Type of Statement   0   "=   
     2.   Left Hand Side    0   "ax   
     3.   Environment Properties   16      Ignore 
     4.   Operator    3   "/   
     5.   Right Hand Side 1   0   "ax   
     6.   Properties 1   8      Ignore 
     7.   Right Hand Side 2   7   "2   
     8.   Properties 2   8      Ignore 
     9.   Go To Statement   13      Ignore 
     10.   Methods Called   0      Ignore 
     11.   Steps in a Simulation   33      Ignore 

    So, this boils down to:

    ax = ax / 2

    Note that unused Instructions are just ignored. In the Laboratory, you can set them to zero by using the "Unused Areas to '0'" option. This is not really of much use now - it is an evolutionary relic.

    Back to Top

    5. How does MOPEKS generate a Class 1 Method?

    The emphasis in this section is the nature of the raw data from which MOPEKS derives the Method. To actually create a Class 1 Method please visit 'Guide ⇨ Factory ⇨ Create ⇨ Class 1 Method'

    A Class 1 Method has just one parameter. For example, suppose the data concerned is as below:

    http://www.mopeks.org/images/form_notepad_data_class_01.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Now this is the sum of integers, so that in the example above:

    780 = 1 + 2 + 3 + ... + 39
    13,695 = 1 + 2 + 3 + ... + 165

    Would you have picked that up by just looking at the numbers? Me neither, it would probably take a while. What you would probably have noticed in due course is that:

    780 = 39 * 20

    And that may have triggered your memory that the following formula applies:

    Sum of Integers to N = N * (N + 1) / 2

    You will notice that in the screen shot above there are 10 lines of data. MOPEKS allows you to use up to 20 lines of data. The reason for the multiplicity of data is to avoid MOPEKS coming up with simplistic solutions - what mathematicians call 'Trivial Solutions'.

    An example of a Trivial Solution to a serious problem is often "Zero" or, in the case of human beings, "It is the will of God". Enough said.

    The Objective is to come up with a generalised solution using only the following variables: ax, bx, cx, dx, 1, 2, 3, and 4. This what MOPEKS typically comes up with after a few seconds. Column 2 is "R".

    http://www.mopeks.org/images/form_notepad_class_01_Method.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Back to Top

    6. How does MOPEKS generate a Class 2 Method?

    The emphasis in this section is the nature of the raw data from which MOPEKS derives the Method. To actually create a Class 2 Method please visit 'Guide ⇨ Factory ⇨ Create ⇨ Class 2 Method'

    A Class 2 Method has two parameters and here is a data set for MOPEKS to work with. The second and third columns are data and the final column is the answer.

    http://www.mopeks.org/images/form_notepad_data_class_02.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    There may be people who can see what the problem is but I would not be one of them. It is the Difference of Squares and this is what MOPEKS came up with in a few seconds. Column 2 is "R" and column 3 is "S".

    http://www.mopeks.org/images/form_notepad_class_02_Method.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    A human programmer would probably do this differently, say:

    Line1: bx = R * R
    Line2: cx = S * S
    Line3: ax = bx - cx

    The reason is that computer programs written by human beings need to be understood by other people (or the author for that matter) many years in the future and accordingly a great deal of effort is (or should be) expended on trying to make a complex program as simple and clear as possible.

    MOPEKS (and nature) have no such inhibitions and can come up with hideous 'Spaghetti Code'.

    For that reason it is a good idea to keep MOPEKS Methods to as few lines as possible and not make the scope of the Method too ambitious. This is also much quicker as MOPEKS will solve a simple problem in a fraction of the time of a complex problem.

    Back to Top

    7. How does MOPEKS generate a Class 3 Method?

    The emphasis in this section is the nature of the raw data from which MOPEKS derives the Method. To actually create a Class 3 Method please visit 'Guide ⇨ Factory ⇨ Create ⇨ Class 3 Method'

    A Class 3 Method has no parameters and here is a data set for MOPEKS to work with. This is pretty trivial but the solution that MOPEKS comes up with is clever, in my opinion.

    http://www.mopeks.org/images/form_notepad_data_class_03.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    The Objective is to come up with a solution using only the following variables: ax, bx, cx, dx, 1, 2, 3, and 4. This is what MOPEKS typically comes up with after a few seconds.

    http://www.mopeks.org/images/form_notepad_class_03_Method.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Back to Top

    8. How does MOPEKS generate Class 11, 12, 13 and 14 Methods?

    The emphasis in this section is the nature of the raw data from which MOPEKS derives the Method. To actually create a Class 11 Method please visit 'Guide ⇨ Factory ⇨ Create ⇨ Class 11 Method'

    Classes 1, 2 and 3 are all derived using specific data which is why they have been dealt with separately above. By contrast, Class 11, 12, 13 and 14 Methods can all be derived from the same set of data (known as a Static Trial). This is because they represent the relationships between Objects in an Environment eg a Class 12 Method could represent the distance between two Objects

    This is the data set for:

    2012-11-17@12.14.14 Temporary Name Trials 10 Steps 1 V001.mpkt

    which is found in this folder:

    C:\MOPEKS\Factory\Trials\LiteraryParty\Static

    If you look carefully you will see that the values for all of the properties of each Object are set out for each of the 10 trials but note that each Trial has only one step. That is why it is known as a Static Trial. For example, in Step 1 of Trial 1, Glady has a Y axis value of 416.0337704.

     
     From Method ID,
     Background Colour, 15129855
     Foreground Colour, 255
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 001
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 427.59617024
      2 YAxis, 200-000-003, 416.0337704
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.785640192
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 28.0699033164
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 46.88803584
      2 YAxis, 200-000-003, 200.168492
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 48.20707544
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 646.300896
      2 YAxis, 200-000-003, 605.8877768
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 27.9216691908
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 1166.60292352
      2 YAxis, 200-000-003, 102.6233552
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 3.757596341
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 347.11188864
      2 YAxis, 200-000-003, 16.7807456
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.88771667
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 74.06003328
      2 YAxis, 200-000-003, 41.4572928
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 14.811626328
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 911.51051264
      2 YAxis, 200-000-003, 795.8956384
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 14.7665828496
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 002
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 655.28425344
      2 YAxis, 200-000-003, 658.8011408
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 9.2714497616
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 26.7581927778
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 0.25426816
      2 YAxis, 200-000-003, 741.3206336
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 43.50848381
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 723.65642368
      2 YAxis, 200-000-003, 341.452356
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 23.1110555478
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 938.56301056
      2 YAxis, 200-000-003, 757.2442976
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 4.201961375
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 772.6406528
      2 YAxis, 200-000-003, 284.7565792
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.9501627026
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 188.52133248
      2 YAxis, 200-000-003, 541.9807808
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 14.807369607
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 1079.41840768
      2 YAxis, 200-000-003, 311.166408
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 10.1759364048
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 003
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 848.96930432
      2 YAxis, 200-000-003, 265.0507304
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 7.6443648416
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 37.4337501846
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 1187.39938944
      2 YAxis, 200-000-003, 605.0982688
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 60.54401564
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 732.51066624
      2 YAxis, 200-000-003, 768.1077848
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 40.3493346564
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 3.38200832
      2 YAxis, 200-000-003, 666.9498096
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 4.02700148
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 128.79490304
      2 YAxis, 200-000-003, 507.0281296
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 7.2346961092
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 723.03219584
      2 YAxis, 200-000-003, 261.8645112
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 19.129580349
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 235.24281472
      2 YAxis, 200-000-003, 341.756196
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 11.4719940552
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 004
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 178.1048448
      2 YAxis, 200-000-003, 541.0858776
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 7.5118469216
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 28.8787807176
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 879.82091264
      2 YAxis, 200-000-003, 666.1541016
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 38.00541347
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 537.06280448
      2 YAxis, 200-000-003, 406.5160296
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 37.035743613
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 683.73001088
      2 YAxis, 200-000-003, 161.099128
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 4.624584707
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 92.54444032
      2 YAxis, 200-000-003, 139.5225472
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 6.4381048606
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 424.92453504
      2 YAxis, 200-000-003, 52.7944568
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 12.275235834
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 370.05851648
      2 YAxis, 200-000-003, 481.2638352
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 15.13940034
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 005
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 955.40648448
      2 YAxis, 200-000-003, 713.14154
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 5.9812387088
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 24.0773342766
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 848.55286144
      2 YAxis, 200-000-003, 392.9056992
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 60.54480968
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 1098.02865792
      2 YAxis, 200-000-003, 501.7987696
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 41.304031692
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 1187.19958656
      2 YAxis, 200-000-003, 224.8926112
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 4.738102031
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 193.42594048
      2 YAxis, 200-000-003, 716.0267864
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.9080060552
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 507.4137216
      2 YAxis, 200-000-003, 524.169212
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 10.955912595
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 931.78898432
      2 YAxis, 200-000-003, 514.732044
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 12.4652830584
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 006
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 228.16625536
      2 YAxis, 200-000-003, 136.54326
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.4361881872
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 38.855844258
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 1109.72037376
      2 YAxis, 200-000-003, 155.139192
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 38.26122869
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 30.20824192
      2 YAxis, 200-000-003, 13.3881944
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 38.7225717252
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 919.46289152
      2 YAxis, 200-000-003, 410.5870896
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 4.755792743
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 972.33136256
      2 YAxis, 200-000-003, 105.388604
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 5.9870034238
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 464.51920384
      2 YAxis, 200-000-003, 546.8395944
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 17.716334982
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 942.17557632
      2 YAxis, 200-000-003, 72.0583504
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 12.5287593168
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 007
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 926.87079936
      2 YAxis, 200-000-003, 559.0346696
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 9.0734337008
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 41.633295396
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 1008.99682688
      2 YAxis, 200-000-003, 221.0660416
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 56.26787603
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 298.0627712
      2 YAxis, 200-000-003, 384.4082712
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 36.5529221772
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 872.77390976
      2 YAxis, 200-000-003, 605.0871792
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 3.517697789
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 647.62331136
      2 YAxis, 200-000-003, 729.2201696
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 9.0915412084
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 161.54771584
      2 YAxis, 200-000-003, 443.9058264
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 17.035345851
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 445.30971776
      2 YAxis, 200-000-003, 377.018256
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 10.3762630632
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 008
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 436.58022912
      2 YAxis, 200-000-003, 661.580504
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 6.0406484864
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35.6680665132
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 247.83180032
      2 YAxis, 200-000-003, 611.5228632
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 46.56762098
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 579.1526848
      2 YAxis, 200-000-003, 166.882468
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 33.7812182664
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 670.07034752
      2 YAxis, 200-000-003, 588.1072496
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 4.402063328
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 991.95834112
      2 YAxis, 200-000-003, 312.8336176
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.3167351456
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 408.67857792
      2 YAxis, 200-000-003, 470.9183448
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 16.750069098
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 1074.10592
      2 YAxis, 200-000-003, 679.1016672
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 11.8550922816
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 009
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 150.31296256
      2 YAxis, 200-000-003, 249.9045992
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 9.1666452032
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 29.7041906238
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 243.69742336
      2 YAxis, 200-000-003, 90.153744
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 35.13203114
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 258.51040384
      2 YAxis, 200-000-003, 511.4423984
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 25.6043545098
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 823.83644928
      2 YAxis, 200-000-003, 487.5598848
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 5.530738193
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 1168.95505152
      2 YAxis, 200-000-003, 330.1411152
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.9160288364
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 835.79433216
      2 YAxis, 200-000-003, 779.3008656
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 19.315794615
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 57.63462784
      2 YAxis, 200-000-003, 452.476324
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 14.3714115048
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 010
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 209.33908224
      2 YAxis, 200-000-003, 367.7731736
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 9.8070138272
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 36.4826949234
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 817.42264576
      2 YAxis, 200-000-003, 188.1263496
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 63.63425324
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 245.59888384
      2 YAxis, 200-000-003, 136.3193136
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 27.5474096304
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 290.57498752
      2 YAxis, 200-000-003, 480.4406176
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 5.146860812
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 559.56069632
      2 YAxis, 200-000-003, 45.5272016
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 5.1327651004
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 156.83582848
      2 YAxis, 200-000-003, 699.9885136
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 10.772064402
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 1041.77510272
      2 YAxis, 200-000-003, 257.4120168
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.707540368
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9

    The 10 Trials are all represented visually in the animated screen-shot below. You can examine this file more closely by either clicking on it or going to the Stores (see 'Guide ⇨ Stores ⇨ View Static Trials').

    http://www.mopeks.org/images/form_display_faq_Methods_static_trial.gif Left click for ANIMATED gif. Then Save Image to Disk and Step through as a Movie if you wish - see 'FAQ ⇨ General ⇨ Q9'

    Class 11 Methods

    Now suppose we ask MOPEKS to work out a generalised Method to find the distance from any one of the Objects ('R') to the corner ie the point where both the Xaxis and the Yaxis are zero. It should come up with something like this:

    http://www.mopeks.org/images/form_notepad_class_11_Method_full.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Class 12 Methods

    Now suppose we ask MOPEKS to work out a generalised Method to find the distance from any one of the Objects ('R') to another Object ('S'). It should come up with something like this:

    http://www.mopeks.org/images/form_notepad_class_12_Method_full.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Class 13 Methods

    Now suppose we ask MOPEKS to work out a generalised Method to find the Object ('R') which is closest to the Left hand Side of the field. It should come up with something like this:

    http://www.mopeks.org/images/form_notepad_class_13_Method_full.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Class 14 Methods

    Now suppose we ask MOPEKS to work out a generalised Method to find the Object which is furthest away from the Primary Object "R". It should come up with something like this:

    http://www.mopeks.org/images/form_notepad_class_14_Method_full.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Back to Top

    9. How does MOPEKS generate Class 21, 22, 23 and 24 Methods?

    The emphasis in this section is the nature of the raw data from which MOPEKS derives the Method. To actually create a Class 21 Method please visit 'Guide ⇨ Factory ⇨ Create ⇨ Class 21 Method'

    Whereas Classes 11, 12, 13 and 14 can all be easily derived from the same set of data (known as a Static Trial) this is not really true of Classes 21, 22, 23 and 24. This is because these latter classes usually represent a specific type of interaction. For example, you may wish to derive a Class 23 Method which reproduces all of the Objects heading west.

    On the other hand, for a Class 22 Method which replicates one Object moving towards another specific Object, we need a scenario where at least one Object is doing just that. It is therefore very unlikely (but not impossible) that one Dynamic Trial (as such a data set is called) could incorporate all of the Classes 21, 22, 23 and 24.

    Because the data sets for Classes 21, 22, 23 and 24 are so large (typically one Megabyte upwards), we are going to just show one such set in its entirety:

    2012-08-13@13.10.07 Brian Expands by 22 percent per Step Trial 10 Steps 15 V001.mpkt

    which is found in this folder:

    C:\MOPEKS\Factory\Trials\SafariPark\Dynamic

    If you look carefully, you will see that the values for all of the properties of each Object are set out for each step of the 10 trials. Note that each Trial has 15 steps - that is why it is known as a Dynamic Trial. In this example we are going to show how Brians radius increases with each step - the values are all marked in red below.

    This is a huge file, as you will see if you use your mouse wheel to scroll down it:

    Foreground Colour, 255
    --------------------------------------------------
    --------------------------------------------------
    Trial 001
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 002
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 003
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 004
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 005
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 006
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 007
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 008
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 009
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 010
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99


    Four of these ten Trials are represented visually in the animated screen-shot below (this is the maximum that the excellent animation program Ulead GIF Animator can cope with). You can examine this file more closely by either clicking on it or going to the Stores (see 'Guide ⇨ Stores ⇨ View Dynamic Trials').

    http://www.mopeks.org/images/form_display_brian_expands.gif Left click for ANIMATED gif. Then Save Image to Disk and Step through as a Movie if you wish - see 'FAQ ⇨ General ⇨ Q9'

    Class 21 Methods

    The example above where Brian expands by 22% at each step is an example of a Class 21 Method. If you set MOPEKS to work in the Factory, it should derive a Method something like this from the above data in the drop down box.

    http://www.mopeks.org/images/form_notepad_class_21_Method_brian_expands.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Class 22 Methods

    Now suppose, with a different data set, we ask MOPEKS to work out a generalised Method where the Object R orbits the Object S in a clockwise direction. It should come up with something like this:

    http://www.mopeks.org/images/form_notepad_class_22_Method.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Class 23 Methods

    Now suppose, with a different data set, we ask MOPEKS to work out a generalised Method whereby ALL of the Objects head west. It should come up with something like this:

    http://www.mopeks.org/images/form_notepad_class_23_Method.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Class 24 Methods

    Now suppose, with a different data set, we ask MOPEKS to work out a generalised Method whereby ALL of the Objects move away from the Object R. It should come up with something like this:

    http://www.mopeks.org/images/form_notepad_class_24_Method.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Back to Top

    10. How does MOPEKS generate a Class 34 Method (a 'Simulation')?

    The emphasis in this section is the nature of the raw data from which MOPEKS derives the Method. To actually create a Simulation please visit 'Guide ⇨ Simulator ⇨ Create'

    Whereas Classes 21, 22, 23 and 24 require a Dynamic Trial as raw data, a Simulation uses a Static Data set as a starting point in order to produce a Method which optimises the career of one particular Object eg Gladys in the Literary Jungle.

    For example, "All of these Objects are at a Literary Party - let's now see how Gladys can get her novel published". So, the party starts and all of the Objects present act out their roles - the arrogant editor, the servile writers and the rest of this sorry crew who all feel entitled to tell the rest of us what to think despite their total lack of knowledge of how the world really works. Apart from Shakespeare and Maynard Keynes, of course, both of whom had it sussed pretty good.

    Incidentally, Keynes was only a "Keynesian" because that was appropriate for the times - the garden was bone dry and he recommended flooding it. If the garden had already been flooded (like it is now) he would doubtless have recommended draining it. In other words, he would have come up with an intelligent solution appropriate to the circumstances. Instead of which, poor old Keynes is now labelled as a man whose only tool was a big tap.

    A Class 34 Method is similar to all of the other classes but whereas they are all general solutions to a problem (eg the square root of a number), derived from an existing data set of many different trials, a Simulation starts from just one static starting point and produces a specific solution to a problem not a generalised solution.

    This, hopefully, reflects real life. For example, if you want to escape from a fierce dog you don't stand there coming up with a generalised solution to cover all attacks by all wild animals in all Environments - just a solution for that particular case using Methods already in your repertoire. In the context of MOPEKS that may look like:

    1: Run to Gate for 10 Steps
    2: Open Gate
    3: Pass Through Gate
    4: Close Gate
    5: Recover for 10 Steps

    Now let's look at the data set for a MOPEKS Simulation. For example, this is the starting point for Brian on the plains of Africa.

    2012-02-04@09.20.01 Random Start including Spinach 'RndmStrtIS'  Trials 1 to 10 V002.mpkt

    which is found in this folder:

    C:\MOPEKS\Factory\Trials\SafariPark\Static

    This is a small file and could be made much smaller as we are only going to use Step 1 of Trial 1 (in red) as the starting point for this Simulation:

    Background Colour, 12648447
    Foreground Colour, 255
    --------------------------------------------------
    --------------------------------------------------
    Trial 001
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0


    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1


    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0


    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0


    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99


    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9


    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 002
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 003
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 004
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 005
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 006
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 007
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 008
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 009
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 010
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99



    Brian can only kill Leo by manipulating him into the Quick Sand but he cannot outrun Leo so he tempts him into the Lake. When he has sufficient leeway he runs to the Spinach Patch which gives him a superior rank so that Leo runs away from him - right into the Quick Sand.

    This may sound like a game but it is not - games are models of real life and that is what MOPEKS is at this stage. You can examine this file more closely by either clicking on it here or going to the Stores (see 'Guide ⇨ Stores ⇨ View Simulation Trials').

    http://www.mopeks.org/images/form_display_brian_on_safari.gif Left click for ANIMATED gif. Then Save Image to Disk and Step through as a Movie if you wish - see 'FAQ ⇨ General ⇨ Q9'

    NEEDS OUTPUT FILE and METHOD

    Back to Top

    11. What is the difference between a Page and a Method?

    They both mean the same thing but are used in different contexts. This is explained in detail in 'FAQ ⇨ Methods ⇨ Q16 ⇨ Note21'

    Back to Top

    12. Not in Use

    Back to Top

    13. What is a Detached or Attached Method?

    The terms 'Detached Method' and 'Attached Method' only relate to an Environment in the Simulator.

    For example, the Environment Safari Park has 73 Methods, none of which is 'Attached'. Let's suppose, however, that we decide to add a Method called 'Dusk' which is designed to reduce visibility by say 5%.

    For that Method to take effect and reduce visibility by 5% at each step of the simulation, it must be Attached. Otherwise it will just be ignored.

    You can 'Detach' and 'Attach' Methods to an Environment in the Library (see 'Guide ⇨ Library ⇨ Attach Method'.)

    Back to Top

    14. Tell me about Sequential and Simultaneous Method finding.

    This topic becomes relevant if you are creating or reviewing Methods of Classes 21, 22, 23 and 24. In these cases you will come across the process Control Form.

    It is best explained by means of an example. Let us suppose that you are seeking a Method which explains the actions of an Object which is actually heading in a straight line at 37 degrees from the vertical. Now a full Method which explains the Objects actions fully, may look like this:

    Private Function ObjctRnsAt37Dgr(ByVal R As Long)
      Dim ax As Double, bx As Double, cx As Double, dx As Double

      1: bx = 2 + 2
      2: bx = bx + 2
      3: bx = bx * bx
      4: bx = bx + 1
      5: ax = Sin(bx)
      6: ax = R.Speed * ax
      7: ax = ax + R.XAxis
      8: ax ==> NextStep(R.Xaxis)
      9: ax = Cos(bx)
      10: ax = R.Speed * ax
      11: ax = ax + R.YAxis
      12: ax ==> NextStep(R.Yaxis)

    End Function

    Notice that this Method finds both the value on the X axis (line 8) and the Y axis (line 12). This is an example of a 'Simultaneous' Method ie a Method that totally solves the problem. It would be much simpler and quicker to find a Method which just solved part of the problem eg

    Private Function ObjctRnsAt37DXA(ByVal R As Long)
      Dim ax As Double, bx As Double, cx As Double, dx As Double

      1: bx = 2 + 2
      2: bx = bx + 2
      3: bx = bx * bx
      4: bx = bx + 1
      5: ax = Sin(bx)
      6: ax = R.Speed * ax
      7: ax = ax + R.XAxis
      8: ax ==> NextStep(R.Xaxis)

    End Function

    This 'Sequential' Method solves only the X axis problem but will be much quicker to find - maybe hours as opposed to days for the 'Simultaneous' solution. You can then go on to the Y axis and it should come up with something like:

    Private Function ObjctRnsAt37DYA(ByVal R As Long)
      Dim ax As Double, bx As Double, cx As Double, dx As Double

      1: bx = 2 + 2
      2: bx = bx + 2
      3: bx = bx * bx
      4: bx = bx + 1
      5: ax = Cos(bx)
      6: ax = R.Speed * ax
      7: ax = ax + R.YAxis
      8: ax ==> NextStep(R.Yaxis)

    End Function

    If you now search for a 'Simultaneous' Method in an Environment which contains both 'ObjctRnsAt37DXA' and 'ObjctRnsAt37DYA', then MOPEKS should come up with this two line Method in no more than a few seconds:

    Private Function ObjctRnsAt37Dgr(ByVal R As Long)
      Dim ax As Double, bx As Double, cx As Double, dx As Double

      1: ObjctRnsAt37DXA R
      2: ObjctRnsAt37DYA R

    End Function

    Back to Top

    15. Tell me about the Breeding Pool.

    The Breeding Pool is a collection of Methods (normally 300) which, as the name suggests, are available for breeding.

    [The fact that there were 300 Spartans at the Battle of Thermopylae is surely just a coincidence - the number in the Breeding Pool was arrived at by rough experimentation. Or perhaps 300 is a number which is big enough to be big but also small enough not to be too big and has some deeper significance. It is also a nice round number.]

    The Methods are held in the Breeding Pool in descending order of Score, so that the best Method found so far is right at the top and the worst is right at the bottom. At each step in Method evaluation, two Methods are chosen randomly from the Breeding Pool and combined together with a certain amount of mutation. This is discussed further in the office - see 'Guide ⇨ Office ⇨ Mutation'

    When a Method is found that has a Score higher than the lowest in the Breeding Pool it is slotted into place and the search continues. You can watch this process taking place on the form Mopeks as you search for Methods (see 'Highest Score in Breeding Pool' and 'Lowest Score in Breeding Pool')

    You can save the Breeding Pool contents at any time by pressing the 'Pool Save' button while MOPEKS is looking for Methods. You should then see something like the screen shot below:

    http://www.mopeks.org/images/form_mopeks_create_class_01_Method_running_pool.gif
    Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    The file is saved here:

    C:\MOPEKS\Factory\Methods\Pool

    and looks like this. If you scroll through it (use your mouse wheel) you should find something like 300 separate Methods.

    Pool Printout at 10.47 am on Monday 17th June 2013

    ******************************************************************************************************************************************************

    Main Statistics Note that 'Page' and 'Method' are different terms for the same thing

    MOPEKS Copy Number   = 2 
    Problem Description   = '01 Square Roots' 
    Time Started   = 3.46 pm on Sunday 16th June 2013 
    Time now   = 10.47 am on Monday 17th June 2013
    Time since start (dec hours)   = 19.015
    Total Pages since start (M)   = 4010.496
    Total Lines of Page Code executed (Bn)   = 374.495042994
    Pages per second (thousands)   = 59
    Lines of Page Code executed per second (M)   = 5.5

    ******************************************************************************************************************************************************
    System Constants

     
    BOOKS_MAX   Max Number of Books per Shelf   = 10000000
    CHAPTERS_MAX   Maximum Number of Chapters per Book   = 50
    PAGES_MAX   Maximum Number of Pages per Chapter   = 5000000
    PROG_LINES_MAX   Maximum Number of Lines per Page   = 32
    CHAPTERS_FROM_HI   Chapters allowed after a high score   = 1
    COPIES_MAX   Maximum number of copies of MOPEKS running   = 64
    EXT_LENGTH   Number of characters in a File Extension   = 4
    GAP_AFTER_CODE_LINE   Gap at end of a line of code   = 12
    ID_LENGTH Length of an ID eg '600-000-098'   = 11
    INSTRUCTIONS_IN_LINE   Max number of Instructions in a Line of code   = 11
    LRM_PER_SIMULATION   Maximum Code Lines Run in a Simulation   = 1000000
    LRM_PER_SK_VISIT   Maximum Code Lines Run in ScorerKernel   = 500
    LRM_PER_TRIALS   Max Code Lines Lines Run in a Set of Trials   = 50000
    METHODS_MAX   Maximum number of Methods to be 'Live'   = 128
    OBJECTS_MAX   Maximum number of Objects to be 'Live'   = 7
    PROPERTIES_MAX   Maximum number of Properties to be 'Live'   = 32
    ENV_PROPERTIES_MAX   Max number of Environment Properties 'Live'   = 32
    PROBLEMS_MAX   Maximum number of Problems permitted   = 99
    SORTED_ASCENDING   Ascending Sort   = 14474460
    SORTED_DESCENDING   Descending Sort   = 11842740
    SHORT_NAME_METHODS   Maximum Length of Method Short Name   = 15
    SHORT_NAME_OBJECTS   Maximum Length of Object Short Name   = 7
    SHORT_NAME_PROPERTIES   Maximum Length of Property Short Name   = 7
    SHORT_NAME_ENVIRONS   Maximum Length of Environment Short Name   = 20
    SIMULATOR_FACTOR   Simulator Factor   = 100
    SIMULATOR_SETUP_COLS   Simulator Setup Columns   = 13
    SIMULATOR_SETUP_ROWS   Simulator Setup Rows   = 9
    STEPS_MAX   Max Steps in Classes 21, 22, 23, 24 and 34   = 100
    TRIALS_MAX   Maximum Trials   = 20


    ******************************************************************************************************************************************************
    ******************************************************************************************************************************************************
    ******************************************************************************************************************************************************
    ******************************************************************************************************************************************************
    ******************************************************************************************************************************************************

    Individual Entries

    Position of this Page in the Pool = 1
    Score of this Page = 107.396848299754
    Average lines of Page Code executed = 46.4
    Book = 3
    Chapter = 2
    Page = 166000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: bx = 2 + ax;
    Line2: ax = bx + R;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 2
    Score of this Page = 107.396848299754
    Average lines of Page Code executed = 46.4
    Book = 3
    Chapter = 1
    Page = 1590000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: cx = ax + ax;
    Line3: bx = ax / 3;
    Line4: ax = bx * 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 3
    Score of this Page = 104.119322023701
    Average lines of Page Code executed = 47.9
    Book = 3
    Chapter = 3
    Page = 117000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: bx = R / ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 4
    Score of this Page = 104.119322023701
    Average lines of Page Code executed = 47.9
    Book = 3
    Chapter = 3
    Page = 158000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: cx = ax + ax;
    Line3: bx = ax / 3;
    Line4: ax = bx * 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 5
    Score of this Page = 95.3306555157168
    Average lines of Page Code executed = 31.7
    Book = 3
    Chapter = 3
    Page = 176000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: bx = R / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 6
    Score of this Page = 92.8355786815408
    Average lines of Page Code executed = 34.7
    Book = 3
    Chapter = 3
    Page = 193000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax * 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 7
    Score of this Page = 92.8355786815408
    Average lines of Page Code executed = 34.7
    Book = 3
    Chapter = 3
    Page = 190000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 * R;
    Line2: ax = ax + 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 8
    Score of this Page = 92.1940453182853
    Average lines of Page Code executed = 36.2
    Book = 3
    Chapter = 3
    Page = 166000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 9
    Score of this Page = 84.8260683774947
    Average lines of Page Code executed = 92
    Book = 3
    Chapter = 3
    Page = 193000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R * R;
    Line2: ax = 3 + ax;
    Line3: bx = ax / 3;
    Line4: ax = bx * 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 10
    Score of this Page = 80.8770489529609
    Average lines of Page Code executed = 41
    Book = 3
    Chapter = 3
    Page = 176000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 2;
    Line2: ax = ax + R;
    Line3: bx = ax / 3;
    Line4: ax = bx * 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 11
    Score of this Page = 78.2686845044607
    Average lines of Page Code executed = 39.5
    Book = 3
    Chapter = 3
    Page = 178000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 3;
    Line2: ax = ax + R;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 12
    Score of this Page = 73.5880988370835
    Average lines of Page Code executed = 52.1
    Book = 3
    Chapter = 3
    Page = 160000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + R;
    Line2: ax = ax + 3;
    Line3: bx = ax / 3;
    Line4: ax = bx + bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 13
    Score of this Page = 73.5880988370835
    Average lines of Page Code executed = 52.1
    Book = 3
    Chapter = 3
    Page = 170000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + R;
    Line2: ax = ax + 3;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 14
    Score of this Page = 73.5880988370835
    Average lines of Page Code executed = 52.1
    Book = 3
    Chapter = 3
    Page = 158000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = R + ax;
    Line3: ax = ax + ax;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 15
    Score of this Page = 73.5880988370834
    Average lines of Page Code executed = 52.1
    Book = 3
    Chapter = 3
    Page = 189000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 16
    Score of this Page = 73.3742288746872
    Average lines of Page Code executed = 50.6
    Book = 3
    Chapter = 3
    Page = 161000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax + ax;
    Line3: ax = ax / 3;
    Line4: ax = ax + ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 17
    Score of this Page = 73.3742288746871
    Average lines of Page Code executed = 50.6
    Book = 3
    Chapter = 3
    Page = 166000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = R + ax;
    Line3: ax = ax + ax;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 18
    Score of this Page = 73.2859435385595
    Average lines of Page Code executed = 24.8
    Book = 3
    Chapter = 3
    Page = 187000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 3;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 19
    Score of this Page = 71.5379446817978
    Average lines of Page Code executed = 87.8
    Book = 3
    Chapter = 3
    Page = 169000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax * ax;
    Line3: bx = ax / 3;
    Line4: ax = bx * 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 20
    Score of this Page = 71.5379446817977
    Average lines of Page Code executed = 87.8
    Book = 3
    Chapter = 3
    Page = 156000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: bx = 1 + R;
    Line2: ax = bx * bx;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 21
    Score of this Page = 69.7592216332342
    Average lines of Page Code executed = 43.4
    Book = 3
    Chapter = 3
    Page = 148000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: bx = ax / 3;
    Line3: bx = ax / 3;
    Line4: ax = bx + bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 22
    Score of this Page = 69.7592216332342
    Average lines of Page Code executed = 43.4
    Book = 3
    Chapter = 3
    Page = 97000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: bx = ax - 3;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 23
    Score of this Page = 69.6501513025719
    Average lines of Page Code executed = 93.8
    Book = 3
    Chapter = 3
    Page = 172000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R * R;
    Line2: ax = ax + 3;
    Line3: ax = ax / 3;
    Line4: ax = ax + ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 24
    Score of this Page = 69.117063174618
    Average lines of Page Code executed = 97.7
    Book = 3
    Chapter = 3
    Page = 184000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 - R;
    Line2: ax = ax * ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 25
    Score of this Page = 68.3781705581024
    Average lines of Page Code executed = 49.4
    Book = 3
    Chapter = 3
    Page = 168000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + 3;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 26
    Score of this Page = 68.3781705581024
    Average lines of Page Code executed = 49.4
    Book = 3
    Chapter = 3
    Page = 185000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + 3;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = bx * 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 27
    Score of this Page = 67.8051077657317
    Average lines of Page Code executed = 57.8
    Book = 3
    Chapter = 3
    Page = 165000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 28
    Score of this Page = 67.8051077657316
    Average lines of Page Code executed = 54.8
    Book = 3
    Chapter = 3
    Page = 150000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * 2;
    Line3: ax = ax + ax;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 29
    Score of this Page = 66.9848000030284
    Average lines of Page Code executed = 22.7
    Book = 3
    Chapter = 3
    Page = 186000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax / 3;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 30
    Score of this Page = 66.4926908146257
    Average lines of Page Code executed = 53.3
    Book = 3
    Chapter = 3
    Page = 169000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax + ax;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 31
    Score of this Page = 66.4926908146257
    Average lines of Page Code executed = 56.3
    Book = 3
    Chapter = 3
    Page = 169000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 2;
    Line2: ax = ax + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 32
    Score of this Page = 66.2510167852377
    Average lines of Page Code executed = 27.2
    Book = 3
    Chapter = 3
    Page = 170000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 33
    Score of this Page = 65.4952995064232
    Average lines of Page Code executed = 51.2
    Book = 3
    Chapter = 3
    Page = 205000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax + R;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 34
    Score of this Page = 65.4952995064231
    Average lines of Page Code executed = 51.2
    Book = 3
    Chapter = 3
    Page = 142000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 2;
    Line2: bx = ax + R;
    Line3: ax = bx * 2;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 35
    Score of this Page = 65.0213958026107
    Average lines of Page Code executed = 23.9
    Book = 3
    Chapter = 3
    Page = 188000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax / 3;
    Line3: ax = ax / 2;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 36
    Score of this Page = 64.4474252945677
    Average lines of Page Code executed = 28.4
    Book = 3
    Chapter = 3
    Page = 207000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: bx = ax / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 37
    Score of this Page = 64.4474252945677
    Average lines of Page Code executed = 25.4
    Book = 3
    Chapter = 3
    Page = 186000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 38
    Score of this Page = 63.997493173086
    Average lines of Page Code executed = 48.5
    Book = 3
    Chapter = 3
    Page = 179000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax + 3;
    Line3: bx = ax / 3;
    Line4: ax = bx + bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 39
    Score of this Page = 63.9974931730859
    Average lines of Page Code executed = 48.5
    Book = 3
    Chapter = 3
    Page = 155000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + 1;
    Line2: ax = ax + R;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 40
    Score of this Page = 61.1589778998365
    Average lines of Page Code executed = 36.8
    Book = 3
    Chapter = 3
    Page = 198000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 41
    Score of this Page = 61.0861652456854
    Average lines of Page Code executed = 50
    Book = 3
    Chapter = 3
    Page = 173000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = 3 + ax;
    Line3: bx = ax / 3;
    Line4: ax = bx + bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 42
    Score of this Page = 61.0861652456853
    Average lines of Page Code executed = 50
    Book = 3
    Chapter = 3
    Page = 167000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = 3 + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 43
    Score of this Page = 59.2493491576528
    Average lines of Page Code executed = 56
    Book = 3
    Chapter = 3
    Page = 194000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * ax;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 44
    Score of this Page = 58.6971389773602
    Average lines of Page Code executed = 48.5
    Book = 3
    Chapter = 3
    Page = 212000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = bx * 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 45
    Score of this Page = 58.6971389773602
    Average lines of Page Code executed = 48.5
    Book = 3
    Chapter = 3
    Page = 160000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax + ax;
    Line3: bx = ax / 3;
    Line4: ax = bx + bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 46
    Score of this Page = 58.6971389773601
    Average lines of Page Code executed = 48.5
    Book = 3
    Chapter = 3
    Page = 146000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 47
    Score of this Page = 58.6971389773601
    Average lines of Page Code executed = 51.5
    Book = 3
    Chapter = 3
    Page = 140000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: bx = 1 + R;
    Line2: ax = bx * 3;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 48
    Score of this Page = 58.4917421058984
    Average lines of Page Code executed = 50
    Book = 3
    Chapter = 3
    Page = 166000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + R;
    Line2: ax = 3 + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 49
    Score of this Page = 58.4917421058984
    Average lines of Page Code executed = 50
    Book = 3
    Chapter = 3
    Page = 160000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 50
    Score of this Page = 58.4917421058983
    Average lines of Page Code executed = 50
    Book = 3
    Chapter = 3
    Page = 168000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = bx * 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 51
    Score of this Page = 58.4917421058983
    Average lines of Page Code executed = 50
    Book = 3
    Chapter = 3
    Page = 186000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + R;
    Line2: ax = ax + 3;
    Line3: bx = ax / 3;
    Line4: ax = bx + bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 52
    Score of this Page = 57.8835733877831
    Average lines of Page Code executed = 98.3
    Book = 3
    Chapter = 3
    Page = 155000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 53
    Score of this Page = 57.8835733877831
    Average lines of Page Code executed = 98.3
    Book = 3
    Chapter = 3
    Page = 184000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * ax;
    Line3: bx = ax / 3;
    Line4: ax = bx + bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 54
    Score of this Page = 56.4377001195858
    Average lines of Page Code executed = 95.3
    Book = 3
    Chapter = 3
    Page = 212000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 3;
    Line4: ax = ax + ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 55
    Score of this Page = 56.4377001195858
    Average lines of Page Code executed = 98.3
    Book = 3
    Chapter = 3
    Page = 179000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 56
    Score of this Page = 56.3630445564225
    Average lines of Page Code executed = 31.1
    Book = 3
    Chapter = 3
    Page = 172000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = 3 + ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 57
    Score of this Page = 56.0791844098746
    Average lines of Page Code executed = 37.7
    Book = 3
    Chapter = 3
    Page = 146000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax / 3;
    Line3: ax = ax / 3;
    Line4: ax = ax + ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 58
    Score of this Page = 56.0791844098746
    Average lines of Page Code executed = 37.7
    Book = 3
    Chapter = 3
    Page = 207000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax / 3;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 59
    Score of this Page = 55.1642254455477
    Average lines of Page Code executed = 53.3
    Book = 3
    Chapter = 3
    Page = 210000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax * ax;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 60
    Score of this Page = 55.1583283143574
    Average lines of Page Code executed = 90.2
    Book = 3
    Chapter = 3
    Page = 179000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 3;
    Line4: ax = ax + ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 61
    Score of this Page = 55.1387526616886
    Average lines of Page Code executed = 52.4
    Book = 3
    Chapter = 3
    Page = 171000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax * ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 62
    Score of this Page = 54.6985101330338
    Average lines of Page Code executed = 45.8
    Book = 3
    Chapter = 3
    Page = 166000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = bx + bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 63
    Score of this Page = 54.6985101330338
    Average lines of Page Code executed = 45.8
    Book = 3
    Chapter = 3
    Page = 189000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 64
    Score of this Page = 54.4818964875701
    Average lines of Page Code executed = 58.4
    Book = 3
    Chapter = 3
    Page = 174000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 65
    Score of this Page = 54.4027582604492
    Average lines of Page Code executed = 50
    Book = 3
    Chapter = 3
    Page = 143000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + ax;
    Line2: ax = 3 + R;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 66
    Score of this Page = 54.4027582604492
    Average lines of Page Code executed = 50
    Book = 3
    Chapter = 3
    Page = 147000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax - bx;
    Line3: ax = ax / 3;
    Line4: ax = ax + ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 67
    Score of this Page = 54.1261831115287
    Average lines of Page Code executed = 41.9
    Book = 3
    Chapter = 3
    Page = 166000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 3;
    Line2: ax = ax + R;
    Line3: ax = ax / 3;
    Line4: ax = ax + ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 68
    Score of this Page = 54.1261831115286
    Average lines of Page Code executed = 44.9
    Book = 3
    Chapter = 3
    Page = 180000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 3;
    Line2: ax = ax + R;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 69
    Score of this Page = 53.9815998614981
    Average lines of Page Code executed = 34.4
    Book = 3
    Chapter = 3
    Page = 208000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * 3;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 70
    Score of this Page = 53.9410890781702
    Average lines of Page Code executed = 29.9
    Book = 3
    Chapter = 3
    Page = 160000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = ax * ax;
    Line2: ax = 3 + R;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 71
    Score of this Page = 53.9242232054863
    Average lines of Page Code executed = 33.8
    Book = 3
    Chapter = 3
    Page = 195000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + R;
    Line2: ax = 3 + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 72
    Score of this Page = 53.9242232054863
    Average lines of Page Code executed = 30.8
    Book = 3
    Chapter = 3
    Page = 200000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 73
    Score of this Page = 53.8296266877504
    Average lines of Page Code executed = 48.5
    Book = 3
    Chapter = 3
    Page = 140000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + 3;
    Line2: ax = 2 + R;
    Line3: bx = ax / 3;
    Line4: ax = bx * 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 74
    Score of this Page = 53.8296266877504
    Average lines of Page Code executed = 48.5
    Book = 3
    Chapter = 3
    Page = 123000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: bx = 3 * 2;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 75
    Score of this Page = 53.6168567710173
    Average lines of Page Code executed = 50
    Book = 3
    Chapter = 3
    Page = 183000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: bx = 2 / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 76
    Score of this Page = 53.5856838262593
    Average lines of Page Code executed = 53
    Book = 3
    Chapter = 3
    Page = 193000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: bx = R / ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 77
    Score of this Page = 53.5774705693125
    Average lines of Page Code executed = 35
    Book = 3
    Chapter = 3
    Page = 187000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax / 3;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 78
    Score of this Page = 53.5774705693125
    Average lines of Page Code executed = 35
    Book = 3
    Chapter = 3
    Page = 214000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax / 3;
    Line3: bx = ax / 3;
    Line4: ax = bx + bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 79
    Score of this Page = 53.5774705693124
    Average lines of Page Code executed = 38
    Book = 3
    Chapter = 3
    Page = 166000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax / 2;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 80
    Score of this Page = 53.2660656375229
    Average lines of Page Code executed = 52.4
    Book = 3
    Chapter = 3
    Page = 176000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax + ax;
    Line3: bx = ax / 3;
    Line4: ax = bx * 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 81
    Score of this Page = 53.2660656375229
    Average lines of Page Code executed = 52.4
    Book = 3
    Chapter = 3
    Page = 141000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 82
    Score of this Page = 53.2440714582983
    Average lines of Page Code executed = 31.4
    Book = 3
    Chapter = 3
    Page = 214000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + R;
    Line2: ax = ax + 3;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 83
    Score of this Page = 53.2440714582983
    Average lines of Page Code executed = 31.4
    Book = 3
    Chapter = 3
    Page = 174000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 84
    Score of this Page = 52.8507958002274
    Average lines of Page Code executed = 51.5
    Book = 3
    Chapter = 3
    Page = 199000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: bx = R / ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 85
    Score of this Page = 52.7926120099867
    Average lines of Page Code executed = 92.6
    Book = 3
    Chapter = 3
    Page = 202000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 86
    Score of this Page = 52.6642197488233
    Average lines of Page Code executed = 52.1
    Book = 3
    Chapter = 3
    Page = 194000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: bx = 2 / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 87
    Score of this Page = 52.3488289862215
    Average lines of Page Code executed = 41.9
    Book = 3
    Chapter = 3
    Page = 163000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 3;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 88
    Score of this Page = 52.3488289862215
    Average lines of Page Code executed = 41.9
    Book = 3
    Chapter = 3
    Page = 165000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 3;
    Line3: ax = ax + ax;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 89
    Score of this Page = 52.081278482076
    Average lines of Page Code executed = 52.7
    Book = 3
    Chapter = 3
    Page = 188000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + 3;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 90
    Score of this Page = 52.0812784820759
    Average lines of Page Code executed = 52.7
    Book = 3
    Chapter = 3
    Page = 153000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax + 3;
    Line3: ax = ax / 3;
    Line4: ax = ax + ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 91
    Score of this Page = 52.0428092865487
    Average lines of Page Code executed = 53.9
    Book = 3
    Chapter = 3
    Page = 187000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * 3;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 92
    Score of this Page = 52.0428092865487
    Average lines of Page Code executed = 50.9
    Book = 3
    Chapter = 3
    Page = 208000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax + ax;
    Line3: bx = ax / 3;
    Line4: ax = bx + bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 93
    Score of this Page = 51.7525257356164
    Average lines of Page Code executed = 43.4
    Book = 3
    Chapter = 3
    Page = 178000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax / 2;
    Line3: ax = ax + ax;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 94
    Score of this Page = 51.7525257356164
    Average lines of Page Code executed = 40.4
    Book = 3
    Chapter = 3
    Page = 194000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 2;
    Line2: ax = ax / 3;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 95
    Score of this Page = 51.4751354912073
    Average lines of Page Code executed = 29.3
    Book = 3
    Chapter = 3
    Page = 160000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 2;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 96
    Score of this Page = 51.0083728130531
    Average lines of Page Code executed = 95.6
    Book = 3
    Chapter = 3
    Page = 182000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 97
    Score of this Page = 50.7662789668571
    Average lines of Page Code executed = 54.2
    Book = 3
    Chapter = 3
    Page = 156000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = 3 + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 98
    Score of this Page = 50.7662789668571
    Average lines of Page Code executed = 51.2
    Book = 3
    Chapter = 3
    Page = 151000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax + 3;
    Line3: ax = ax / 3;
    Line4: ax = ax + ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 99
    Score of this Page = 50.1623755731041
    Average lines of Page Code executed = 57.5
    Book = 3
    Chapter = 3
    Page = 167000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 100
    Score of this Page = 49.458751549988
    Average lines of Page Code executed = 55.1
    Book = 3
    Chapter = 3
    Page = 185000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * ax;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 101
    Score of this Page = 49.2822744516934
    Average lines of Page Code executed = 21.8
    Book = 3
    Chapter = 3
    Page = 210000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax / 3;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 102
    Score of this Page = 49.1037430477273
    Average lines of Page Code executed = 52.1
    Book = 3
    Chapter = 3
    Page = 152000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + 3;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = bx * 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 103
    Score of this Page = 49.1037430477273
    Average lines of Page Code executed = 52.1
    Book = 3
    Chapter = 3
    Page = 150000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = 3 + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 104
    Score of this Page = 49.0576923182502
    Average lines of Page Code executed = 50.6
    Book = 3
    Chapter = 3
    Page = 211000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: bx = 1 / ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 105
    Score of this Page = 48.9763472717967
    Average lines of Page Code executed = 47.6
    Book = 3
    Chapter = 3
    Page = 177000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: bx = 1 / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 106
    Score of this Page = 48.8762476798868
    Average lines of Page Code executed = 20
    Book = 3
    Chapter = 3
    Page = 140000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + 3;
    Line2: ax = R + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 107
    Score of this Page = 48.6385166810183
    Average lines of Page Code executed = 46.1
    Book = 3
    Chapter = 3
    Page = 132000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax - bx;
    Line3: ax = ax + ax;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 108
    Score of this Page = 48.6385166810183
    Average lines of Page Code executed = 49.1
    Book = 3
    Chapter = 3
    Page = 131000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + R;
    Line2: ax = 1 + R;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 109
    Score of this Page = 48.6385166810183
    Average lines of Page Code executed = 46.1
    Book = 3
    Chapter = 3
    Page = 172000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax - 2;
    Line3: ax = ax / 3;
    Line4: ax = ax + ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 110
    Score of this Page = 48.5882638125389
    Average lines of Page Code executed = 47.6
    Book = 3
    Chapter = 3
    Page = 217000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 / 2;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 111
    Score of this Page = 48.5882638125389
    Average lines of Page Code executed = 47.6
    Book = 3
    Chapter = 3
    Page = 214000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: bx = R / 3;
    Line2: ax = R + 1;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 112
    Score of this Page = 48.5431004690611
    Average lines of Page Code executed = 20
    Book = 3
    Chapter = 3
    Page = 146000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + 1;
    Line2: ax = ax + R;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 113
    Score of this Page = 47.7478538064405
    Average lines of Page Code executed = 30.5
    Book = 3
    Chapter = 3
    Page = 199000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = 2 + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 114
    Score of this Page = 47.5830037988459
    Average lines of Page Code executed = 40.4
    Book = 3
    Chapter = 3
    Page = 187000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax / 2;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 115
    Score of this Page = 47.5213541252528
    Average lines of Page Code executed = 18.5
    Book = 3
    Chapter = 3
    Page = 142000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 / 2;
    Line2: ax = R + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 116
    Score of this Page = 47.1310266135662
    Average lines of Page Code executed = 27.5
    Book = 3
    Chapter = 3
    Page = 185000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: bx = 2 / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 117
    Score of this Page = 47.1310266135662
    Average lines of Page Code executed = 27.5
    Book = 3
    Chapter = 3
    Page = 207000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 3;
    Line2: ax = ax + R;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 118
    Score of this Page = 46.847044217391
    Average lines of Page Code executed = 38.9
    Book = 3
    Chapter = 3
    Page = 189000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 3;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 119
    Score of this Page = 46.8331616347884
    Average lines of Page Code executed = 20.6
    Book = 3
    Chapter = 3
    Page = 184000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = 3 + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 120
    Score of this Page = 46.3380281106047
    Average lines of Page Code executed = 29
    Book = 3
    Chapter = 3
    Page = 164000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: cx = 2 - 3;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 121
    Score of this Page = 45.513542822183
    Average lines of Page Code executed = 29
    Book = 3
    Chapter = 3
    Page = 188000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: bx = 1 / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 122
    Score of this Page = 45.2411980861843
    Average lines of Page Code executed = 30.5
    Book = 3
    Chapter = 3
    Page = 215000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 123
    Score of this Page = 45.2411980861843
    Average lines of Page Code executed = 30.5
    Book = 3
    Chapter = 3
    Page = 192000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 124
    Score of this Page = 44.8895554653681
    Average lines of Page Code executed = 32.6
    Book = 3
    Chapter = 3
    Page = 177000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = 3 + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 125
    Score of this Page = 44.6327081254202
    Average lines of Page Code executed = 19.1
    Book = 3
    Chapter = 3
    Page = 178000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = cx + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 126
    Score of this Page = 44.2511108398725
    Average lines of Page Code executed = 30.5
    Book = 3
    Chapter = 3
    Page = 169000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: bx = 2 / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 127
    Score of this Page = 43.537451140352
    Average lines of Page Code executed = 32.3
    Book = 3
    Chapter = 3
    Page = 202000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = R + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 128
    Score of this Page = 43.537451140352
    Average lines of Page Code executed = 26.3
    Book = 3
    Chapter = 3
    Page = 140000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = bx + R;
    Line2: ax = 1 + R;
    Line3: ax = ax / 2;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 129
    Score of this Page = 43.2035798878814
    Average lines of Page Code executed = 17.3
    Book = 3
    Chapter = 3
    Page = 193000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 2;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 130
    Score of this Page = 43.1507457108507
    Average lines of Page Code executed = 30.8
    Book = 3
    Chapter = 3
    Page = 148000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = cx + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 131
    Score of this Page = 42.9065621492982
    Average lines of Page Code executed = 30.8
    Book = 3
    Chapter = 3
    Page = 179000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = R + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 132
    Score of this Page = 42.7090103454791
    Average lines of Page Code executed = 58.4
    Book = 3
    Chapter = 3
    Page = 214000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * ax;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 133
    Score of this Page = 42.6110162222018
    Average lines of Page Code executed = 19.7
    Book = 3
    Chapter = 3
    Page = 167000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 2;
    Line2: bx = ax + R;
    Line3: ax = bx * 1;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 134
    Score of this Page = 42.3000290888266
    Average lines of Page Code executed = 20
    Book = 3
    Chapter = 3
    Page = 212000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = 3 + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 135
    Score of this Page = 41.5502188549634
    Average lines of Page Code executed = 24.8
    Book = 3
    Chapter = 3
    Page = 172000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax / 3;
    Line3: bx = ax / 2;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 136
    Score of this Page = 41.3552642704618
    Average lines of Page Code executed = 31.4
    Book = 3
    Chapter = 3
    Page = 200000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = 3 + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 137
    Score of this Page = 41.3137469870547
    Average lines of Page Code executed = 23.3
    Book = 3
    Chapter = 3
    Page = 159000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax / 3;
    Line3: ax = ax / 2;
    Line4: dx = ax * 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 138
    Score of this Page = 41.2024290606911
    Average lines of Page Code executed = 17.6
    Book = 3
    Chapter = 3
    Page = 191000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 2;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(ax >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 139
    Score of this Page = 41.144546624557
    Average lines of Page Code executed = 30.8
    Book = 3
    Chapter = 3
    Page = 214000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax * 3;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 140
    Score of this Page = 41.106608520992
    Average lines of Page Code executed = 29.3
    Book = 3
    Chapter = 3
    Page = 208000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 141
    Score of this Page = 40.4798610053714
    Average lines of Page Code executed = 16.1
    Book = 3
    Chapter = 3
    Page = 163000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax / 2;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(ax >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 142
    Score of this Page = 40.4726053367485
    Average lines of Page Code executed = 18.5
    Book = 3
    Chapter = 3
    Page = 155000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: dx = ax / 3;
    Line2: ax = 2 + R;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 143
    Score of this Page = 40.4299753451575
    Average lines of Page Code executed = 28.7
    Book = 3
    Chapter = 3
    Page = 151000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: bx = 2 / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 144
    Score of this Page = 40.4299753451575
    Average lines of Page Code executed = 25.7
    Book = 3
    Chapter = 3
    Page = 152000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 3;
    Line2: ax = ax + R;
    Line3: bx = ax / 2;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 145
    Score of this Page = 39.8408519401021
    Average lines of Page Code executed = 32.9
    Book = 3
    Chapter = 3
    Page = 170000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax * 3;
    Line3: bx = ax / 2;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 146
    Score of this Page = 39.8408519401021
    Average lines of Page Code executed = 32.9
    Book = 3
    Chapter = 3
    Page = 208000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 * R;
    Line2: ax = ax + 3;
    Line3: bx = ax / 2;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 147
    Score of this Page = 39.6224976965928
    Average lines of Page Code executed = 30.2
    Book = 3
    Chapter = 3
    Page = 170000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: bx = 1 / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 148
    Score of this Page = 39.6224976965928
    Average lines of Page Code executed = 19.8
    Book = 3
    Chapter = 3
    Page = 204000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 3;
    Line2: ax = ax + ax;
    Line3: ax = ax + R;
    Line4: ax = ax / 2;
    Line5: if(ax >= R / ax)goto line4;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 149
    Score of this Page = 39.5900919667526
    Average lines of Page Code executed = 30.2
    Book = 3
    Chapter = 3
    Page = 171000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = 3 + ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 150
    Score of this Page = 38.7398762104494
    Average lines of Page Code executed = 51.8
    Book = 3
    Chapter = 3
    Page = 198000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 151
    Score of this Page = 38.4124387205539
    Average lines of Page Code executed = 54.8
    Book = 3
    Chapter = 3
    Page = 206000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 152
    Score of this Page = 37.2920111308096
    Average lines of Page Code executed = 21.2
    Book = 3
    Chapter = 3
    Page = 201000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 153
    Score of this Page = 37.2192966214006
    Average lines of Page Code executed = 16
    Book = 3
    Chapter = 3
    Page = 172000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax + R;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = ax + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 154
    Score of this Page = 36.8008284252107
    Average lines of Page Code executed = 31.7
    Book = 3
    Chapter = 3
    Page = 168000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + 2;
    Line2: ax = ax + R;
    Line3: bx = ax / 2;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 155
    Score of this Page = 36.580872045493
    Average lines of Page Code executed = 12.2
    Book = 3
    Chapter = 3
    Page = 157000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: cx = 3 + 1;
    Line2: ax = 1 + R;
    Line3: ax = ax / 2;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 156
    Score of this Page = 36.1034313266134
    Average lines of Page Code executed = 27.2
    Book = 3
    Chapter = 3
    Page = 217000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = ax + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 157
    Score of this Page = 35.8234354962571
    Average lines of Page Code executed = 30.8
    Book = 3
    Chapter = 3
    Page = 205000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: bx = R / ax;
    Line3: ax = bx + ax;
    Line4: ax = ax / 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 158
    Score of this Page = 35.7419464449897
    Average lines of Page Code executed = 17
    Book = 3
    Chapter = 3
    Page = 208000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 2;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 159
    Score of this Page = 35.6488346989945
    Average lines of Page Code executed = 20.3
    Book = 3
    Chapter = 3
    Page = 218000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = R + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 160
    Score of this Page = 35.6488346989945
    Average lines of Page Code executed = 20.3
    Book = 3
    Chapter = 3
    Page = 159000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 161
    Score of this Page = 35.3005684002514
    Average lines of Page Code executed = 16.1
    Book = 3
    Chapter = 3
    Page = 198000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: bx = ax / 2;
    Line3: ax = bx / 2;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 162
    Score of this Page = 35.2695508260569
    Average lines of Page Code executed = 16.8
    Book = 3
    Chapter = 3
    Page = 162000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = ax + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 163
    Score of this Page = 35.0807904775511
    Average lines of Page Code executed = 19.4
    Book = 3
    Chapter = 3
    Page = 150000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 3;
    Line2: bx = 2 + 3;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 164
    Score of this Page = 35.0112178405416
    Average lines of Page Code executed = 59
    Book = 3
    Chapter = 3
    Page = 144000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax + bx;
    Line4: ax = ax / 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 165
    Score of this Page = 34.9461614115176
    Average lines of Page Code executed = 21.8
    Book = 3
    Chapter = 3
    Page = 164000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 166
    Score of this Page = 34.8899740340569
    Average lines of Page Code executed = 31.1
    Book = 3
    Chapter = 3
    Page = 208000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: bx = R / ax;
    Line3: ax = ax / 2;
    Line4: ax = bx + ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 167
    Score of this Page = 34.8873816498393
    Average lines of Page Code executed = 20.9
    Book = 3
    Chapter = 3
    Page = 156000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + 3;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 168
    Score of this Page = 34.8674058220573
    Average lines of Page Code executed = 32.9
    Book = 3
    Chapter = 3
    Page = 219000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: bx = R / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 169
    Score of this Page = 34.8334099267538
    Average lines of Page Code executed = 18.2
    Book = 3
    Chapter = 3
    Page = 208000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = ax / 2;
    Line2: ax = 2 + R;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 170
    Score of this Page = 34.7969268460994
    Average lines of Page Code executed = 15.8
    Book = 3
    Chapter = 3
    Page = 161000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = ax + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 171
    Score of this Page = 34.4602380393003
    Average lines of Page Code executed = 23
    Book = 3
    Chapter = 3
    Page = 183000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * 3;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 172
    Score of this Page = 34.4602380393003
    Average lines of Page Code executed = 17
    Book = 3
    Chapter = 3
    Page = 164000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 3;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 173
    Score of this Page = 34.4182618024266
    Average lines of Page Code executed = 28.7
    Book = 3
    Chapter = 3
    Page = 188000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = R + ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 174
    Score of this Page = 34.4182618024266
    Average lines of Page Code executed = 25.7
    Book = 3
    Chapter = 3
    Page = 164000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: bx = bx / 3;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 175
    Score of this Page = 34.1747435255072
    Average lines of Page Code executed = 30.2
    Book = 3
    Chapter = 3
    Page = 158000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 2;
    Line2: ax = ax + ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 176
    Score of this Page = 34.1444263684183
    Average lines of Page Code executed = 18.5
    Book = 3
    Chapter = 3
    Page = 151000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: bx = ax + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 177
    Score of this Page = 34.0234714937971
    Average lines of Page Code executed = 27.2
    Book = 3
    Chapter = 3
    Page = 185000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = R + ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 178
    Score of this Page = 33.9713331420349
    Average lines of Page Code executed = 17.9
    Book = 3
    Chapter = 3
    Page = 149000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: bx = ax / 3;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 179
    Score of this Page = 33.5963585719012
    Average lines of Page Code executed = 32.3
    Book = 3
    Chapter = 3
    Page = 162000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: bx = 3 + 3;
    Line2: ax = bx + R;
    Line3: bx = ax / 2;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 180
    Score of this Page = 33.3633126435179
    Average lines of Page Code executed = 20.6
    Book = 3
    Chapter = 3
    Page = 163000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 181
    Score of this Page = 33.3309466074026
    Average lines of Page Code executed = 34.7
    Book = 3
    Chapter = 3
    Page = 169000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * 3;
    Line3: bx = ax / 2;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 182
    Score of this Page = 33.2048455633151
    Average lines of Page Code executed = 28.7
    Book = 3
    Chapter = 3
    Page = 218000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = 3 + ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 183
    Score of this Page = 33.0624857504204
    Average lines of Page Code executed = 57.2
    Book = 3
    Chapter = 3
    Page = 207000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 - R;
    Line2: ax = ax * ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 184
    Score of this Page = 32.8465136279603
    Average lines of Page Code executed = 30.8
    Book = 3
    Chapter = 3
    Page = 129000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: if(ax < bx + R)goto Out;
    Line3: bx = ax / 2;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 185
    Score of this Page = 32.71052991263
    Average lines of Page Code executed = 16.4
    Book = 3
    Chapter = 3
    Page = 189000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = ax + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 186
    Score of this Page = 32.5978812299457
    Average lines of Page Code executed = 35.3
    Book = 3
    Chapter = 3
    Page = 167000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + R;
    Line2: ax = ax + 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 187
    Score of this Page = 32.5978812299457
    Average lines of Page Code executed = 23.2
    Book = 3
    Chapter = 3
    Page = 177000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = R + ax;
    Line3: ax = ax / 2;
    Line4: if(ax >= R / ax)goto line3;
    Line5: if(bx >= R / ax)goto Out;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 188
    Score of this Page = 32.5756119230233
    Average lines of Page Code executed = 57.2
    Book = 3
    Chapter = 3
    Page = 217000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 - R;
    Line2: ax = ax * ax;
    Line3: bx = ax / 2;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 189
    Score of this Page = 32.4276111176509
    Average lines of Page Code executed = 35.6
    Book = 3
    Chapter = 3
    Page = 180000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * 3;
    Line3: bx = ax / 2;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 190
    Score of this Page = 32.2863552508674
    Average lines of Page Code executed = 26.6
    Book = 3
    Chapter = 3
    Page = 209000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = ax + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 191
    Score of this Page = 32.2086822096333
    Average lines of Page Code executed = 36.2
    Book = 3
    Chapter = 3
    Page = 188000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 192
    Score of this Page = 31.4001163826263
    Average lines of Page Code executed = 14.9
    Book = 3
    Chapter = 3
    Page = 219000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax / 3;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 193
    Score of this Page = 31.1942974274808
    Average lines of Page Code executed = 21.8
    Book = 3
    Chapter = 3
    Page = 213000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: bx = R / ax;
    Line3: ax = ax / 2;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = bx + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 194
    Score of this Page = 30.9114867228372
    Average lines of Page Code executed = 17.3
    Book = 3
    Chapter = 3
    Page = 161000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 3;
    Line2: ax = ax + R;
    Line3: bx = ax / 2;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 195
    Score of this Page = 30.8031441896957
    Average lines of Page Code executed = 23.3
    Book = 3
    Chapter = 3
    Page = 210000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * 3;
    Line3: ax = ax / 3;
    Line4: ax = ax + bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 196
    Score of this Page = 30.8031441896957
    Average lines of Page Code executed = 17.3
    Book = 3
    Chapter = 3
    Page = 143000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 3;
    Line3: ax = ax + bx;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 197
    Score of this Page = 30.7978572591168
    Average lines of Page Code executed = 17.9
    Book = 3
    Chapter = 3
    Page = 137000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 2;
    Line2: ax = ax + R;
    Line3: bx = ax / 3;
    Line4: ax = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 198
    Score of this Page = 30.6259681878539
    Average lines of Page Code executed = 29.6
    Book = 3
    Chapter = 3
    Page = 158000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = R + ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 199
    Score of this Page = 30.6027164163519
    Average lines of Page Code executed = 57.5
    Book = 3
    Chapter = 3
    Page = 177000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 200
    Score of this Page = 30.5505568801716
    Average lines of Page Code executed = 18.8
    Book = 3
    Chapter = 3
    Page = 134000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + R;
    Line2: ax = 1 + R;
    Line3: ax = ax / 3;
    Line4: bx = ax - ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 201
    Score of this Page = 30.5505568801716
    Average lines of Page Code executed = 18.8
    Book = 3
    Chapter = 3
    Page = 208000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax - 2;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 202
    Score of this Page = 30.5319746284043
    Average lines of Page Code executed = 17.6
    Book = 3
    Chapter = 3
    Page = 202000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax / 2;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(ax >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 203
    Score of this Page = 30.529049974868
    Average lines of Page Code executed = 19.4
    Book = 3
    Chapter = 3
    Page = 183000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 / 2;
    Line2: ax = R + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 204
    Score of this Page = 30.499360958665
    Average lines of Page Code executed = 54.5
    Book = 3
    Chapter = 3
    Page = 185000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax * ax;
    Line3: ax = ax / 2;
    Line4: if(bx >= ax / 2)goto Out;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 205
    Score of this Page = 30.3263949651948
    Average lines of Page Code executed = 30.8
    Book = 3
    Chapter = 3
    Page = 143000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: bx = R / ax;
    Line3: ax = ax - bx;
    Line4: ax = ax / 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 206
    Score of this Page = 29.8213688324885
    Average lines of Page Code executed = 22.1
    Book = 3
    Chapter = 3
    Page = 186000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: bx = ax + R;
    Line3: ax = bx * 1;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 207
    Score of this Page = 29.8213688324885
    Average lines of Page Code executed = 19.1
    Book = 3
    Chapter = 3
    Page = 157000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 208
    Score of this Page = 29.7581637476638
    Average lines of Page Code executed = 53.9
    Book = 3
    Chapter = 3
    Page = 214000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R * R;
    Line2: ax = 3 + ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 209
    Score of this Page = 29.5369258949889
    Average lines of Page Code executed = 26.3
    Book = 3
    Chapter = 3
    Page = 157000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 3;
    Line3: ax = ax / 2;
    Line4: bx = R - ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 210
    Score of this Page = 29.4241388960515
    Average lines of Page Code executed = 16.1
    Book = 3
    Chapter = 3
    Page = 199000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 3;
    Line2: ax = ax + R;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 211
    Score of this Page = 29.3640272689867
    Average lines of Page Code executed = 37.1
    Book = 3
    Chapter = 3
    Page = 172000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 212
    Score of this Page = 29.3640272689867
    Average lines of Page Code executed = 40.1
    Book = 3
    Chapter = 3
    Page = 207000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: bx = ax / 2;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 213
    Score of this Page = 29.3514848926465
    Average lines of Page Code executed = 20.6
    Book = 3
    Chapter = 3
    Page = 164000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 214
    Score of this Page = 29.1877652249802
    Average lines of Page Code executed = 56.3
    Book = 3
    Chapter = 3
    Page = 166000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 215
    Score of this Page = 28.9017558297169
    Average lines of Page Code executed = 14
    Book = 3
    Chapter = 3
    Page = 207000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax + 3;
    Line3: ax = ax / 2;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 216
    Score of this Page = 28.8630905653152
    Average lines of Page Code executed = 54.5
    Book = 3
    Chapter = 3
    Page = 216000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 217
    Score of this Page = 28.7535342383216
    Average lines of Page Code executed = 21.2
    Book = 3
    Chapter = 3
    Page = 179000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = R + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 218
    Score of this Page = 28.6443970359799
    Average lines of Page Code executed = 29
    Book = 3
    Chapter = 3
    Page = 201000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax * ax;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line4;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 219
    Score of this Page = 28.6188895097058
    Average lines of Page Code executed = 31.7
    Book = 3
    Chapter = 3
    Page = 120000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: bx = 1 + R;
    Line2: ax = bx + 3;
    Line3: bx = ax / 2;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 220
    Score of this Page = 28.3251914716672
    Average lines of Page Code executed = 30.2
    Book = 3
    Chapter = 3
    Page = 169000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = R + ax;
    Line3: bx = ax / 2;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 221
    Score of this Page = 28.3251914716672
    Average lines of Page Code executed = 27.2
    Book = 3
    Chapter = 3
    Page = 197000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 2;
    Line2: ax = ax + R;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 222
    Score of this Page = 28.312240246221
    Average lines of Page Code executed = 15.5
    Book = 3
    Chapter = 3
    Page = 190000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: bx = ax / 3;
    Line3: ax = bx / 2;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 223
    Score of this Page = 28.2730970770787
    Average lines of Page Code executed = 33.2
    Book = 3
    Chapter = 3
    Page = 141000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = cx + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 224
    Score of this Page = 28.1905911902429
    Average lines of Page Code executed = 28.7
    Book = 3
    Chapter = 3
    Page = 124000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: bx = 1 / 3;
    Line3: bx = ax / 2;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 225
    Score of this Page = 28.1905911902429
    Average lines of Page Code executed = 31.7
    Book = 3
    Chapter = 3
    Page = 137000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: bx = 2 + R;
    Line2: ax = bx + R;
    Line3: bx = ax / 2;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 226
    Score of this Page = 27.8933099243592
    Average lines of Page Code executed = 20.9
    Book = 3
    Chapter = 3
    Page = 146000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax + 3;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 227
    Score of this Page = 27.842096982737
    Average lines of Page Code executed = 21.5
    Book = 3
    Chapter = 3
    Page = 154000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = 3 + ax;
    Line3: ax = ax - bx;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 228
    Score of this Page = 27.6548435963644
    Average lines of Page Code executed = 11.4
    Book = 3
    Chapter = 3
    Page = 185000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 3;
    Line2: ax = ax + R;
    Line3: ax = ax / 3;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line4;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 229
    Score of this Page = 27.3888004393015
    Average lines of Page Code executed = 38.3
    Book = 3
    Chapter = 3
    Page = 167000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 230
    Score of this Page = 27.3131757004216
    Average lines of Page Code executed = 11.4
    Book = 3
    Chapter = 3
    Page = 161000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 3;
    Line3: ax = ax / 3;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line4;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 231
    Score of this Page = 27.2671685999182
    Average lines of Page Code executed = 21.8
    Book = 3
    Chapter = 3
    Page = 193000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * 3;
    Line3: ax = ax / 3;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 232
    Score of this Page = 27.2120386909734
    Average lines of Page Code executed = 20
    Book = 3
    Chapter = 3
    Page = 147000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: cx = ax + ax;
    Line3: bx = ax / 3;
    Line4: ax = bx + dx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 233
    Score of this Page = 27.1234863776904
    Average lines of Page Code executed = 16
    Book = 3
    Chapter = 3
    Page = 212000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax + R;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line4;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 234
    Score of this Page = 27.0004327951821
    Average lines of Page Code executed = 25.2
    Book = 3
    Chapter = 3
    Page = 155000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: bx = ax + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 235
    Score of this Page = 26.7371870504268
    Average lines of Page Code executed = 39.5
    Book = 3
    Chapter = 3
    Page = 180000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 236
    Score of this Page = 26.5644121976338
    Average lines of Page Code executed = 27.8
    Book = 3
    Chapter = 3
    Page = 207000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax * ax;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line4;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 237
    Score of this Page = 26.5031583219388
    Average lines of Page Code executed = 41
    Book = 3
    Chapter = 3
    Page = 159000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 238
    Score of this Page = 26.4876979825913
    Average lines of Page Code executed = 20
    Book = 3
    Chapter = 3
    Page = 187000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + R;
    Line2: ax = ax + 3;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 239
    Score of this Page = 26.4459093592443
    Average lines of Page Code executed = 14.6
    Book = 3
    Chapter = 3
    Page = 171000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 240
    Score of this Page = 26.3603694923841
    Average lines of Page Code executed = 11.8
    Book = 3
    Chapter = 3
    Page = 216000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 2;
    Line2: ax = ax + R;
    Line3: ax = ax / 3;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line4;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 241
    Score of this Page = 26.3359015037921
    Average lines of Page Code executed = 36.8
    Book = 3
    Chapter = 3
    Page = 179000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R * R;
    Line2: ax = 3 + ax;
    Line3: bx = bx / 2;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 242
    Score of this Page = 26.1236792311228
    Average lines of Page Code executed = 18.5
    Book = 3
    Chapter = 3
    Page = 198000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax + R;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 243
    Score of this Page = 25.8756854703941
    Average lines of Page Code executed = 23.2
    Book = 3
    Chapter = 3
    Page = 169000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = R + ax;
    Line3: ax = ax / 2;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = ax + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 244
    Score of this Page = 25.8756854703941
    Average lines of Page Code executed = 23.2
    Book = 3
    Chapter = 3
    Page = 181000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + R;
    Line2: ax = 3 + ax;
    Line3: ax = ax / 2;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = ax + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 245
    Score of this Page = 25.8392883262204
    Average lines of Page Code executed = 14.2
    Book = 3
    Chapter = 3
    Page = 159000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: bx = 2 / 3;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = ax + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 246
    Score of this Page = 25.7981123874742
    Average lines of Page Code executed = 37.1
    Book = 3
    Chapter = 3
    Page = 200000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 247
    Score of this Page = 25.7351910865662
    Average lines of Page Code executed = 47.6
    Book = 3
    Chapter = 3
    Page = 214000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: bx = R / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 248
    Score of this Page = 25.7272380191068
    Average lines of Page Code executed = 15
    Book = 3
    Chapter = 3
    Page = 170000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + R;
    Line2: ax = 1 + ax;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = ax - bx;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 249
    Score of this Page = 25.6925216003904
    Average lines of Page Code executed = 35.3
    Book = 3
    Chapter = 3
    Page = 205000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 - R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 250
    Score of this Page = 25.5920531537348
    Average lines of Page Code executed = 21.5
    Book = 3
    Chapter = 3
    Page = 141000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + R;
    Line2: ax = ax + 3;
    Line3: ax = ax / 3;
    Line4: bx = ax - ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 251
    Score of this Page = 25.5684262510493
    Average lines of Page Code executed = 27.8
    Book = 3
    Chapter = 3
    Page = 163000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: bx = ax / 2;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 252
    Score of this Page = 25.4857704468907
    Average lines of Page Code executed = 15.2
    Book = 3
    Chapter = 3
    Page = 174000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: if(ax < R * ax)goto line5;
    Line2: ax = 3 + R;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = ax + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 253
    Score of this Page = 25.445220905537
    Average lines of Page Code executed = 13.7
    Book = 3
    Chapter = 3
    Page = 148000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax + 3;
    Line3: ax = ax / 3;
    Line4: ax = ax / 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 254
    Score of this Page = 25.3556162196615
    Average lines of Page Code executed = 29
    Book = 3
    Chapter = 3
    Page = 188000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = 3 + ax;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 255
    Score of this Page = 25.3388366857835
    Average lines of Page Code executed = 13.2
    Book = 3
    Chapter = 3
    Page = 197000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 3;
    Line2: ax = ax + R;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = ax + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 256
    Score of this Page = 24.9370623709818
    Average lines of Page Code executed = 97.4
    Book = 3
    Chapter = 3
    Page = 201000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 257
    Score of this Page = 24.8882341508697
    Average lines of Page Code executed = 18.8
    Book = 3
    Chapter = 3
    Page = 143000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 2;
    Line3: ax = ax / 3;
    Line4: bx = R - ax;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 258
    Score of this Page = 24.8457002765573
    Average lines of Page Code executed = 50
    Book = 3
    Chapter = 3
    Page = 162000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 259
    Score of this Page = 24.8457002765573
    Average lines of Page Code executed = 50
    Book = 3
    Chapter = 3
    Page = 196000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: bx = 1 + R;
    Line2: ax = bx * 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 260
    Score of this Page = 24.8090772304243
    Average lines of Page Code executed = 51.5
    Book = 3
    Chapter = 3
    Page = 180000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = R + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 261
    Score of this Page = 24.8090772304243
    Average lines of Page Code executed = 51.5
    Book = 3
    Chapter = 3
    Page = 207000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + R;
    Line2: ax = ax + 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 262
    Score of this Page = 24.7620901191545
    Average lines of Page Code executed = 18.2
    Book = 3
    Chapter = 3
    Page = 181000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax / 2;
    Line3: bx = ax / 3;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 263
    Score of this Page = 24.7492771731354
    Average lines of Page Code executed = 26.6
    Book = 3
    Chapter = 3
    Page = 186000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: bx = ax / 3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 264
    Score of this Page = 24.709820937889
    Average lines of Page Code executed = 29.3
    Book = 3
    Chapter = 3
    Page = 198000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax + 3;
    Line3: ax = ax / 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 265
    Score of this Page = 24.6351248470952
    Average lines of Page Code executed = 13.2
    Book = 3
    Chapter = 3
    Page = 173000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax / 2;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: bx = R - ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 266
    Score of this Page = 24.5249433371409
    Average lines of Page Code executed = 50.9
    Book = 3
    Chapter = 3
    Page = 122000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: bx = bx - R;
    Line2: ax = 3 + 2;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 267
    Score of this Page = 24.4819224864277
    Average lines of Page Code executed = 15
    Book = 3
    Chapter = 3
    Page = 166000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: cx = ax + ax;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = ax + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 268
    Score of this Page = 24.403445478864
    Average lines of Page Code executed = 14
    Book = 3
    Chapter = 3
    Page = 174000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + 3;
    Line2: ax = ax + R;
    Line3: ax = ax / 2;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 269
    Score of this Page = 23.746623681222
    Average lines of Page Code executed = 20.9
    Book = 3
    Chapter = 3
    Page = 210000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = R + 1;
    Line2: ax = ax / 3;
    Line3: ax = ax / 2;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 270
    Score of this Page = 23.6373713853107
    Average lines of Page Code executed = 51.5
    Book = 3
    Chapter = 3
    Page = 179000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = 3 + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 271
    Score of this Page = 23.4667913854586
    Average lines of Page Code executed = 22.1
    Book = 3
    Chapter = 3
    Page = 157000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax + ax;
    Line3: bx = ax / 3;
    Line4: ax = bx * 1;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 272
    Score of this Page = 23.4019072139563
    Average lines of Page Code executed = 37.4
    Book = 3
    Chapter = 3
    Page = 206000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 - R;
    Line2: ax = ax * ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 273
    Score of this Page = 23.279843539308
    Average lines of Page Code executed = 14.8
    Book = 3
    Chapter = 3
    Page = 172000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 3;
    Line2: ax = ax + R;
    Line3: ax = ax + ax;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line4;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 274
    Score of this Page = 23.2638758395071
    Average lines of Page Code executed = 27.8
    Book = 3
    Chapter = 3
    Page = 203000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 2;
    Line2: ax = ax + R;
    Line3: ax = ax / 2;
    Line4: bx = ax * 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 275
    Score of this Page = 23.238798244795
    Average lines of Page Code executed = 22.7
    Book = 3
    Chapter = 3
    Page = 153000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax / 3;
    Line4: ax = ax + bx;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 276
    Score of this Page = 23.2285628303601
    Average lines of Page Code executed = 30.8
    Book = 3
    Chapter = 3
    Page = 211000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = ax * ax;
    Line2: ax = 2 + R;
    Line3: ax = ax / 2;
    Line4: bx = ax * 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 277
    Score of this Page = 23.2084271014101
    Average lines of Page Code executed = 13.8
    Book = 3
    Chapter = 3
    Page = 219000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax / 3;
    Line3: ax = ax + R;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line4;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 278
    Score of this Page = 23.1862996668278
    Average lines of Page Code executed = 45.8
    Book = 3
    Chapter = 3
    Page = 191000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: bx = 2 / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 279
    Score of this Page = 23.1729498070291
    Average lines of Page Code executed = 29.3
    Book = 3
    Chapter = 3
    Page = 152000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = bx + R;
    Line2: ax = 1 + R;
    Line3: ax = ax / 2;
    Line4: bx = ax * 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 280
    Score of this Page = 23.1425649137964
    Average lines of Page Code executed = 21.2
    Book = 3
    Chapter = 3
    Page = 138000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax / 3;
    Line4: bx = ax / 3;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 281
    Score of this Page = 23.1130616320077
    Average lines of Page Code executed = 48.8
    Book = 3
    Chapter = 3
    Page = 196000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: bx = R / ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 282
    Score of this Page = 23.0726605941976
    Average lines of Page Code executed = 47.3
    Book = 3
    Chapter = 3
    Page = 171000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = R + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 283
    Score of this Page = 23.0567374127557
    Average lines of Page Code executed = 47.3
    Book = 3
    Chapter = 3
    Page = 164000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: cx = ax - ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 284
    Score of this Page = 23.027541091919
    Average lines of Page Code executed = 52.4
    Book = 3
    Chapter = 3
    Page = 168000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 285
    Score of this Page = 23.027541091919
    Average lines of Page Code executed = 52.4
    Book = 3
    Chapter = 3
    Page = 161000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = ax / 3;
    Line2: bx = R + 2;
    Line3: ax = bx * 2;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 286
    Score of this Page = 22.9649532976849
    Average lines of Page Code executed = 17
    Book = 3
    Chapter = 3
    Page = 168000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax - bx;
    Line3: ax = ax / 2;
    Line4: ax = ax / 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 287
    Score of this Page = 22.9627138136237
    Average lines of Page Code executed = 15.6
    Book = 3
    Chapter = 3
    Page = 163000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + 1;
    Line2: ax = ax + R;
    Line3: ax = ax / 3;
    Line4: if(ax >= R / ax)goto line3;
    Line5: ax = ax + ax;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 288
    Score of this Page = 22.9110552828172
    Average lines of Page Code executed = 14.8
    Book = 3
    Chapter = 3
    Page = 217000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax / 3;
    Line3: ax = ax + R;
    Line4: ax = ax / 3;
    Line5: if(ax >= R / ax)goto line4;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 289
    Score of this Page = 22.9035667268477
    Average lines of Page Code executed = 40.7
    Book = 3
    Chapter = 3
    Page = 181000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 / 3;
    Line2: ax = ax + R;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 290
    Score of this Page = 22.9035667268477
    Average lines of Page Code executed = 40.7
    Book = 3
    Chapter = 3
    Page = 200000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: bx = 2 / 3;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 291
    Score of this Page = 22.8219020687447
    Average lines of Page Code executed = 53.9
    Book = 3
    Chapter = 3
    Page = 169000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: ax = ax + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 292
    Score of this Page = 22.7985210129657
    Average lines of Page Code executed = 48.8
    Book = 3
    Chapter = 3
    Page = 151000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = cx + R;
    Line2: ax = 3 + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 293
    Score of this Page = 22.602938564029
    Average lines of Page Code executed = 89
    Book = 3
    Chapter = 3
    Page = 189000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 1 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 294
    Score of this Page = 22.5367381522166
    Average lines of Page Code executed = 31.4
    Book = 3
    Chapter = 3
    Page = 181000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + 2;
    Line2: ax = ax * R;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 295
    Score of this Page = 22.4973609226002
    Average lines of Page Code executed = 16.1
    Book = 3
    Chapter = 3
    Page = 204000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + R;
    Line2: bx = ax / 3;
    Line3: ax = bx / 2;
    Line4: bx = ax / 2;
    Line5: if(ax >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 296
    Score of this Page = 22.2888529348694
    Average lines of Page Code executed = 22.1
    Book = 3
    Chapter = 3
    Page = 210000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax / 3;
    Line3: ax = ax / 2;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / bx)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 297
    Score of this Page = 22.1493935986835
    Average lines of Page Code executed = 94.1
    Book = 3
    Chapter = 3
    Page = 178000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + R;
    Line2: ax = ax * ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 3;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 298
    Score of this Page = 22.0582342915771
    Average lines of Page Code executed = 34.1
    Book = 3
    Chapter = 3
    Page = 192000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 2 + 2;
    Line2: ax = ax * ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 299
    Score of this Page = 21.9924986601831
    Average lines of Page Code executed = 21.8
    Book = 3
    Chapter = 3
    Page = 182000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 * R;
    Line2: ax = ax + ax;
    Line3: ax = ax - bx;
    Line4: bx = ax / 2;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }



    ******************************************************************************************************************************************************

    Position of this Page in the Pool = 300
    Score of this Page = 21.9682959862652
    Average lines of Page Code executed = 30.5
    Book = 3
    Chapter = 3
    Page = 116000

    double _stdcall SquareRoots(double R){
    // Problem Description: '01 Square Roots'
    // Generated by MOPEKS at 10.47 am on Monday 17th June 2013

    // Initialise variables at zero
    double ax = 0;
    double bx = 0;
    double cx = 0;
    double dx = 0;

    Line1: ax = 3 + 1;
    Line2: ax = 3 + ax;
    Line3: bx = ax / 3;
    Line4: ax = ax - bx;
    Line5: if(bx >= R / ax)goto line3;

    out: return ax;
    }

    Back to Top

    16. Please explain the Mopeks form layout.

    If you run the form Mopeks for a while and successfully find solutions you will notice that it goes a progressively darker shade of green, as below. That means that if you have a multiple core processor and are running multiple copies you can see at a glance what is going on.

    Note that the blue numbers do not normally appear and have been added to the screen shot to help documentation here.

    http://www.mopeks.org/images/form_mopeks_create_class_01_Method_running_highlighted.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    The form layout is as follows:

    Note 1 - Environment Name

    Environments can be set-up and changed only in the Library. See 'Guide ⇨ Library ⇨ Create'

    Note 1A - Show/Hide

    You can reduce the size of the form by hiding the background information - this may be appropriate if you are running multiple copies with a small screen. See 'Office ⇨ Step 5' for a detailed explanation.

    Note 2 - Name of Script being Run

    Whenever you run form Mopeks to find a Method you are either running an existing Script or creating a new one! See 'FAQ ⇨ Methods ⇨ Q18' for a detailed explanation of Scripts.

    Note 3 - Problem Source

    You can use standard problems to gain experience of MOPEKS but once you are familiar with it you can input your own problems and see if MOPEKS can find a Method which replicates your data in a generalised manner. See 'FAQ ⇨ Methods ⇨ Q21' for a detailed explanation.

    Note 4 - Problem Name

    See Note 3 above.

    Note 5 - Object Layout File Name

    In Method Classes 11, 12, 13, 14, 21, 22, 23 and 24 the raw data which MOPEKS is attempting to replicate by finding a suitable Method, is held either in a Static Trial File or a Dynamic Trial File. See 'FAQ ⇨ Methods ⇨ Q21' for a detailed explanation.

    Note 6 - Sub Method being Found

    You may want to find a Method which replicates very complex behaviour of an Object. It may be simpler to break down the task into sub Methods, each of which replicates part of the behaviour. See 'FAQ -- Methods ⇨ Q14' for a detailed explanation.

    Note 7 - Total Copies Running

    If you have multiple cores in your processor you will be given the opportunity of running multiple copies of MOPEKS in order to find a Method. This is because some Methods may take days to find and running multiple copies will speed up the process. The layout of these copies on the screen will be automated unless you turn this off in the Office. See 'Office ⇨ Step 4' for a detailed explanation.

    You can run fewer copies by just exiting one or more of the multiple copies, if you wish. MOPEKS will adjust the layout quite happily.

    Note 8 - Line Library in Use?

    You may sped up the search for a Method by using lines of code gathered from the Methods already in the Library. See 'Guide ⇨ Line Library' for a detailed explanation.

    Note 9 - Lines of Real Code in Method

    You can choose the number of lines of real code (ie excluding the boiler plate at the start and end) in the Method you seek. This may range from 1 line to a current maximum of 32 lines.

    Note 10 - Maths Method Trials

    This relates only to Classes 1, 2 and 3. In a Class 3 Method this is always set to '1' as there is no point in searching for a Class 3 Method with more than one trial. This is because each of the trials would contain the same data.

    In other Classes, it is appropriate to have multiple trials (at least 10) to prevent trivial solutions. See 'FAQ ⇨ Methods ⇨ Q22' for a detailed explanation.

    Note 11 - Intelligent Object in Simulation

    In the search for a Class 34 Method (ie a simulation) you must declare an intelligent Object. For example, in Safari Park this is 'Brian' - an anagram of 'Brain'. See 'Guide ⇨ Simulator ⇨ Create' and follow it through carefully.

    Note 12 - Primary Object

    In Classes 11, 12, 14, 21, 22 and 24 there is at least one Object which is the focus of attention and this is designated the Primary Object 'R'. So for example, if in a Class 12 Method we wish to know the distance from Leo to the Lake, then we could designate Leo as the Primary Object 'R' and the Lake as the Secondary Object 'S'

    Note 13 - Secondary Object

    See Note 12 above but note that there is only a Secondary Object in Classes 12 and 22.

    Note 14 - Time elapsed

    This is the time elapsed since this copy of form Mopeks started running. This will in due course change from seconds to minutes and then to hours and finally, days.

    To find the best solution in a Simulation may take weeks so this is an ideal task for a spare machine, if you have one - that's how I keep my basement warm.

    Note 15 - Total Books since Start

    See Note 21 below.

    Note 16 - Total Chapters since Start

    See Note 21 below.

    Note 17 - Total Pages since Start (M)

    See Note 21 below. As explained, this is actually the number of Methods tested since the search for a Method began. On my old laptop this seems to be about 5 billion per day per core. Remember that each Method may be tested in up to 10 trials, so the actual number of 'Method Tests' may be heading for 50 billion per day.

    Note 18 - Total Lines run since start (Bn)

    See Note 20 and Note 21 below. A 'line' here is an executed line of a Method. Bear in mind that allowing for loops, a Method of 5 lines may run over 100 lines of code. Further it may run up to 10 trials before being rejected. That is why the number of lines run on my old twin core laptop are approaching one trillion per day.

    Note 19 - Pages per second (thousands)

    See Note 17 above. This is actually the number of Methods tested per second.

    Note 20 - Lines per second (M)

    See Note 18 above. This is actually the number of Method lines run per second.

    Note 21 - Current Shelf

    In order to see what is happening, I have used the analogy of a huge bookcase.

    A 'Page' is actually synonymous with a 'Method' as mentioned above.

    A 'Chapter' consists of a (very) large number of Pages. A Chapter ends when we do not seem to be making much progress, so MOPEKS wipes out the Breeding Pool except for the top line (ie the best Method found so far). The rest of the Pool is then filled with random code - unless you are using the Line Library in which case it will be filled with Method lines from the Library.

    A 'Book' consists of a (very) large number of Chapters. A book ends when we are just not getting anywhere and a totally fresh start is called for ie the Breeding Pool is toally wiped and refilled.

    A 'Shelf' consists of a (very) large number of books. When a solution is found, the current Book is terminated and a new Shelf is opened.

    Note that in this example MOPEKS has found 91 Methods so that is why we are currently on Shelf 92.

    Notes 22, 23 and 24 - Current Book, Chapter and Book

    See Note 21 above. We are currently on Page 429,000 of Chapter 3 of the 15th Book on Shelf 92! The Chapters have individually numbered pages starting at '1'. No analogy is exact.

    Note that the screen is only updated once per 1,000 pages. Computers are quick when they are doing real calculations.

    Note 25 - Size of breeding Pool

    This is typically 300 or a lot less for a simulation. See 'FAQ ⇨ Methods ⇨ Q15' for a detailed explanation.

    Note 26 - Score to count as Success

    If you are seeking a precise mathematical Method such as a square root Method this may well be set at an answer accurate to 15 places of decimals. See 'FAQ ⇨ Methods ⇨ Q23' for a detailed explanation.

    Note 27 - Highest Score on Book Case

    See Note 26 above. The Score of a Method is typically the 'Correct Answer' divided by the total error over all of the trials. If the error is 'zero' then the score is set to '3E+17'.

    In this example, the 'Highest Score on Book Case' is '2.5433345323712E+16' which means that Methods with this Score (there are lots of them) are the most accurate of all of the 91 solutions found so far. See 'FAQ ⇨ Methods ⇨ Q23' for a detailed explanation.

    Note 28 - Highest Score since Success

    This is self explanatory. In this instance the best we have achieved in the last 837 seconds (see Note 36) is a Score of 242.58899. Typically, success seems to come out of nowhere. This is known as 'Punctuated Equilibrium' and is discussed in The Book - see Navigation Bar above

    Note 29 - Highest Score in Breeding Pool

    As mentioned in Note 25 above, the Breeding Pool typically contains 300 Methods - right now the best Method in the Pool scores only 19.919.

    Note 30 - Lowest Score in Breeding Pool

    As mentioned in Note 25 above, the Breeding Pool typically contains 300 Methods - right now the worst Method in the Pool scores only 12.283.

    Note 31 - Positive Scores in Breeding Pool

    This is what it says - under some circumstances, the Scores could turn negative (specifically during simulation) so this records the number of non-negative scores.

    Note 32 - Score just added to Pool

    This is the Score of the Method last added to the Breeding Pool.

    Note 33 - Number added to Pool since Print

    This is the number of Methods which have been added to the Breeding Pool since the last screen update (which typically takes place once per thousand Method evaluations). Once this starts to drop towards zero you can expect to see a new Chapter or Book open.

    Note 34 - Number of Successes Saved

    This is just the number of Methods found by MOPEKS which have scores at least as high as the success criterion.

    Note 35 - Number of Successes per hour

    This is just simple arithmetic - in this case 91/18.688 = 4.869

    Note 36 - Time since Last Success (secs)

    This is the time elapsed since MOPEKS found a solution. This will in due course change from seconds to minutes and then to hours and finally, to days.

    Note 37 - Continue/Pause Button

    If you press this button, MOPEKS will stop running. It does this by going to sleep and should not then hog any resources. You can do this if you need to use your machine for other purposes. If you have a copy running for each core on your processor you can expect your machine to be unable to do much else as MOPEKS is very computationally intensive.

    When you are ready to re-start, press the 'Continue' button. The time elapsed does NOT keep running so you can 'Pause' and 'Continue' without distorting the statistics.

    Note 38 - Pool Button

    This saves the contents of the Breeding Pool - a message will briefly flag up to tell you. See 'FAQ ⇨ Methods ⇨ Q15' for a detailed explanation of the Breeding Pool.

    The file is saved here:

    C:\MOPEKS\Factory\Methods\Pool

    Note 39 - Reset Button

    This cannot be used here.

    Note 40 - End MOPEKS Button

    This is self explanatory.

    Back to Top

    17. Is MOPEKS much better than Random?

    I claim no credit for Genetic Programming, as used by MOPEKS - it has been around for at least 30 years.

    Let's see what the odds are of coming up with a 5 line Method to find square roots by just testing purely random 5 line Methods. A Class 1 Method can be an assignment or a conditional statement

    Assignment

    1. Left Hand Side: 'ax', 'bx', 'cx' or 'dx' (4 possible)
    2. Operator: '=' (1 possible)
    3. Right Hand Side 1: 'ax', 'bx', 'cx', 'dx', '1', '2', '3' or '4' (8 possible)
    4. Operator: '+', '-', '*' or '/' (4 possible)
    5. Right Hand Side 2: 'ax', 'bx', 'cx', 'dx', '1', '2', '3' or '4' (8 possible)

    Number possible: 4 * 1 * 8 * 4 * 8 = 1,024

    Conditional Statement

    1. Left Hand Side: 'if' (1 possible)
    2. Operator: '=' , '>=', '<' or '>' (4 possible)
    2. Right Hand Side 1: 'ax', 'bx', 'cx', 'dx', '1', '2', '3' or '4' (8 possible)
    2. Operator '+', '-', '*' or '/' (4 possible)
    2. Right Hand Side 2: 'ax', 'bx', 'cx', 'dx', '1', '2', '3' or '4' (8 possible)
    2. Goto Line Number (5 possible, arguably)

    Number possible: 1 * 4 * 8 * 4 * 8 * 5 = 5,120

    So, there are 6,144 possible Method lines in a Class 1 Method (there are far more in higher classes) - let's take that as order of magnitude 6,000 possible lines. This means that the odds of a specific Method coming up are one in 6,000 * 6,000 * 6,000 * 6,000 * 6,000 = 7,776,000,000,000,000,000. Now on a fast machine with multiple processors, MOPEKS could test about 1,000,000 Methods per second. So to find a a specific Method by chance would take:

    7,776,000,000,000,000,000 / 1,000,000 = 7,776,000,000,000 seconds or about 2,000,000 years.

    Quite how many 5 line Methods there are which find square roots I honestly do not know but even if there are a million (extremely unlikely - 1,000 is probably nearer the mark) this only cuts it down to about two years as opposed to maybe a minute using MOPEKS on a fast machine.

    If we extend the argument to 10 line Methods and Methods containing Objects then we are talking somewhere between decades and the age of the universe to randomly find a solution.

    So, Genetic Programming does the job.

    Back to Top

    18. What is a Script?

    Whenever you start to fill in the Factory form (see, for example, 'Guide ⇨ Factory ⇨ Create Class 1 Method') you are either running an existing Script or creating a new one. If you click on the Script which you have created it, it will give you the choice of either running it (ie opening MOPEKS and creating or reviewing a Method) or actually examining its contents in Notepad or Wordpad.

    The process is is illustrated below if you wish to see it in animated gif form.

    http://www.mopeks.org/images/form_factory_class_01_Method_full_run.gif Left click for ANIMATED gif. Then Save Image to Disk and Step through as a Movie if you wish - see 'FAQ ⇨ General ⇨ Q9'

    Once you have gone through this process, you will find the Script here:

    C:\MOPEKS\Factory\Scripts

    Now click on the file you have just created (right at the bottom in the screen shot below) and when the box comes up choose the 'No' option. The process is illustrated below if you wish to see it in animated gif form.

    http://www.mopeks.org/images/form_factory_script.gif Left click for ANIMATED gif. Then Save Image to Disk and Step through as a Movie if you wish - see 'FAQ ⇨ General ⇨ Q9'

    The Script you have created will look like this:

    http://www.mopeks.org/images/form_factory_script_square_roots.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Each line breaks down as follows:

    Part1 is Form Name:     eg frmFactory
    Part2 is Control:       eg optMethodType
    Part3 is Control Index: eg '0'
    Part4 is Control Value: eg '0'
    Part5 is Actual Entry:  eg '100-000-012 MathsWithNoMethods' in this example

    Note: Part 5 only applies to drop down boxes (prefixed with "cmb" - eg cmbEnvironment) where the user can actually add entries thereby changing the line sequence. In other words, this is a correction to a programming oversight.

    If you want to mess with these Scripts, bear in mind that the first control in an indexed control is '0'. To further confuse matters, all values selected are consistently reduced by one. That is why the value of cmbPageLines is '4' which means that MOPEKS is seeking to create a 5 line Method. This is because in a drop down box the first entry is '0'.

    So, the setting of 'optMethodType' in the first line means that the first option box is ticked.

    Don't blame me. This quote sums it up: "Should array indices start at 0 or 1? My compromise of 0.5 was rejected without, I thought, proper consideration" Stan Kelly-Bootle

    You can stop a script running by putting in the one line entry 'exit' as below. This is useful if you want to step through it.

    http://www.mopeks.org/images/form_factory_script_square_roots_with_exit.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    If you have nothing better to do, you can probably use a script to force MOPEKS to fail in all sorts of interesting ways.

    Back to Top

    19. Please Explain Form Advice when I choose an Environment

    You will frequently find that MOPEKS asks you to choose an Environment in which to operate. Most of the time it will then show you the Advice form with a lot to say for itself - see the Scrolling Box lower down.

    If the Advice form does not show, this is because MOPEKS does not require it to show - whether you are in Introductory, Intermediate or Expert Mode is irrelevant in this case (normally, the Advice form will not show if you are in Expert mode).

    Let's look at an example. Open form Factory and choose to find a Class 11 Method (see 'Guide ⇨ Factory ⇨ Create Class 11 Method') Then choose Safari Park as the Environment and you sould get the Advice form on top of the Factory form as in the screen shot below:

    http://www.mopeks.org/images/form_factory_class_11_Method_and_form_advice.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    The contents of the Advice form should be identical to the contents of the scroll box below (apart from the red colouring added for emphasis).

    Now read the contents of this box carefully as well as reading the contents of Guide to Information 24, 25, 26 and 27.

     Everything is FINE! Please press 'Continue' when you are ready.
     

     Note: all of the following IDs are in the order in which they have been found - they are NOT in sequence
     
     The Environment '100-000-013', with the Short Name of 'SafariPark' contains 7 Objects, namely:
     
      1   300-000-005   Goat
      2   300-000-012   Lake
      3   300-000-015   Brian
      4   300-000-016   LeoLion
      5   300-000-017   House
      6   300-000-018   QckSnd
      7   300-000-019   Spinach
     
     and these Objects have the following Methods:
     
      1   300-000-005   Goat
     
          1   600-000-001   Constant
          2   600-000-242   R_MvsFrm_S_Fll
     
      2   300-000-012   Lake
     
          1   600-000-001   Constant
          2   600-000-280   ObjctsWthnRdsSD
     
      3   300-000-015   Brian
     
          1   600-000-010   Wait
          2   600-000-226   R_MovesTo_S_Fll
          3   600-000-242   R_MvsFrm_S_Fll
          4   600-000-420   R_Orbts_S_Clckw
          5   600-000-425   R_Orbts_S_AntCl
          6   600-000-470   R_Tngnts_S_Clck
          7   600-000-475   R_Tngnts_S_AntC
     
      4   300-000-016   LeoLion
     
          1   600-000-001   Constant
          2   600-000-410   R_Kills_S
          3   600-000-726   R_Mvs_T_Frm_Rnk
     
      5   300-000-017   House
     
          1   600-000-001   Constant
          2   600-000-004   ObjectNumber
     
      6   300-000-018   QckSnd
     
          1   600-000-001   Constant
          2   600-000-274   ObjctsWthnRdsDd
     
      7   300-000-019   Spinach
     
          1   600-000-001   Constant
          2   600-000-774   ObjctsWthnRdsUR
     
     and these Objects use between them a total of 16 Properties, namely:
     
      1   200-000-002   XAxis
      2   200-000-003   YAxis
      3   200-000-005   Length
      4   200-000-007   Height
      5   200-000-008   Radius
      6   200-000-009   Angle
      7   200-000-014   Elstcty
      8   200-000-033   Colour
      9   200-000-037   LthlWtR
     10   200-000-038   Rank
     11   200-000-041   Health
     12   200-000-048   Speed
     13   200-000-049   SpdMxmm
     14   200-000-050   SwmmngS
     15   200-000-068   Store1
     16   200-000-053   Depth
     
     The Environment itself uses a total of 19 Properties (also referred to as 'Constants'), namely:
     
      1   200-000-002   XAxis
      2   200-000-003   YAxis
      3   200-000-006   Width
      4   200-000-019   AtmsphP
      5   200-000-020   WndDrct
      6   200-000-021   Hmdty
      7   200-000-023   Gravity
      8   200-000-024   AtmsphT
      9   200-000-025   UntOfMs
     10   200-000-034   WindSpd
     11   200-000-051   UntOfLM
     12   200-000-052   UntOfTm
     13   200-000-053   Depth
     14   200-000-054   NrthEst
     15   200-000-055   West
     16   200-000-056   27Dgrs
     17   200-000-057   GreyClr
     18   200-000-058   ClrBck
     19   200-000-059   ClrFr
     
     and the Environment itself uses a total of 73 Methods, namely:
     
      1   600-000-001   Constant
      2   600-000-002   NextStep
      3   600-000-003   Reset
      4   600-000-004   ObjectNumber
      5   600-000-006   RandomInteger
      6   600-000-008   CurrentStep
      7   600-000-009   NumberOfObjects
      8   600-000-013   Sin
      9   600-000-014   SquareRoot
     10   600-000-020   10ToPowerR
     11   600-000-025   Abs
     12   600-000-029   SumOfIntegers
     13   600-000-031   DgrsTRdnsFctr
     14   600-000-032   RdnsTDgrsFctr
     15   600-000-034   DffrncOf2SqrRts
     16   600-000-036   DffrncOfSqrs
     17   600-000-037   Rounded
     18   600-000-039   SumOfSquares
     19   600-000-042   DistanceToCrnr
     20   600-000-045   ObjctClsstTObjc
     21   600-000-046   ObjectExpands
     22   600-000-047   TwoObjectsRepel
     23   600-000-050   Return270
     24   600-000-053   Return32
     25   600-000-055   Return128
     26   600-000-056   Return256
     27   600-000-057   Return512
     28   600-000-058   Return1024
     29   600-000-059   DegreesToRdns
     30   600-000-061   QuadOne
     31   600-000-062   QuadTwo
     32   600-000-063   QuadThree
     33   600-000-064   QuadFour
     34   600-000-070   10ToPower32
     35   600-000-073   Cos
     36   600-000-078   tanh
     37   600-000-079   ASin
     38   600-000-080   ACos
     39   600-000-081   ATan
     40   600-000-100   ObjectClsstTLHS
     41   600-000-101   ObjctFrthstFrmR
     42   600-000-212   AnglSbtnddBy2Ob
     43   600-000-222   R_MovesTo_S_Xxs
     44   600-000-223   R_MovesTo_S_Yxs
     45   600-000-224   R_MvsFrm_S_Xxs
     46   600-000-225   R_MvsFrm_S_Yxs
     47   600-000-226   R_MovesTo_S_Fll
     48   600-000-228   NextXxsOfObjct
     49   600-000-229   NextYxsOfObjct
     50   600-000-230   NextPstnOfRFll
     51   600-000-234   AllRunFromR_Xxs
     52   600-000-235   AllRunFromR_Yxs
     53   600-000-313   DistBtwn2Objcts
     54   600-000-322   Return90
     55   600-000-323   Return180
     56   600-000-324   Return360
     57   600-000-325   Return45
     58   600-000-326   ObjctsHdWst_Xxs
     59   600-000-327   ObjctsHdWst_Yxs
     60   600-000-355   AllObjctsChngCl
     61   600-000-375   IncreaseRadius
     62   600-000-401   ObjctRnsAt37DXA
     63   600-000-402   ObjctRnsAt37DYA
     64   600-000-420   R_Orbts_S_Clckw
     65   600-000-425   R_Orbts_S_AntCl
     66   600-000-470   R_Tngnts_S_Clck
     67   600-000-475   R_Tngnts_S_AntC
     68   600-000-525   IntegerMod
     69   600-000-550   RndmIntgr_0-360
     70   600-000-606   IncrsRdsOfAllOb
     71   600-000-707   IncreaseColour
     72   600-000-800   Return100
     73   600-000-810   RtrnAsPrcntgMlt
     
     The Environment AND these Objects use between them a total of 81 Methods, namely:
     
      0   600-000-000   Method being built  Class 12
      1   600-000-001   Constant            Class 1
      2   600-000-002   NextStep            Class 1
      3   600-000-003   Reset               Class 3
      4   600-000-004   ObjectNumber        Class 1
      5   600-000-006   RandomInteger       Class 3
      6   600-000-008   CurrentStep         Class 3
      7   600-000-009   NumberOfObjects     Class 3
      8   600-000-013   Sin                 Class 1
      9   600-000-014   SquareRoot          Class 1
     10   600-000-020   10ToPowerR          Class 1
     11   600-000-025   Abs                 Class 1
     12   600-000-029   SumOfIntegers       Class 1
     13   600-000-031   DgrsTRdnsFctr       Class 3
     14   600-000-032   RdnsTDgrsFctr       Class 3
     15   600-000-034   DffrncOf2SqrRts     Class 2
     16   600-000-036   DffrncOfSqrs        Class 2
     17   600-000-037   Rounded             Class 1
     18   600-000-039   SumOfSquares        Class 2
     19   600-000-042   DistanceToCrnr      Class 11
     20   600-000-045   ObjctClsstTObjc     Class 14
     21   600-000-046   ObjectExpands       Class 21
     22   600-000-047   TwoObjectsRepel     Class 22
     23   600-000-050   Return270           Class 3
     24   600-000-053   Return32            Class 3
     25   600-000-055   Return128           Class 3
     26   600-000-056   Return256           Class 3
     27   600-000-057   Return512           Class 3
     28   600-000-058   Return1024          Class 3
     29   600-000-059   DegreesToRdns       Class 1
     30   600-000-061   QuadOne             Class 12
     31   600-000-062   QuadTwo             Class 12
     32   600-000-063   QuadThree           Class 12
     33   600-000-064   QuadFour            Class 12
     34   600-000-070   10ToPower32         Class 3
     35   600-000-073   Cos                 Class 1
     36   600-000-078   tanh                Class 1
     37   600-000-079   ASin                Class 1
     38   600-000-080   ACos                Class 1
     39   600-000-081   ATan                Class 1
     40   600-000-100   ObjectClsstTLHS     Class 13
     41   600-000-101   ObjctFrthstFrmR     Class 14
     42   600-000-212   AnglSbtnddBy2Ob     Class 12
     43   600-000-222   R_MovesTo_S_Xxs     Class 12
     44   600-000-223   R_MovesTo_S_Yxs     Class 12
     45   600-000-224   R_MvsFrm_S_Xxs      Class 12
     46   600-000-225   R_MvsFrm_S_Yxs      Class 12
     47   600-000-226   R_MovesTo_S_Fll     Class 22
     48   600-000-228   NextXxsOfObjct      Class 11
     49   600-000-229   NextYxsOfObjct      Class 11
     50   600-000-230   NextPstnOfRFll      Class 21
     51   600-000-234   AllRunFromR_Xxs     Class 24
     52   600-000-235   AllRunFromR_Yxs     Class 24
     53   600-000-313   DistBtwn2Objcts     Class 12
     54   600-000-322   Return90            Class 3
     55   600-000-323   Return180           Class 3
     56   600-000-324   Return360           Class 3
     57   600-000-325   Return45            Class 3
     58   600-000-326   ObjctsHdWst_Xxs     Class 23
     59   600-000-327   ObjctsHdWst_Yxs     Class 23
     60   600-000-355   AllObjctsChngCl     Class 23
     61   600-000-375   IncreaseRadius      Class 21
     62   600-000-401   ObjctRnsAt37DXA     Class 21
     63   600-000-402   ObjctRnsAt37DYA     Class 21
     64   600-000-420   R_Orbts_S_Clckw     Class 22
     65   600-000-425   R_Orbts_S_AntCl     Class 22
     66   600-000-470   R_Tngnts_S_Clck     Class 22
     67   600-000-475   R_Tngnts_S_AntC     Class 22
     68   600-000-525   IntegerMod          Class 2
     69   600-000-550   RndmIntgr_0-360     Class 3
     70   600-000-606   IncrsRdsOfAllOb     Class 23
     71   600-000-707   IncreaseColour      Class 21
     72   600-000-800   Return100           Class 3
     73   600-000-810   RtrnAsPrcntgMlt     Class 1
     74   600-000-242   R_MvsFrm_S_Fll      Class 22
     75   600-000-280   ObjctsWthnRdsSD     Class 24
     76   600-000-010   Wait                Class 21
     77   600-000-410   R_Kills_S           Class 22
     78   600-000-726   R_Mvs_T_Frm_Rnk     Class 22
     79   600-000-274   ObjctsWthnRdsDd     Class 24
     80   600-000-774   ObjctsWthnRdsUR     Class 24
     
     The number of Objects is limited to 7 and so the above is ACCEPTABLE
     
     The number of Properties is limited to 32 and so the above is ACCEPTABLE
     
     The number of Environmental Properties is limited to 32 and so the above is ACCEPTABLE
     
     The number of Methods is limited to 128 and so the above is ACCEPTABLE
     
     You can use Copy and Paste to preserve the contents of this Advice.
     
     

    Objects and Properties

    This is all tricky stuff - even I find it confusing at times. The main thing to remember is that the Environment contains up to 7 Objects which can have between them 32 different Properties. These are 'shared' in the sense that if any Object or any Environment has a property then MOPEKS will not fail if you refer to any Object within that Environment (or the Environment itself) as having that property.

    So, if you have an Object called Betty and only Betty has the Property of 'Pretty' you can still give that Property to other Objects without any actions on your part. So, the following is permitted:

    1: ax = Betty.Pretty + 1
    2: ax ==> NextStep(Brian.Pretty)

    So now, Brian is Prettier than Betty. You can think of this as being something like Automatic Horizontal Gene Transfer, in the biological sense, or Inheritance in the Object Oriented Programming sense.

    Method Classes 1, 2, and 3

    The Class 1, 2 or 3 Method that you seek can itself use any Method of Classes 1, 2 or 3 which belongs to the particular Environment that you are using. It can also use any Method belonging to itself or any other Object in this Environment. You can think of this as the equivalent of horizontal gene transfer.

    So, in the scroll box above, the Method you seek can use any of the 81 Methods highlighted in red at the bottom (note that this list starts at zero). Do not get confused with the 73 Methods belonging only to the Environment.

    If you are sharp eyed you will notice that some of these 81 Methods should not be used by Classes 1, 2 or 3 as they are of Classes 11 and above (ie 11, 12, 13, 14, 21, 22, 23 and 24). Well spotted - they should not really be in that list. But this is evolution and you can throw in any old junk and MOPEKS will either discard it or maybe find something useful. In fact, because of Polymorphism, MOPEKS will not actually realise that these Methods are of the wrong Class - it will just see them as a collection of binary information. A bit like using a wrench as a hammer.

    Method Classes 11, 12, 13 and 14

    The Class 11, 12, 13 or 14 Method that you seek can itself use any Method of Classes 1, 2, 3, 11, 12, 13 and 14 which belongs to the particular Environment that you are using. It can also use any Method belonging to itself or any other Object in this Environment. You can think of this as the equivalent of horizontal gene transfer.

    So, in the scroll box above, each Object can use any of the 81 Methods highlighted in red at the bottom (note that this list starts at zero). Do not get confused with the 73 Methods belonging only to the Environment.

    If you are sharp eyed you will notice that some of these 81 Methods should not be used by Classes 11, 12, 13 or 14 as they are of Classes 21, 22, 23 and 24. Well spotted - they should not really be in that list. But this is evolution and you can throw in any old junk and MOPEKS will either discard it or maybe find something useful. In fact, because of Polymorphism, MOPEKS will not actually realise that these Methods are of the wrong Class - it will just see them as a collection of binary information. A bit like using a wrench as a hammer.

    Method Classes 21, 22, 23 and 24

    The Class 21, 22, 23 or 24 Method that you seek can itself use any Method of Classes 1, 2, 3, 11, 12, 13, 14, 21, 22, 23 or 24 which belongs to the particular Environment that you are using. It can also use any Method belonging to itself or any other Object in this Environment. You can think of this as the equivalent of horizontal gene transfer.

    So, in the scroll box above, each Object can use any of the 81 Methods highlighted in red at the bottom (note that this list starts at zero). Do not get confused with the 73 Methods belonging only to the Environment.

    Method Class 34 (simulation)

    This is totally different so pay careful attention!

    Methods belonging to the Environment you have chosen are totally ignored unless they are attached to that Environment. Any Methods that are attached are all executed at each step of the simulation. See 'FAQ ⇨ Methods ⇨ Q13.

    Each Object in the Environment, apart from the Intelligent Object, executes every Method that it owns in sequence at each step of the simulation.

    For example, the Goat will only use two Methods, namely:

    600-000-001 Constant
    600-000-242 R_MvsFrm_S_Fll

    Note that 'Constant' has no effect in this context.

    The intelligent Object can use any or all of its own Methods. It cannot use any other Methods belonging to the Environment or other Objects.

    So Brian (the Intelligent Object) can use any or all of the 7 Methods listed in red below his name in the scroll box above, namely:

    600-000-010 Wait
    600-000-226 R_MovesTo_S_Fll
    600-000-242 R_MvsFrm_S_Fll
    600-000-420 R_Orbts_S_Clckw
    600-000-425 R_Orbts_S_AntCl
    600-000-470 R_Tngnts_S_Clck
    600-000-475 R_Tngnts_S_AntC

    This may appear like cheating but, in fact, it is what you do as a human being when solving a real life problem. For example, if you are trying to escape from a fierce dog, you do not include Long Division and Flower Arranging in your list of possible Methods. The actual list is likely to be pretty short and consist of:

    Wait
    Run away
    Kick
    Throw Object
    Climb Tree
    Open Gate
    Close Gate
    Shout

    Your solution will be some combination of these Methods - just like the solution that MOPEKS will come up with.

    Back to Top

    20. Why does MOPEKS sometimes produce inelegant code in Methods?

    You will find that Methods produced by MOPEKS sometimes contain inelegant code eg:

    1: ax = r / r
    2: ax = bx * 1
    3: ax = bx + dx 'where dx has been previously set at 0

    [Note: If you want really elegant code, then reduce the number of lines to a minimum. MOPEKS may well find an 8 line Method fairly quickly but the result could look sloppy. If you look for say, a 5 line Method, the code will be much better but it will take a lot longer.]

    This is evolution in action. If the solution works, that is all that is required. Evolution in general has no requirement to produce elegant solutions. The reasons why a particular line of code rather than something else appears in MOPEKS may be subtle - to do with the frequency of certain bit patterns.

    Solutions may well also contain irrelevant lines. This is because it is often easier to find a 9-line solution which has two or three lines of junk than to find a compact solution with only six lines.

    Also, the 'junk' may evolve into something useful - it is 'fuel' for evolution if you like. Which reminds me of something else connected with 'fuel'. If you were to examine a car without any real understanding of how it works, you may well conclude that the fuel tank and contents are 'junk' and are not needed. After all, a car with a half empty fuel tank is lighter and quicker than one with a full tank so 'obviously' the tank and fuel are unnecessary.

    What this all boils down to is that 'junk instructions' whether in biology or in MOPEKS play a role in expediting evolution.

    See this article on the subject of Orphan DNA. Note the sentence "The majority of orphan genes, it now seems, lack obvious parents because they've sprung up from junk DNA"

    I think I may have (sort of) got there first - see my letter of 22nd April 2000 published by the New Scientist, below:

    http://www.mopeks.org/images/new_scientist_letter.gif
    Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Back to Top

    21. Please explain Maths, Static and Dynamic Trials
    Introduction

    To actually construct Maths Trials, Static Trials and Dynamic Trials, please see the next entry 'FAQ ⇨ Methods ⇨ Q22'

    Maths Trials for Classes 1 and 2

    Suppose you wanted to find a Method which satisfies the following problem:

    4 = MyMethod(16)

    Then the following would work:

    Private Function MyMethod(R as Double)
      MyMethod = R / 4
    End Function

    Now suppose you wanted to find a Method which satisfies the following problem:

    3 = MyMethod(9)
    4 = MyMethod(16)
    5 = MyMethod(25)

    It is pretty obvious that the Method you are seeking is the Square Root function. If you gave this problem to MOPEKS, it would constitute three Maths Trials ie three sets of data for which you wish to find a Method which reproduces this data and is also a generalised solution. So, to continue the Square Root example, we need a Method which will find the Square Root of any number.

    From the above it is apparent that if you only carry out one trial, MOPEKS will almost certainly find a 'trivial' solution such as:

    Function MyMethod(R as Double)
      MyMethod = R / 4
    End Function

    That is why the number of Trials must exceed one for all classes except for Class 3. Historically, I have always used 10 Maths Trials to prevent trivial or weird one-off soluions coming up but see General Analysis below.

    Maths Trials for Class 3

    Suppose you wanted to find a Method which satisfies the following problem:

    90 = MyMethod()

    Then the following would work:

    Private Function MyMethod()
      1: ax = 3 * 3
      2: bx = ax * ax
      3: ax = ax + bx
      4: MyMethod = ax
    End Function

    And that is fine! That is all we need - a 'one off' solution that returns 90. So, in Class 3 Methods the number of Trials is automatically set to one. Because any further trials would be a waste of time.

    Static Trials for Classes 11, 12, 13 and 14

    You will recall that these classes are designed to find Methods that show the relationship between Objects in a frozen 'snapshot' of an Environment. For example, we may need to know the probability that 'Electron' is in a particular place in 'The Atom'. So, we construct a number of Static Trials as follows

    Trial 1
    Electron.Xaxis = 500
    Electron.Yaxis = 500
    Electron.Presence = V1

    Trial 2
    Electron.Xaxis = 500
    Electron.Yaxis = 505
    Electron.Presence = V2

    Trial 3
    Electron.Xaxis = 510
    Electron.Yaxis = 500
    Electron.Presence = V3

    Trial 4
    Electron.Xaxis = 500
    Electron.Yaxis = 480
    Electron.Presence = V4

    Trial 5
    Electron.Xaxis = 460
    Electron.Yaxis = 500
    Electron.Presence = V5

    Now, if the Values V1 to V5 have been set correctly (eg from an accurate experiment) then MOPEKS should come up with a suitable wave function that predicts the probability of finding an electron in a particular spot.

    Another example may be that the Environment is a 'A Bus' and the underlying principle is that 'Emma' sits in a seat which is as far as possible away from 'The Drunk'. At the moment, the bus would only be able to have 7 seats but that is a limitation brought about by coding rather than principle - there is no reason why MOPEKS should not deal with dozens of Objects in principle.

    [Note: I have not actually set up this example, but I think that you would have 7 Objects, namely 'Seat 1', 'Seat 2' up to 'Seat 7'. The Seats would then have two Properties, namely 'Occupied by Emma' ('OccpdBE') and 'Occupied by the Drunk' ('OccpBTD'). These would be set to '1' to indicate that they are so occupied and '0' otherwise.]

    As with Maths Methods, if you just give MOPEKS one trial it will come up with a trivial solution. Historically, I have always used 10 Static Trials to prevent trivial or weird one-off soluions coming up but see General Analysis below.

    Dynamic Trials for Classes 21, 22, 23 and 24

    You will recall that these classes are designed to find Methods that show a process involving one or more Objects.

    A simple example would be that one Object (eg 'The Earth') goes into a clockwise orbit around another Object (eg 'The Sun').

    If you set up 10 such Trials, then in each Trial MOPEKS would typically only use the data represented by Step 1 to Step 2. This means that when you set up a Dynamic Trial you could get away with only two steps. Do not confuse this with the number of Trials.

    Historically, I have always used 10 Dynamic Trials to prevent trivial or weird one-off soluions coming up but see General Analysis below.

    General Analysis

    I think that from a theoretical point of view, it may well be that the number of Trials needed as a minimum depends on the number of Degrees of Freedom, plus 1. So, in MOPEKS this will boil down to the number of Variables eg 'R' and 'S' and the number of Properties available to the Objects concerned. So:

     Category   Classes   Minimum Trials 
     Maths Trials  1  2 
     Maths Trials  2  3 
     Maths Trials  3  1 
     Static Trials  11, 12, 13 and 14  Properties + 1 
     Dynamic Trials  21, 22, 23 and 24  Properties + 1 

    This may well be a flawed conclusion so if in doubt, use ten!

    Back to Top

    22. Contrast the Data for Maths, Static and Dynamic Trials
    Introduction

    For the background on the various types of Trials please see the previous entry 'FAQ ⇨ Methods ⇨ Q21'

    Constructing Trials for Classes 1, 2 and 3

    Before reading any further you should do the following, which will greatly clarify matters:

    1. Read 'FAQ ⇨ Methods ⇨ Q5'
    2. Read 'FAQ ⇨ Methods ⇨ Q6'
    3. Read 'FAQ ⇨ Methods ⇨ Q7'
    4. Read 'FAQ ⇨ Methods ⇨ Q21'
    5. Run MOPEKS to actually find some Class 1, 2 and 3 Methods, as for example in: 'Guide ⇨ Factory ⇨ Create ⇨ Class 1'

    Once you have done this, you will realise that the data for Classes 1, 2 and 3 is contained in a simple text file which looks like the following Class 2 example:

    http://www.mopeks.org/images/form_notepad_data_class_02.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    The columns are made up as follows:

    Column 1: Row number
    Column 2: Value of 'R'
    Column 3: Value of 'S'
    Column 4: Value of Result

    So, all you need to do to construct your own Trials for Classes 1, 2 and 3 is to fill in this table with suitable numbers and then store it in the appropriate folder, here:

    C:\MOPEKS\Library\Problems User\Class 1
    C:\MOPEKS\Library\Problems User\Class 2
    C:\MOPEKS\Library\Problems User\Class 3

    The spacing is not critical but the commas are. MOPEKS will then pick this up this file as a User Problem when you run the Factory to find a Class 1, 2 or 3 Method.

    For example, just open the square Root file and save it as 'MyProblem.mtxt' as below (note that the file sizes are the same at 1,102)

    http://www.mopeks.org/images/folder_user_problem.gif Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Then when you run the Factory, you will see that MyProblem has turned up. You can now change the data in this file to suit your problem or just create a new text file and save it.

    http://www.mopeks.org/images/form_mopeks_user_problem.jpg Left click on image for a full size shot in a new tab or window. Press F11 for a full screen, if you wish. Then F11 again to return

    Constructing Trials for Classes 11, 12, 13 and 14

    Before reading any further you should read the following, which will greatly clarify matters:

    1. Read 'FAQ ⇨ Methods ⇨ Q8'
    2. Read 'Guide ⇨ Workshop ⇨ Amend Static Trials'
    3. Read 'Guide ⇨ Workshop ⇨ Creat Static Trials'

    You should deduce from this that the raw data constituting the Static Trial is typically like this file:

    2012-11-17@12.14.14 Temporary Name Trials 10 Steps 1 V001.mpkt

    which is found in this folder ...

    C:\MOPEKS\Factory\Trials\LiteraryParty\Static

    ... and looks like this:

     
     From Method ID,
     Background Colour, 15129855
     Foreground Colour, 255
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 001
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 427.59617024
      2 YAxis, 200-000-003, 416.0337704
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.785640192
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 28.0699033164
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 46.88803584
      2 YAxis, 200-000-003, 200.168492
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 48.20707544
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 646.300896
      2 YAxis, 200-000-003, 605.8877768
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 27.9216691908
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 1166.60292352
      2 YAxis, 200-000-003, 102.6233552
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 3.757596341
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 347.11188864
      2 YAxis, 200-000-003, 16.7807456
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.88771667
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 74.06003328
      2 YAxis, 200-000-003, 41.4572928
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 14.811626328
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 911.51051264
      2 YAxis, 200-000-003, 795.8956384
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 14.7665828496
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 002
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 655.28425344
      2 YAxis, 200-000-003, 658.8011408
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 9.2714497616
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 26.7581927778
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 0.25426816
      2 YAxis, 200-000-003, 741.3206336
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 43.50848381
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 723.65642368
      2 YAxis, 200-000-003, 341.452356
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 23.1110555478
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 938.56301056
      2 YAxis, 200-000-003, 757.2442976
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 4.201961375
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 772.6406528
      2 YAxis, 200-000-003, 284.7565792
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.9501627026
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 188.52133248
      2 YAxis, 200-000-003, 541.9807808
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 14.807369607
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 1079.41840768
      2 YAxis, 200-000-003, 311.166408
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 10.1759364048
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 003
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 848.96930432
      2 YAxis, 200-000-003, 265.0507304
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 7.6443648416
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 37.4337501846
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 1187.39938944
      2 YAxis, 200-000-003, 605.0982688
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 60.54401564
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 732.51066624
      2 YAxis, 200-000-003, 768.1077848
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 40.3493346564
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 3.38200832
      2 YAxis, 200-000-003, 666.9498096
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 4.02700148
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 128.79490304
      2 YAxis, 200-000-003, 507.0281296
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 7.2346961092
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 723.03219584
      2 YAxis, 200-000-003, 261.8645112
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 19.129580349
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 235.24281472
      2 YAxis, 200-000-003, 341.756196
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 11.4719940552
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 004
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 178.1048448
      2 YAxis, 200-000-003, 541.0858776
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 7.5118469216
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 28.8787807176
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 879.82091264
      2 YAxis, 200-000-003, 666.1541016
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 38.00541347
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 537.06280448
      2 YAxis, 200-000-003, 406.5160296
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 37.035743613
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 683.73001088
      2 YAxis, 200-000-003, 161.099128
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 4.624584707
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 92.54444032
      2 YAxis, 200-000-003, 139.5225472
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 6.4381048606
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 424.92453504
      2 YAxis, 200-000-003, 52.7944568
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 12.275235834
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 370.05851648
      2 YAxis, 200-000-003, 481.2638352
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 15.13940034
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 005
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 955.40648448
      2 YAxis, 200-000-003, 713.14154
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 5.9812387088
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 24.0773342766
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 848.55286144
      2 YAxis, 200-000-003, 392.9056992
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 60.54480968
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 1098.02865792
      2 YAxis, 200-000-003, 501.7987696
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 41.304031692
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 1187.19958656
      2 YAxis, 200-000-003, 224.8926112
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 4.738102031
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 193.42594048
      2 YAxis, 200-000-003, 716.0267864
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.9080060552
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 507.4137216
      2 YAxis, 200-000-003, 524.169212
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 10.955912595
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 931.78898432
      2 YAxis, 200-000-003, 514.732044
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 12.4652830584
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 006
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 228.16625536
      2 YAxis, 200-000-003, 136.54326
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.4361881872
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 38.855844258
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 1109.72037376
      2 YAxis, 200-000-003, 155.139192
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 38.26122869
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 30.20824192
      2 YAxis, 200-000-003, 13.3881944
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 38.7225717252
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 919.46289152
      2 YAxis, 200-000-003, 410.5870896
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 4.755792743
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 972.33136256
      2 YAxis, 200-000-003, 105.388604
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 5.9870034238
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 464.51920384
      2 YAxis, 200-000-003, 546.8395944
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 17.716334982
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 942.17557632
      2 YAxis, 200-000-003, 72.0583504
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 12.5287593168
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 007
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 926.87079936
      2 YAxis, 200-000-003, 559.0346696
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 9.0734337008
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 41.633295396
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 1008.99682688
      2 YAxis, 200-000-003, 221.0660416
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 56.26787603
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 298.0627712
      2 YAxis, 200-000-003, 384.4082712
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 36.5529221772
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 872.77390976
      2 YAxis, 200-000-003, 605.0871792
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 3.517697789
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 647.62331136
      2 YAxis, 200-000-003, 729.2201696
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 9.0915412084
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 161.54771584
      2 YAxis, 200-000-003, 443.9058264
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 17.035345851
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 445.30971776
      2 YAxis, 200-000-003, 377.018256
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 10.3762630632
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 008
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 436.58022912
      2 YAxis, 200-000-003, 661.580504
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 6.0406484864
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35.6680665132
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 247.83180032
      2 YAxis, 200-000-003, 611.5228632
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 46.56762098
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 579.1526848
      2 YAxis, 200-000-003, 166.882468
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 33.7812182664
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 670.07034752
      2 YAxis, 200-000-003, 588.1072496
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 4.402063328
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 991.95834112
      2 YAxis, 200-000-003, 312.8336176
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.3167351456
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 408.67857792
      2 YAxis, 200-000-003, 470.9183448
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 16.750069098
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 1074.10592
      2 YAxis, 200-000-003, 679.1016672
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 11.8550922816
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 009
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 150.31296256
      2 YAxis, 200-000-003, 249.9045992
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 9.1666452032
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 29.7041906238
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 243.69742336
      2 YAxis, 200-000-003, 90.153744
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 35.13203114
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 258.51040384
      2 YAxis, 200-000-003, 511.4423984
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 25.6043545098
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 823.83644928
      2 YAxis, 200-000-003, 487.5598848
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 5.530738193
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 1168.95505152
      2 YAxis, 200-000-003, 330.1411152
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.9160288364
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 835.79433216
      2 YAxis, 200-000-003, 779.3008656
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 19.315794615
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 57.63462784
      2 YAxis, 200-000-003, 452.476324
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 14.3714115048
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     --------------------------------------------------
     --------------------------------------------------
     Trial 010
     Step 001
     
     01 Gladys, 300-000-027
      1 XAxis, 200-000-002, 209.33908224
      2 YAxis, 200-000-003, 367.7731736
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 9.8070138272
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 13487565
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 36.4826949234
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     02 Editor, 300-000-028
      1 XAxis, 200-000-002, 817.42264576
      2 YAxis, 200-000-003, 188.1263496
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 63.63425324
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65535
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 0
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     03 Agent, 300-000-029
      1 XAxis, 200-000-002, 245.59888384
      2 YAxis, 200-000-003, 136.3193136
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 27.5474096304
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16777215
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 10
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     04 PrfRdr, 300-000-030
      1 XAxis, 200-000-002, 290.57498752
      2 YAxis, 200-000-003, 480.4406176
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 5.146860812
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 39680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 40
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     05 Printer, 300-000-031
      1 XAxis, 200-000-002, 559.56069632
      2 YAxis, 200-000-003, 45.5272016
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 5.1327651004
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 65280
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 35
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     06 Writer1, 300-000-032
      1 XAxis, 200-000-002, 156.83582848
      2 YAxis, 200-000-003, 699.9885136
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 10.772064402
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 15624315
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 20
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9
     
     
     07 Writer2, 300-000-033
      1 XAxis, 200-000-002, 1041.77510272
      2 YAxis, 200-000-003, 257.4120168
      3 Length, 200-000-005, 0.2
      4 Height, 200-000-007, 1.8
      5 Radius, 200-000-008, 8.707540368
      6 Angle, 200-000-009, 135
      7 Colour, 200-000-033, 16711680
      8 LthlWtR, 200-000-037, 1
      9 Rank, 200-000-038, 80
     10 Health, 200-000-041, 70
     11 Speed, 200-000-048, 25
     12 SpdMxmm, 200-000-049, 27
     13 SwmmngS, 200-000-050, 9

    In theory, there is nothing to stop you constructing such a file manually but in practice this is going to be difficult.

    Constructing Trials for Classes 21, 22, 23 and 24

    Before reading any further you should read the following, which will greatly clarify matters:

    1. Read 'FAQ ⇨ Methods ⇨ Q9'
    2. Read 'Guide ⇨ Workshop ⇨ Create Dynamic Trials'

    You should deduce from this that the raw data constituting the Dynamic Trial is typically huge and looks like this file ...

    2012-08-13@13.10.07 Brian Expands by 20 percent per Step Trial 10 Steps 15 V001.mpkt

    ... which is found here ...

    C:\MOPEKS\Factory\Trials\SafariPark\Dynamic

    ... and looks like this:

    Foreground Colour, 255
    --------------------------------------------------
    --------------------------------------------------
    Trial 001
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 001
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1222.95520384
    2 YAxis, 200-000-003, 6.7086368
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 198
    2 YAxis, 200-000-003, 506
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 248
    2 YAxis, 200-000-003, 547
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 12
    13 SpdMxmm, 200-000-049, 20
    14 SwmmngS, 200-000-050, 3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 281
    2 YAxis, 200-000-003, 444
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 9
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 124
    2 YAxis, 200-000-003, 118
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1164
    2 YAxis, 200-000-003, 110
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 25
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 358
    2 YAxis, 200-000-003, 693
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 28
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 002
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 002
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 989.3557952
    2 YAxis, 200-000-003, 720.2111256
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 674.01100928
    2 YAxis, 200-000-003, 392.1100912
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 277
    2 YAxis, 200-000-003, 339
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 177
    2 YAxis, 200-000-003, 162
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 545.0955136
    2 YAxis, 200-000-003, 701.273104
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 609.97101696
    2 YAxis, 200-000-003, 321.1968744
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 185
    2 YAxis, 200-000-003, 438
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 003
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 003
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 981
    2 YAxis, 200-000-003, 365
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1101
    2 YAxis, 200-000-003, 612
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 112
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1191
    2 YAxis, 200-000-003, 523
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1085
    2 YAxis, 200-000-003, 439
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 165
    2 YAxis, 200-000-003, 638
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 93
    2 YAxis, 200-000-003, 101
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 29
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 795
    2 YAxis, 200-000-003, 562
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 004
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 004
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 233.81214592
    2 YAxis, 200-000-003, 228.2361936
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 232.77198208
    2 YAxis, 200-000-003, 589.43512
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 178.51579392
    2 YAxis, 200-000-003, 35.4409376
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1238.65812992
    2 YAxis, 200-000-003, 682.6660216
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 851.8145536
    2 YAxis, 200-000-003, 54.4479608
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 785.50862976
    2 YAxis, 200-000-003, 320.38146
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 960.10360064
    2 YAxis, 200-000-003, 591.4243216
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 005
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 005
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 327.48118016
    2 YAxis, 200-000-003, 693.7564312
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 563.53189888
    2 YAxis, 200-000-003, 70.9731368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 790.52199808
    2 YAxis, 200-000-003, 614.0487264
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 334.63932416
    2 YAxis, 200-000-003, 300.1512688
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1230.25264384
    2 YAxis, 200-000-003, 776.8295056
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 921.21709312
    2 YAxis, 200-000-003, 128.8893984
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 828.96891776
    2 YAxis, 200-000-003, 520.1887552
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 006
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 006
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 8.16868992
    2 YAxis, 200-000-003, 171.0102704
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 1226.7187072
    2 YAxis, 200-000-003, 381.0108344
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 306.22726912
    2 YAxis, 200-000-003, 2.6370304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 426.02084096
    2 YAxis, 200-000-003, 437.1671648
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 998.25595392
    2 YAxis, 200-000-003, 798.5195304
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 362.44228224
    2 YAxis, 200-000-003, 222.7757368
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 699.054144
    2 YAxis, 200-000-003, 491.6994992
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 007
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 007
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 1248.3130624
    2 YAxis, 200-000-003, 297.746848
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 322.82388352
    2 YAxis, 200-000-003, 719.0834936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 1112.32918272
    2 YAxis, 200-000-003, 694.8998304
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 906.76040064
    2 YAxis, 200-000-003, 323.9024936
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 979.38935296
    2 YAxis, 200-000-003, 799.2798968
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 759.75048832
    2 YAxis, 200-000-003, 163.4582928
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 0.3597312
    2 YAxis, 200-000-003, 225.913732
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 008
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 008
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 827.48097664
    2 YAxis, 200-000-003, 635.7937408
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 193.84707712
    2 YAxis, 200-000-003, 143.1505544
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 20
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 20.79785472
    2 YAxis, 200-000-003, 557.662696
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1025.97999232
    2 YAxis, 200-000-003, 253.0537768
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 500.29394688
    2 YAxis, 200-000-003, 554.741072
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 1048.42098432
    2 YAxis, 200-000-003, 643.2437488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 269.79785472
    2 YAxis, 200-000-003, 507.662696
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 009
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 009
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 922.76503296
    2 YAxis, 200-000-003, 49.5523432
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 236.10276992
    2 YAxis, 200-000-003, 496.8033424
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 38.57040384
    2 YAxis, 200-000-003, 610.5028408
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 164.46347776
    2 YAxis, 200-000-003, 321.6784208
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 1001.96416128
    2 YAxis, 200-000-003, 574.3483392
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 485.703584
    2 YAxis, 200-000-003, 595.6128488
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 158.58293632
    2 YAxis, 200-000-003, 618.7789936
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    --------------------------------------------------
    Trial 010
    Step 001

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 5
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 002

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 6.1
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 003

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 7.442
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 004

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 9.07924
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 005

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 11.0766728
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 006

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 13.513540816
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 007

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 16.48651979552
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 008

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 20.1135541505344
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 009

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 24.538536063652
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 010

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 29.9370139976554
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 011

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 36.5231570771396
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 012

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 44.5582516341103
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 013

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 54.3610669936146
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 014

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 66.3205017322097
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    --------------------------------------------------
    Trial 010
    Step 015

    01 Goat, 300-000-005
    1 XAxis, 200-000-002, 503.24130176
    2 YAxis, 200-000-003, 668.9808016
    3 Length, 200-000-005, 1
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 3
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 50
    8 Colour, 200-000-033, 10526880
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 10
    13 SpdMxmm, 200-000-049, 15
    14 SwmmngS, 200-000-050, 1.3
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    02 Lake, 300-000-012
    1 XAxis, 200-000-002, 237.80371456
    2 YAxis, 200-000-003, 651.667288
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 200
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 16711937
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 1

    03 Brian, 300-000-015
    1 XAxis, 200-000-002, 651.71942144
    2 YAxis, 200-000-003, 517.3411872
    3 Length, 200-000-005, 0.2
    4 Height, 200-000-007, 1.8
    5 Radius, 200-000-008, 80.9110121132959
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 6711039
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 74
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 27
    14 SwmmngS, 200-000-050, 9
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    04 LeoLion, 300-000-016
    1 XAxis, 200-000-002, 1200.59051136
    2 YAxis, 200-000-003, 729.0364128
    3 Length, 200-000-005, 1.5
    4 Height, 200-000-007, 1
    5 Radius, 200-000-008, 7
    6 Angle, 200-000-009, 90
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1052927
    9 LthlWtR, 200-000-037, 1
    10 Rank, 200-000-038, 75
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 20
    13 SpdMxmm, 200-000-049, 30
    14 SwmmngS, 200-000-050, 10
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 0

    05 House, 300-000-017
    1 XAxis, 200-000-002, 30.14941312
    2 YAxis, 200-000-003, 763.5632408
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 3430283
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99

    06 QckSnd, 300-000-018
    1 XAxis, 200-000-002, 618.9829248
    2 YAxis, 200-000-003, 234.40918
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 50
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 0
    9 LthlWtR, 200-000-037, 20
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9

    07 Spinach, 300-000-019
    1 XAxis, 200-000-002, 428.55331456
    2 YAxis, 200-000-003, 286.5472664
    3 Length, 200-000-005, 0
    4 Height, 200-000-007, 0
    5 Radius, 200-000-008, 30
    6 Angle, 200-000-009, 0
    7 Elstcty, 200-000-014, 0
    8 Colour, 200-000-033, 1152000
    9 LthlWtR, 200-000-037, 0
    10 Rank, 200-000-038, 0
    11 Health, 200-000-041, 70
    12 Speed, 200-000-048, 0
    13 SpdMxmm, 200-000-049, 0
    14 SwmmngS, 200-000-050, 0
    15 Store1, 200-000-058, 0
    16 Depth, 200-000-053, 9.99


    This file is huge (scroll down with your mouse wheel to appreciate this). In theory, there is nothing to stop you constructing such a file manually but in practice this is going to be almost impossible.

    You should also have noticed that currently, you can only construct Dynamic Trials by using one of the following techniques:

    Case 0: Object A moves TOWARDS Object B
    Case 1: Object A moves AWAY from Object B
    Case 2: Object A moves in a clockwise tangent around Object B
    Case 3: Object A moves in a clockwise orbit around Object B
    Case 4: Object A moves in an anti-clockwise tangent around Object B
    Case 5: Object A moves in an anti-clockwise orbit around tObject B
    Case 6: Object A moves at an angle of X to the Vertical
    Case 7: Object A expands by percentage rate X

    These are intended to be illustrative and you can, if you wish, construct a computer program to enable you to build such files using any actions you can think of.

    This is really a stop-gap as the intention is that such files will be constructed by MOPEKS itself by observing the real world through a stereo camera. See Guide ⇨ Darkroom

    Back to Top

    23. What is the 'Score' of a Method?

    The Score of a Method is typically the 'Correct Answer' divided by the total error over all of the trials. If the error is 'zero' then the score is set to '3E+17'.

    It is an attempt to assess the 'Fitness', in a Darwinian sense, of that particular Method. The higher the Score, the more likely the Method is to get into the Breeding Pool. Any Method outside the Pool has ceased to exist!

    Back to Top

    24. Not in Use

    Back to Top

    25. Not in Use

    Back to Top


    MOPEKS® and the Blue Logo are the Registered Trademarks of the MOPEKS Organisation
    Website Published: 15th October 2013
    Program Launched: 2nd November 2013
    Copyright © MOPEKS Organisation 2013. All rights reserved
    'MOPEKS Organisation' is the Trading name of Mopeks Ltd a company registered in England under number 07519676
    The robot docking station is here here