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
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
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
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
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:
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
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:
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".
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
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.
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".
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
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.
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.
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
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').
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:
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:
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:
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:
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
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').
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.
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:
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:
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:
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
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').
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
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
Back to Top
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
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
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:
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;
Li