POV-Ray : Newsgroups : povray.newusers : Creating Coordinate Map Server Time
30 Jul 2024 00:24:07 EDT (-0400)
  Creating Coordinate Map (Message 1 to 10 of 12)  
Goto Latest 10 Messages Next 2 Messages >>>
From: Fyretrohl
Subject: Creating Coordinate Map
Date: 22 Jan 2005 15:55:00
Message: <web.41f2bc7a8d0f04fcfb0877fb0@news.povray.org>
I would like to create a map system that is able to be changed easily and
rerendered.  I have a serious of X, Y coordinates that would create points
of interest.  At times, these points of interest may change possession.  I
would want to change the color of them at that time.  Also, some may hold
duel possession and I would want to create a color scheme then that would
show both parties of possession.

For those familiar with the game, I am working on a map of the Inner Sphere
from Battletech.  The goal is to use a database of sometype to store the
coordinate and planet information.  If a planet is held by more than 1
group, it would show a mix.  Otherwise, it would show home color.  Once the
picture is generated, I want to create a coordinate field over the top of
it for web use that will show information on the planet when you hover over
it.  Any ideas?

And, yes, I am new.  For now, I will be happy to get an initial copy done.
Once I see how it works, I THINK I can create a script that will update the
data in the rendering file to bring it up to date with the database.


Post a reply to this message

From: Fyretrohl
Subject: Re: Creating Coordinate Map
Date: 22 Jan 2005 18:00:00
Message: <web.41f2da74e81e8130fb0877fb0@news.povray.org>
Okay, I figure out how to create the spheres using a SQL script and know how
to get it to do the static parts of the document as well.  However, I still
need to figure out how to do the lighting and a good way to do the camera.
This is all on one plane.  It is a flat map.  So, I want the lighting to be
the same over the whole map.  I want the camera to just be fairly simple,
but, the coords are pretty large.  I am using size 1 spheres right now and
have a test camera at 0,0,500.  However, that is not what I really want.
Again, I want to be looking down on a 2D map, more or less.  Thoughts on
lights and camera settings?  Examples?

"Fyretrohl" <fyr### [at] ccgheavencom> wrote:
> I would like to create a map system that is able to be changed easily and
> rerendered.  I have a serious of X, Y coordinates that would create points
> of interest.  At times, these points of interest may change possession.  I
> would want to change the color of them at that time.  Also, some may hold
> duel possession and I would want to create a color scheme then that would
> show both parties of possession.
>
> For those familiar with the game, I am working on a map of the Inner Sphere
> from Battletech.  The goal is to use a database of sometype to store the
> coordinate and planet information.  If a planet is held by more than 1
> group, it would show a mix.  Otherwise, it would show home color.  Once the
> picture is generated, I want to create a coordinate field over the top of
> it for web use that will show information on the planet when you hover over
> it.  Any ideas?
>
> And, yes, I am new.  For now, I will be happy to get an initial copy done.
> Once I see how it works, I THINK I can create a script that will update the
> data in the rendering file to bring it up to date with the database.


Post a reply to this message

From: Slime
Subject: Re: Creating Coordinate Map
Date: 22 Jan 2005 18:14:53
Message: <41f2de6d$1@news.povray.org>
> Okay, I figure out how to create the spheres using a SQL script

That's "SDL."

> This is all on one plane.  It is a flat map.  So, I want the lighting to
be
> the same over the whole map.

Well, I would place all of the objects on the X-Y plane. Then you could
place a primary light source way off in the distance behind the camera:

light_source {
    <-.3,.4,-1>*9999
    rgb 1
}

And maybe a secondary light source for back lighting from the other side of
the X-Y plane:

light_source {
    <.3,-.4,1>*9999 // same as other light's position but negative
    rgb <0.75, 0.8, 1> // slightly bluish for a darker look; experiment!
}

(You could experiment with "parallel" light sources rather than just putting
them really far away as I have. Check the documentation.)

> I want the camera to just be fairly simple,
> but, the coords are pretty large.

Then you probably want an orthographic camera:

#declare maxdist = 100; // the maximum distance that an object can be from
the origin and still be visible

camera {
    orthographic
    location -z*10
    right x*maxdist*4/3
    up y*maxdist
    look_at 0
}

> > The goal is to use a database of sometype to store the
> > coordinate and planet information.

If you have the data in some sort of comma-separated format, then you can
read it in with SDL using #fopen and #read.

> > Once the
> > picture is generated, I want to create a coordinate field over the top
of
> > it for web use that will show information on the planet when you hover
over
> > it.

That's a little more difficult, but it would be possible to use #fopen and
#write to actually write out an HTML image map corresponding to your image.
This will have to be accompianied by some JavaScript to display information
with onmouseover. If you're not familiar with this sort of thing then you
should probably learn to do it by hand first before worrying about making
POV-Ray automatically do it.

 - Slime
 [ http://www.slimeland.com/ ]


Post a reply to this message

From: Fyretrohl
Subject: Re: Creating Coordinate Map
Date: 22 Jan 2005 21:45:00
Message: <web.41f30f65e81e8130fb0877fb0@news.povray.org>
OKay, this helped a lot.  But, I need the lighting to be brighter.  It is
hard to see the planets.  I probably need to find a different color
background than black, but, white is not a good choice either.

"Slime" <fak### [at] emailaddress> wrote:
> > Okay, I figure out how to create the spheres using a SQL script
>
> That's "SDL."
>
> > This is all on one plane.  It is a flat map.  So, I want the lighting to
> be
> > the same over the whole map.
>
> Well, I would place all of the objects on the X-Y plane. Then you could
> place a primary light source way off in the distance behind the camera:
>
> light_source {
>     <-.3,.4,-1>*9999
>     rgb 1
> }
>
> And maybe a secondary light source for back lighting from the other side of
> the X-Y plane:
>
> light_source {
>     <.3,-.4,1>*9999 // same as other light's position but negative
>     rgb <0.75, 0.8, 1> // slightly bluish for a darker look; experiment!
> }
>
> (You could experiment with "parallel" light sources rather than just putting
> them really far away as I have. Check the documentation.)
>
> > I want the camera to just be fairly simple,
> > but, the coords are pretty large.
>
> Then you probably want an orthographic camera:
>
> #declare maxdist = 100; // the maximum distance that an object can be from
> the origin and still be visible
>
> camera {
>     orthographic
>     location -z*10
>     right x*maxdist*4/3
>     up y*maxdist
>     look_at 0
> }
>
> > > The goal is to use a database of sometype to store the
> > > coordinate and planet information.
>
> If you have the data in some sort of comma-separated format, then you can
> read it in with SDL using #fopen and #read.
>
> > > Once the
> > > picture is generated, I want to create a coordinate field over the top
> of
> > > it for web use that will show information on the planet when you hover
> over
> > > it.
>
> That's a little more difficult, but it would be possible to use #fopen and
> #write to actually write out an HTML image map corresponding to your image.
> This will have to be accompianied by some JavaScript to display information
> with onmouseover. If you're not familiar with this sort of thing then you
> should probably learn to do it by hand first before worrying about making
> POV-Ray automatically do it.
>
>  - Slime
>  [ http://www.slimeland.com/ ]


Post a reply to this message

From: Fyretrohl
Subject: Re: Creating Coordinate Map
Date: 22 Jan 2005 23:45:00
Message: <web.41f32b34e81e8130976ca04d0@news.povray.org>
Another thought...

Is it possible to make the Spheres themselves light sources?  I need them to
stand out, but, because they are so small and so far away, I am not seeing
some of them well.  The background color is hurting me as well.

"Fyretrohl" <fyr### [at] ccgheavencom> wrote:
> OKay, this helped a lot.  But, I need the lighting to be brighter.  It is
> hard to see the planets.  I probably need to find a different color
> background than black, but, white is not a good choice either.
>
> "Slime" <fak### [at] emailaddress> wrote:
> > > Okay, I figure out how to create the spheres using a SQL script
> >
> > That's "SDL."
> >
> > > This is all on one plane.  It is a flat map.  So, I want the lighting to
> > be
> > > the same over the whole map.
> >
> > Well, I would place all of the objects on the X-Y plane. Then you could
> > place a primary light source way off in the distance behind the camera:
> >
> > light_source {
> >     <-.3,.4,-1>*9999
> >     rgb 1
> > }
> >
> > And maybe a secondary light source for back lighting from the other side of
> > the X-Y plane:
> >
> > light_source {
> >     <.3,-.4,1>*9999 // same as other light's position but negative
> >     rgb <0.75, 0.8, 1> // slightly bluish for a darker look; experiment!
> > }
> >
> > (You could experiment with "parallel" light sources rather than just putting
> > them really far away as I have. Check the documentation.)
> >
> > > I want the camera to just be fairly simple,
> > > but, the coords are pretty large.
> >
> > Then you probably want an orthographic camera:
> >
> > #declare maxdist = 100; // the maximum distance that an object can be from
> > the origin and still be visible
> >
> > camera {
> >     orthographic
> >     location -z*10
> >     right x*maxdist*4/3
> >     up y*maxdist
> >     look_at 0
> > }
> >
> > > > The goal is to use a database of sometype to store the
> > > > coordinate and planet information.
> >
> > If you have the data in some sort of comma-separated format, then you can
> > read it in with SDL using #fopen and #read.
> >
> > > > Once the
> > > > picture is generated, I want to create a coordinate field over the top
> > of
> > > > it for web use that will show information on the planet when you hover
> > over
> > > > it.
> >
> > That's a little more difficult, but it would be possible to use #fopen and
> > #write to actually write out an HTML image map corresponding to your image.
> > This will have to be accompianied by some JavaScript to display information
> > with onmouseover. If you're not familiar with this sort of thing then you
> > should probably learn to do it by hand first before worrying about making
> > POV-Ray automatically do it.
> >
> >  - Slime
> >  [ http://www.slimeland.com/ ]


Post a reply to this message

From: Slime
Subject: Re: Creating Coordinate Map
Date: 23 Jan 2005 00:18:56
Message: <41f333c0$1@news.povray.org>
> > OKay, this helped a lot.  But, I need the lighting to be brighter.  It
is
> > hard to see the planets.  I probably need to find a different color
> > background than black, but, white is not a good choice either.

> Is it possible to make the Spheres themselves light sources?  I need them
to
> stand out, but, because they are so small and so far away, I am not seeing
> some of them well.  The background color is hurting me as well.

I would start with a black background. It should be possible to make very
visible spheres with good colors - that back light should even help to
define their edges (providing I placed it well, but I didn't test the code I
gave you).

What color are you using for your spheres?

It's possible to turn the spheres into light sources, but that won't make
them any brighter (they'll brighten up other nearby things, but that's
probably not what you want). That's a bad idea though, since it will really
slow things down with a lot of spheres. Emitting media is a better choice,
but first let's just see if we can create the effect you want through a
pigment.

 - Slime
 [ http://www.slimeland.com/ ]


Post a reply to this message

From: Fyretrohl
Subject: Re: Creating Coordinate Map
Date: 23 Jan 2005 00:55:00
Message: <web.41f33b31e81e8130fb0877fb0@news.povray.org>
The long answer...

Colors first...Just copied some existing ones...

#declare AR      = color red 1 green 0.5 blue 0.0;
#declare CAP     = color red 0.419608 green 0.556863 blue 0.137255;
#declare CC      = color red 0.419608 green 0.556863 blue 0.137255;
#declare CM      = color red 0.847059 green 0.847059 blue 0.74902;
#declare CP      = color red 1.00 green 0.43 blue 0.78;
#declare CS      = rgb 1;
#declare DC      = color red 0.55 green 0.09 blue 0.09;
#declare DS      = color red 0.85 green 0.85 blue 0.10;
#declare FC      = color red 0.858824 green 0.858824 blue 0.439216;
#declare FRR     = color red 0.498039 blue 1.0;
#declare FWL     = color red 0.53 green 0.12 blue 0.47;
#declare LA      = color red 0.35 green 0.35 blue 0.67;
#declare LC      = color red 0.35 green 0.35 blue 0.67;
#declare OA      = color red 0.92 green 0.78 blue 0.62;
#declare P       = color red 0.91 green 0.76 blue 0.65;
#declare SC      = color red 0.560784 green 0.737255 blue 0.560784;
#declare SIC     = color red 0.137255 green 0.556863 blue 0.419608;
#declare SS      = color red 0.6 green 0.8 blue 0.196078;
#declare ST      = color red 0.71 green 0.65 blue 0.26;
#declare TC      = color red 0.196078 green 0.6 blue 0.8;
#declare TCC     = color green 1.0 blue 0.498039;
#declare TFR     = color red 0.29 green 0.46 blue 0.43;
#declare TH      = color red 0.439216 green 0.858824 blue 0.576471;
#declare WOB     = color red 0.658824 green 0.658824 blue 0.658824;
#declare CGB     = color red 0.74902 green 0.847059 blue 0.847059;
#declare CJF     = color red 0.13 green 0.37 blue 0.31;
#declare CNC     = color red 0.752941 green 0.752941 blue 0.752941;
#declare CSJ     = color red 0.80 green 0.80 blue 0.80;
#declare CSV     = color red 1.00 green 0.11 blue 0.68;
#declare CW      = color red 0.647059 green 0.164706 blue 0.164706;

Now, the long one...The actual file right now...I left out a ton of the
rows, but, gave a large enough sample to get an idea...

// Standard pre-defined colors
//
#include "colors.inc"

// macros for generating various shapes
//
#include "shapes.inc"

// some standard finishes
#include "finish.inc"

  //finish {
    //Dull               // large, soft highlight
    //Shiny            // small, tight highlight

    //Phong_Dull       // less "realistic" but sometimes useful phong
highlight
    //Phong_Shiny      // same in "shiny"

    //Glossy           // very tight highlights and some reflection
    //Phong_Glossy     // phong version of the same

    //Luminous         // totally ambient not influenced by light sources
(for example sky)
    //Mirror           // perfect mirror without highlights
  //}

#declare maxdist = 1000;

// perspective (default) camera
//camera {
//  location  <0.0, 0.0, 1000>
//  look_at   <0.0, 0.0,  0.0>
//  }

camera {
    orthographic
    location -z*10
    right x*maxdist*4/3
    up y*maxdist
    look_at 0
}


light_source {
    <-.3,.4,-1>*9999
    rgb 1
}


light_source {
    <.3,-.4,1>*9999 // same as other light's position but negative
    rgb <0.75, 0.8, 1> // slightly bluish for a darker look; experiment!
}

//IS Factions:                                Clan Factions:
//------------                                --------------
//CC  - Cappellan Confederation               CGB - Clan Ghost Bears
//CM  - Chaos March                           CJF - Clan Jade Falcons
//CS  - Comstar                               CNC - Clan Nova Cats
//DC  - Draconis Combine                      CSJ - Clan Smoke Jaguars
//FC  - Federated Commonwealth                CSV - Clan Steel Vipers
//FRR - Free Rasalhague Republic              CW  - Wolf Clan
//FWL - Free World Leage
//LA  - Lyran Alliance
//LC  - Lyran Commonwealth
//OA  - Outworlds Alliance
//P   - Periphery
//SIC - St Ives Compact
//TC  - Taurian Concordat
//TFR - Tikonov Free Republic
//TH  - Terran Hegemony
//WOB - Word of Blake


sphere {<-125.18, 274.88, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color AR}}}
sphere {<-70.94, -96.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<383.64, 317.65, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-320.78, 248.8, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<611.32, -40.16, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-302.01, 128.57, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-434.75, 59.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<352.6, 317.39, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-333.82, -28.95, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<150.74, -306.96, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<135.36, -125.44, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<39.9, -38.86, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CM}}}
sphere {<-10.17, 146.31, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<77.98, -32.6, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-278.8, -190.38, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-355.47, 15.39, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-52.68, -51.12, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<365.12, 377.9, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<72.24, -0.26, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-252.72, 318.18, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<477, -247.5, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-106.15, -51.64, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-124.4, -473.09, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color P}}}
sphere {<453.27, 28.43, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<256.11, 187.25, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<393.29, -292.1, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-388.33, 102.49, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-166.13, -167.96, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<76.68, 164.04, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-385.2, 177.87, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-23.47, 180.21, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FRR}}}
sphere {<-416.5, 12.26, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-185.43, -284.27, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<60.77, 31.56, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-323.13, 138.22, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<71.72, 79.28, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-271.23, -133.01, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<151.79, 359.9, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSJ}}}
sphere {<-68.33, 1.83, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-75.37, 29.21, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<130.92, -199.25, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<25.04, -64.94, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CAP}}}
sphere {<45.12, -192.73, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-407.11, 185.43, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-58.16, 117.1, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<326.52, 381.55, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<66.76, 96.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-463.44, 155.44, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<65.46, -68.33, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-115.01, 15.13, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<86.59, -83.46, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-83.2, -14.6, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-59.46, 14.08, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-94.93, 47.47, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-36.25, 45.64, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-115.8, -31.04, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-9.91, 409.72, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<265.76, 7.3, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-185.17, 187.78, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<101.71, -62.07, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<165.09, 400.59, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSJ}}}
sphere {<2.87, 117.1, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-356.77, -86.59, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-65.98, -52.42, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-47.2, 62.59, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<507.52, 154.39, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color OA}}}
sphere {<-20.08, 82.67, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<85.28, -49.81, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<318.44, -240.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<58.68, 281.14, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CGB}}}
sphere {<511.17, 13.04, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<9.39, 14.08, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<37.56, 110.84, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<336.17, 120.49, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<13.82, 225.85, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<-205.77, -156.22, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-436.32, -26.34, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<286.1, 425.36, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<555.5, -4.17, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-2.87, -265.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-24.52, -4.69, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-261.32, -54.51, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<26.6, 97.54, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-136.14, 344, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<84.24, -259.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color SIC}}}
sphere {<166.65, -85.28, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-130.14, -31.04, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-414.93, 201.34, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<304.35, 110.84, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<302.01, -314.52, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<76.15, 36.51, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<394.85, -110.06, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-3.39, -389.9, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<146.05, -174.48, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-39.9, -318.7, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-49.81, -218.55, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-291.31, 317.65, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-99.1, -84.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<88.67, -39.12, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<415.72, 80.33, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<591.76, -78.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<75.37, -9.39, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-219.07, -223.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<166.13, 131.96, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-242.28, 361.99, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-125.97, 300.44, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSV}}}
sphere {<333.82, -138.22, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-95.71, -271.23, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-168.74, 439.97, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<-117.36, 343.47, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<-130.66, 436.32, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<-60.24, 156.74, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<174.74, 122.58, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<43.55, -51.9, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CM}}}
sphere {<-172.13, 228.72, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color AR}}}
sphere {<-188.04, -8.08, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-78.76, 176.04, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<46.68, 248.02, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CGB}}}
sphere {<96.24, -175.52, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-156.22, 36.51, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<257.67, -110.06, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-116.84, -99.36, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-185.17, 65.72, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<77.98, 202.64, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<214.64, 100.67, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-284.01, 336.95, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<107.45, -207.6, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color SIC}}}
sphere {<424.58, -306.44, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<588.89, 37.03, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<349.99, -289.23, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<21.12, 75.11, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-100.93, -114.75, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-101.45, -119.19, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<127.79, 268.62, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSJ}}}
sphere {<-265.76, -141.09, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<74.07, 68.07, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<112.93, -101.97, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<165.87, -311.13, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-120.23, -383.9, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<4.17, 25.82, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<5.22, -102.49, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<17.73, 31.3, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<158.83, -246.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-172.39, 247.5, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color AR}}}
sphere {<-192.73, -165.35, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-16.17, 52.16, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CP}}}
sphere {<-202.9, -229.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-381.03, -178.13, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<4.43, 147.87, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<178.13, -298.88, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<284.79, -99.89, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-44.08, -77.46, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-38.86, 140.83, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-148.13, 135.62, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-306.96, 292.1, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-169, -88.15, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<166.39, -29.73, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-58.16, -82.93, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<154.39, -277.49, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-117.88, -164.56, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<151.26, 254.28, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CNC}}}
sphere {<96.76, 162.48, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<128.31, -114.23, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-406.85, 53.46, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-394.33, -143.18, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-173.95, -305.4, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<54.25, -51.9, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-138.75, 310.61, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color AR}}}
sphere {<88.67, 225.33, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-490.83, 126.23, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color P}}}
sphere {<158.57, -291.84, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<425.89, 197.16, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-142.66, -83.98, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-105.36, 327.04, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<80.59, 189.86, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-444.84, 236.81, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color P}}}
sphere {<-82.93, 248.54, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<29.21, 416.5, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<363.03, 222.72, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<13.3, -178.91, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<178.13, 352.86, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSJ}}}
sphere {<453.27, -261.32, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-206.55, 415.19, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-124.66, -268.88, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<307.22, 63.64, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<174.74, 67.55, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<21.12, -357.3, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<172.13, -41.21, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-353.64, 237.59, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<66.76, -29.21, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<367.73, -286.88, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-37.29, 344.52, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<594.1, 4.96, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<299.92, -161.44, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<568.28, 61.03, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-373.2, 119.45, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<202.9, -55.81, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<436.06, -151.26, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-31.56, 113.71, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-244.89, -298.88, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<589.15, 40.16, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-125.71, -77.98, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<185.43, -50.6, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<185.43, -271.23, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<125.71, -245.93, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<337.48, -276.71, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<105.1, -110.84, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-261.58, -44.6, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<265.23, -125.71, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<54.77, -354.69, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<330.96, -58.15, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<477.52, -11.48, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<265.23, 58.68, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-73.55, 263.15, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSV}}}
sphere {<125.18, 135.88, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-129.88, 448.58, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSV}}}
sphere {<-7.04, -235.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-13.82, -71.72, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<268.36, 75.63, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-21.39, -94.93, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-25.82, 279.32, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<320, 130.4, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-156.22, 387.81, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<5.74, -309.57, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<167.17, -114.23, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<141.88, -185.69, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<267.32, 26.08, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<59.46, -41.99, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<149.96, 230.03, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<72.5, 37.03, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-354.43, -12.78, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-373.73, 21.65, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-45.12, 274.1, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<386.51, -273.32, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<278.27, -268.62, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-247.5, -267.32, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-19.04, -179.95, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-225.07, 247.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<245.15, 411.8, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CNC}}}
sphere {<-151.26, 89.19, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-182.04, 397.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<-158.31, 367.73, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSV}}}
sphere {<-99.63, 273.58, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSV}}}
sphere {<230.03, -33.12, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-38.86, 20.86, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-188.3, 351.82, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<451.44, -80.85, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-210.73, 299.14, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-13.82, -199.25, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-339.3, 15.39, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<271.75, -32.6, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-281.14, 5.48, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-164.3, -45.64, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-186.99, 428.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<399.81, -167.43, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<596.19, 21.65, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<39.12, -159.09, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<51.9, -373.99, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-63.64, -33.64, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-80.33, 212.55, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-179.43, 487.44, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<-138.48, 263.41, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color AR}}}
sphere {<-317.92, -160.65, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<330.43, 388.59, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<130.4, 239.41, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<197.16, 40.16, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<391.72, 59.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-88.93, 142.66, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<79.8, -202.12, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color SIC}}}
sphere {<358.08, 394.59, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<179.69, -67.55, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<469.18, 56.33, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<162.22, 391.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSJ}}}
sphere {<536.73, -120.23, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<220.12, -359.12, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<539.07, -175, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<161.17, -380.77, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<444.14, 71.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-269.41, 287.14, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-5.74, 391.98, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<407.11, 49.81, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<247.76, -330.96, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<13.3, -13.3, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CM}}}
sphere {<410.24, 98.84, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<70.68, -69.37, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-329.13, 333.56, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<17.73, 156.22, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<385.72, 163.52, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-403.98, 35.99, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<18.26, -345.04, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-127.27, 378.68, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<-101.71, 466.57, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<-109.01, -377.12, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<133.79, 338.78, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSJ}}}
sphere {<-306.96, 205.25, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<123.1, 150.48, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<291.31, -73.55, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-245.41, -164.3, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-369.81, 131.44, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<34.16, 195.08, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<334.35, -328.87, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-122.05, 37.56, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-63.11, -15.13, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-156.74, 125.18, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-58.68, -201.34, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-20.34, -216.72, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-8.35, -370.86, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<354.69, -244.11, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-159.09, -198.47, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-174.48, 168.74, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<0.52, 167.17, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-158.57, -235.5, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<112.4, -166.39, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-171.87, -112.67, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-5.48, -160.65, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-302.53, -294.44, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-381.03, 310.09, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-123.1, 67.81, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-124.66, -310.35, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<312.96, -56.85, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<38.86, -175.26, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<13.04, -0.52, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CM}}}
sphere {<8.08, -41.73, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color TCC}}}
sphere {<343.47, 106.67, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<88.41, -188.04, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-47.99, -177.08, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<148.13, 293.92, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CNC}}}
sphere {<-307.74, 89.72, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<185.43, -238.89, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<28.69, -266.8, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<201.34, -352.08, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-63.64, 83.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-15.91, 241.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<-97.02, 39.38, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-77.72, 140.57, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<141.09, -10.17, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-5.48, -20.86, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-225.07, -47.99, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CM}}}
sphere {<117.36, -35.99, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<78.5, 346.86, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CGB}}}
sphere {<320.52, 80.59, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-41.47, -17.47, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<13.82, -254.8, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<61.55, -391.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-310.61, -52.16, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-8.35, 120.49, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<480.13, 192.21, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color OA}}}
sphere {<-373.2, -81.89, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<416.5, -81.37, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-96.24, 83.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-266.02, -228.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-200.29, 343.73, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<302.53, -182.82, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-280.36, -142.92, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<10.43, -153.61, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-385.2, 218.29, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<47.47, 209.16, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<467.88, 23.73, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<294.7, 395.63, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-242.54, 346.6, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-29.47, 6.52, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<318.44, 268.36, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-76.41, 399.02, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<182.56, 252.45, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<227.16, -103.8, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<585.76, -41.73, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<246.98, 331.48, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-75.37, 15.65, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<115.27, -72.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-349.21, 221.42, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-383.9, 89.19, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<91.28, 75.63, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-124.66, -249.32, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<344.26, 217.51, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<389.11, 243.07, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<338.78, -235.5, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<204.21, -31.56, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<335.91, 383.12, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<339.04, 56.59, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-182.3, 91.28, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<230.03, 382.85, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CNC}}}
sphere {<-334.35, 168.48, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<365.9, 84.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-155.96, 75.11, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-391.72, -67.55, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color P}}}
sphere {<-148.4, -265.49, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<15.65, -266.54, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-52.42, -372.42, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<266.02, 330.43, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-211.77, 355.73, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-167.43, 54.51, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-251.15, -206.29, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<181.78, 3.13, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<526.56, -142.66, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<375.55, -318.96, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<615.49, 11.48, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<308, -13.56, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-425.63, 127.53, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-122.05, -294.96, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-234.98, -49.55, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<360.69, 67.55, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-158.83, 109.01, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-66.76, 302.01, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<291.05, -73.55, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<347.65, -200.82, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<75.63, -348.95, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-318.96, -132.75, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-147.87, -28.17, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-54.77, -40.68, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-9.65, -309.83, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<380.51, 92.32, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<100.93, 432.93, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CGB}}}
sphere {<-62.85, 15.65, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-353.64, -237.85, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<24.52, -192.73, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<143.44, -253.5, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<21.65, -137.44, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-189.6, -110.06, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<136.92, -378.16, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-38.34, 122.58, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<195.86, 229.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<218.55, -39.12, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<328.87, 163, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<146.05, -302.27, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<182.3, 386.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSJ}}}
sphere {<142.92, -313.48, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<95.97, 347.91, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CNC}}}
sphere {<-260.02, 222.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<342.69, -151, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-129.62, 161.7, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-69.63, 232.63, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<527.6, -78.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-33.38, -253.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-479.61, 218.55, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color P}}}
sphere {<255.58, 47.73, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-440.76, 20.86, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-69.89, 394.85, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<431.1, -294.7, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<208.9, -267.32, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-155.44, 203.68, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-333.3, -120.23, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-51.9, -351.67, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-49.81, 286.36, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<106.93, 25.3, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<168.74, 280.36, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CNC}}}
sphere {<-320.26, 62.07, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<60.51, 84.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<281.92, 20.34, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-388.33, -100.41, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-26.34, 156.74, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-116.84, -231.85, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<348.69, 64.94, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<73.55, 463.44, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CGB}}}
sphere {<-149.44, -40.68, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-72.76, -182.56, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<125.71, -198.21, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-350.52, 17.47, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-196.64, 13.56, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<65.72, 206.55, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<314.52, -265.23, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<140.57, 19.3, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<485.61, -27.64, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<29.47, 378.68, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<-114.75, -198.21, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<450.66, 63.11, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<260.02, -21.91, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<54.77, -339.04, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<44.86, -253.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<428.76, -107.45, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<5.48, 200.82, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FRR}}}
sphere {<-177.6, 306.44, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<200.03, -344.52, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<544.55, 4.96, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<375.81, 114.23, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<272.28, -95.97, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<329.39, 148.13, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-61.81, 333.82, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<618.88, 60.51, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<322.61, -52.42, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<92.32, -70.16, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<69.63, -237.33, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color SIC}}}
sphere {<41.47, 26.34, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<65.2, -13.04, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-13.04, -1.83, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-113.97, 350.52, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<-131.96, 398.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<501, -84.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-87.89, -300.18, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<216.99, 75.11, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-36.51, -15.39, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-111.62, 336.95, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<-317.65, -100.41, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-172.91, -259.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<479.61, 67.81, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-147.87, -113.71, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<20.34, -328.09, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<286.88, -305.4, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<13.04, 15.39, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-75.89, -26.08, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-2.35, 232.63, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<-256.11, -21.39, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<302.01, 170.3, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<206.03, 26.6, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-33.12, 250.37, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<-75.37, 302.79, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<-184.12, 159.35, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<202.12, 89.72, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<200.56, 8.87, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<437.62, -135.36, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<133.79, 203.16, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<273.58, -292.88, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-21.12, 66.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-261.32, 41.73, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<31.56, -373.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-124.4, -124.66, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-71.2, -16.17, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-183.6, 215.68, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<80.33, 225.33, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-265.49, 146.05, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-105.36, 268.62, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color AR}}}
sphere {<5.74, 41.21, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<127.27, 215.68, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-33.64, 135.88, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-81.63, 113.71, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<239.41, 304.09, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<568.8, -130.66, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<290.01, 372.94, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-97.28, 121.79, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-341.65, -103.8, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<133.27, -32.6, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<68.59, -373.47, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<37.56, 235.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CGB}}}
sphere {<-154.92, 59.46, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-222.2, 19.56, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<268.88, -146.31, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-69.89, -373.47, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<127.79, -8.08, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<217.25, -325.22, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-114.23, -185.69, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-167.96, -345.04, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<1.56, -51.38, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CM}}}
sphere {<282.45, 76.68, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-39.38, 487.44, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<-300.18, 261.84, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-336.95, 7.82, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-212.29, -241.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<18.78, -128.31, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-1.83, 100.67, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-375.81, 334.08, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<171.87, -117.1, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<258.97, -6.52, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-89.72, -150.74, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<297.05, -290.27, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-451.18, 69.89, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<20.08, 339.56, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<-354.43, 358.08, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<432.93, 291.31, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-137.96, 104.58, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-383.9, 130.14, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-18.26, -195.34, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-318.96, -59.98, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<18.52, -21.39, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CM}}}
sphere {<29.47, -15.65, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CM}}}
sphere {<-187.52, 449.88, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<-286.36, -119.45, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<52.68, 4.43, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-218.81, -127.53, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<304.61, 344.78, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-159.61, 271.23, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color AR}}}
sphere {<399.55, -307.74, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-381.55, 200.82, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<352.6, -71.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<462.14, -200.29, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-224.81, 151.52, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<296.27, -36.51, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-95.97, 359.9, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<-333.82, 290.01, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-13.3, -209.68, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<190.12, -8.08, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-245.67, -244.89, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-82.67, -366.16, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<356.51, 31.56, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<289.49, 46.16, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-189.86, -202.12, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<371.12, 49.03, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<172.39, 148.92, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<566.46, 31.82, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<141.88, -80.33, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-31.56, 177.34, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<133.27, 33.12, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-20.34, 365.38, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<-393.55, 163, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<25.56, 357.04, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<588.89, 128.05, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color OA}}}
sphere {<450.66, -243.07, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-142.66, 20.86, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-174.48, -271.23, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<511.17, -183.08, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<326, -164.56, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-292.36, 18, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-405.28, 135.62, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<252.19, -301.48, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<183.34, -393.55, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color TC}}}
sphere {<47.2, -23.73, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CM}}}
sphere {<-68.33, -211.77, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<193.25, -336.17, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-430.58, 74.59, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<197.16, -65.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<21.12, 5.48, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<89.72, -98.32, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CAP}}}
sphere {<95.45, -110.84, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CAP}}}
sphere {<-192.99, -29.73, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-213.07, 161.44, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-32.6, 210.99, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<195.34, -216.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<252.98, 10.95, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<130.4, -336.43, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-64.94, 108.75, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<237.07, -119.71, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-18, -249.85, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-6, -253.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-73.55, -146.57, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-77.46, -227.42, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<111.62, 135.36, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-138.48, 53.46, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-25.56, -286.62, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-211.51, -192.47, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<444.4, -234.72, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-86.59, 11.21, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-54.25, 34.43, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<91.54, 14.87, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<312.18, -125.18, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<336.17, 175.26, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-359.12, -72.5, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-162.22, -75.11, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-200.03, 109.28, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<132.75, -164.83, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<195.86, 73.81, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-15.65, 253.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<360.43, -272.28, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<385.2, -60.51, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<41.99, -80.33, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color SC}}}
sphere {<252.45, 93.89, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-166.91, -61.03, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-43.81, 159.61, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-104.06, 182.04, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<127.27, 385.46, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSJ}}}
sphere {<-273.32, -297.83, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-244.63, 299.66, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<58.16, -200.82, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<37.56, -187.78, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<39.38, -60.24, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CM}}}
sphere {<-310.35, -239.68, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-209.68, -26.6, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-202.9, 159.35, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-362.77, -141.09, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-248.02, -216.99, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-184.65, -13.04, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<505.17, -213.33, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-111.62, 164.83, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-96.76, 72.5, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<28.69, -217.51, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-77.46, 77.72, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<287.92, 53.46, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<127.01, -320.52, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-208.64, -306.44, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-155.7, 356.77, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSV}}}
sphere {<145.79, -49.81, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-263.67, 266.28, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<45.12, 335.91, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CGB}}}
sphere {<-160.91, 403.98, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<-49.81, -128.05, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-28.69, -242.28, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<135.88, -95.45, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-335.39, -246.72, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-180.47, 260.8, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CJF}}}
sphere {<354.43, 166.65, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-117.88, -357.82, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-101.45, 248.28, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color AR}}}
sphere {<-23.73, -10.43, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<54.77, 145.79, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<46.42, -301.48, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-99.1, -333.3, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-101.45, 299.92, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<307.48, 429.8, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<497.08, -269.15, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-185.95, 290.53, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<453.27, 40.68, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-229.5, 160.91, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-336.69, -77.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<470.22, -263.41, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<288.44, -226.64, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<390.42, 114.49, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-4.96, 188.56, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FRR}}}
sphere {<-98.32, 204.99, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-110.84, -287.92, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-288.97, 240.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<356.77, -179.43, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<39.64, -386.51, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<12.52, 292.88, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<93.37, -257.93, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<427.19, -242.8, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-284.01, 26.34, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<138.48, -242.8, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<255.06, 153.61, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<137.96, -264.97, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<124.66, 113.19, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-13.56, 270.97, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<36.77, 254.02, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CGB}}}
sphere {<-254.8, 86.85, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-444.92, 130.14, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-14.08, -44.6, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CM}}}
sphere {<73.55, -77.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-127.01, 99.1, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<78.76, 44.34, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<65.46, -43.81, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-35.99, -81.99, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<-152.05, 224.03, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color LA}}}
sphere {<-373.2, -143.96, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<277.23, 141.88, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<168.74, 367.47, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CSJ}}}
sphere {<554.98, -101.45, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<42.25, -226.37, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CC}}}
sphere {<-142.92, -172.13, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<215.16, 83.2, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<264.19, 71.72, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-18, -143.18, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<326.52, 411.28, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<-62.59, 378.68, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color CW}}}
sphere {<-30.25, -161.96, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}
sphere {<291.31, 281.4, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<184.91, 187.25, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color DC}}}
sphere {<459.27, 80.33, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FC}}}
sphere {<-412.85, -166.91, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
brilliance 3.0} pigment {color FWL}}}



"Slime" <fak### [at] emailaddress> wrote:
> > > OKay, this helped a lot.  But, I need the lighting to be brighter.  It
> is
> > > hard to see the planets.  I probably need to find a different color
> > > background than black, but, white is not a good choice either.
>
> > Is it possible to make the Spheres themselves light sources?  I need them
> to
> > stand out, but, because they are so small and so far away, I am not seeing
> > some of them well.  The background color is hurting me as well.
>
> I would start with a black background. It should be possible to make very
> visible spheres with good colors - that back light should even help to
> define their edges (providing I placed it well, but I didn't test the code I
> gave you).
>
> What color are you using for your spheres?
>
> It's possible to turn the spheres into light sources, but that won't make
> them any brighter (they'll brighten up other nearby things, but that's
> probably not what you want). That's a bad idea though, since it will really
> slow things down with a lot of spheres. Emitting media is a better choice,
> but first let's just see if we can create the effect you want through a
> pigment.
>
>  - Slime
>  [ http://www.slimeland.com/ ]


Post a reply to this message

From: Alain
Subject: Re: Creating Coordinate Map
Date: 23 Jan 2005 10:36:31
Message: <41f3c47f$1@news.povray.org>
Fyretrohl nous apporta ses lumieres en ce 2005-01-22 17:57:
> Okay, I figure out how to create the spheres using a SQL script and know how
> to get it to do the static parts of the document as well.  However, I still
> need to figure out how to do the lighting and a good way to do the camera.
> This is all on one plane.  It is a flat map.  So, I want the lighting to be
> the same over the whole map.  I want the camera to just be fairly simple,
> but, the coords are pretty large.  I am using size 1 spheres right now and
> have a test camera at 0,0,500.  However, that is not what I really want.
> Again, I want to be looking down on a 2D map, more or less.  Thoughts on
> lights and camera settings?  Examples?
> 
> "Fyretrohl" <fyr### [at] ccgheavencom> wrote:
> 
>>I would like to create a map system that is able to be changed easily and
>>rerendered.  I have a serious of X, Y coordinates that would create points
>>of interest.  At times, these points of interest may change possession.  I
>>would want to change the color of them at that time.  Also, some may hold
>>duel possession and I would want to create a color scheme then that would
>>show both parties of possession.
>>
>>For those familiar with the game, I am working on a map of the Inner Sphere
>>from Battletech.  The goal is to use a database of sometype to store the
>>coordinate and planet information.  If a planet is held by more than 1
>>group, it would show a mix.  Otherwise, it would show home color.  Once the
>>picture is generated, I want to create a coordinate field over the top of
>>it for web use that will show information on the planet when you hover over
>>it.  Any ideas?
>>
>>And, yes, I am new.  For now, I will be happy to get an initial copy done.
>>Once I see how it works, I THINK I can create a script that will update the
>>data in the rendering file to bring it up to date with the database.
> 
> 
> 
> 
> 
You can do away with the lights. The trick is to have the ambient light set to 1 like:
default{finish{ambient 1}}
This will maka all objects fully illuminated without any light_source.

Alain


Post a reply to this message

From: Alain
Subject: Re: Creating Coordinate Map
Date: 23 Jan 2005 10:48:16
Message: <41f3c740$1@news.povray.org>
Fyretrohl nous apporta ses lumieres en ce 2005-01-23 00:50:

> 
> sphere {<-125.18, 274.88, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
> brilliance 3.0} pigment {color AR}}}
> sphere {<-70.94, -96.76, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
> brilliance 3.0} pigment {color FWL}}}
> sphere {<383.64, 317.65, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
> brilliance 3.0} pigment {color DC}}}
> sphere {<-320.78, 248.8, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
> brilliance 3.0} pigment {color LA}}}
> sphere {<611.32, -40.16, 0>, 1  texture {finish {ambient 0.1 diffuse 0.6
> brilliance 3.0} pigment {color FC}}}

As all your objects are using the same base texture, you can have:
default{finish{ambient 1 diffuse 0}}//make the objects luminous, don't interact with
lights

and a sample object:
sphere {<-125.18, 274.88, 0>, 1 pigment{color AR}}

you can now remove your lights, unless you want to keep them to illuminate something
else.
As this is a sky, black is the best background. You don't have to set it, as it's the
default.

Alain


Post a reply to this message

From: Slime
Subject: Re: Creating Coordinate Map
Date: 23 Jan 2005 13:45:38
Message: <41f3f0d2$1@news.povray.org>
Some of those colors look fine, but a lot of them are dark. For instance,
CC: the brightest color channel is 0.56! There's no surprise to me that
that's dark. It's also important to keep in mind that a light source only
fully illuminates a sphere's color in one point - where it hits the sphere
head-on. On the other parts of the sphere, it hits the sphere at an angle
and only partially illuminates the sphere there. So overall an object will
be darker than the pigment you give it.

You can try multiplying all of the colors by two to double their brightness:

pigment {color CC * 2}

Or, equivalently (and more simply), increase the brightness of your light
source:

light_source {
    ...
    rgb 2 // double brightness
}

Try experimenting with different amounts of increased light (1.5 for
instance) to see what looks best.

You should use Alain's suggestion about the default{} block to avoid
specifying the same texture over and over, but I wouldn't recommend using
"ambient 1 diffuse 0" unless you're OK with your spheres looking like flat
circles. On the other hand, if brightening your colors may lead to confusion
about which color is which, then that may be your only option. In that case,
you might try a high ambient value without completely removing diffuse, like
ambient .75 diffuse .25 so that the spheres are slightly affected by the
light source.

 - Slime
 [ http://www.slimeland.com/ ]


Post a reply to this message

Goto Latest 10 Messages Next 2 Messages >>>

Copyright 2003-2023 Persistence of Vision Raytracer Pty. Ltd.