Skip to main content


Eclipse Community Forums
Forum Search:

Search      Help    Register    Login    Home
Home » Modeling » Epsilon » [Hutn] problem and a general question
[Hutn] problem and a general question [message #18072] Tue, 19 May 2009 13:48 Go to next message
Nikos Mising name is currently offline Nikos Mising nameFriend
Messages: 11
Registered: July 2009
Junior Member
Dear all,

I have a problem instantiating a model using hutn. I follow the procedure
specified in http://www.eclipse.org/gmt/epsilon/cinema/HUTN.htm but I get
the following error:

org.eclipse.epsilon.hutn.exceptions.HutnGenerationException: Called
feature owner on undefined object (157:102)

Can you understand the nature of the problem? I have registered the
EPackage and added the Hutn nature to my project.

My reason for using Hutn is that I have a mathematical formula that I want
to transform to a model whose metamodel has been defined with ecore. I
plan to use Java to transform the formula to Hutn format and then get the
model. Is there a more practical way for my T2M transformation?

Thank you in advance,
Nikos
Re: [Hutn] problem and a general question [message #18085 is a reply to message #18072] Tue, 19 May 2009 14:48 Go to previous messageGo to next message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Niko,

Please see comments below

Nikos wrote:
> Dear all,
>
> I have a problem instantiating a model using hutn. I follow the
> procedure specified in
> http://www.eclipse.org/gmt/epsilon/cinema/HUTN.htm but I get the
> following error:
>
> org.eclipse.epsilon.hutn.exceptions.HutnGenerationException: Called
> feature owner on undefined object (157:102)
>
> Can you understand the nature of the problem? I have registered the
> EPackage and added the Hutn nature to my project.

I'm afraid I can't reproduce this. To make sure that there is nothing
wrong with your .ecore/.hutn I've shared the example in the SVN under
https://dev.eclipse.org/svnroot/modeling/org.eclipse.gmt.eps ilon/trunk/examples/org.eclipse.epsilon.examples.hutn.famili es
.. Could you please check this out and give it another go? (I assume you
are using the latest version of Epsilon - 0.8.5)

>
> My reason for using Hutn is that I have a mathematical formula that I
> want to transform to a model whose metamodel has been defined with
> ecore. I plan to use Java to transform the formula to Hutn format and
> then get the model. Is there a more practical way for my T2M
> transformation?

I suspect that you already have a parser for mathematical expressions
which produces some sort of AST. I guess you could also use the AST to
populate your ecore model directly (either in a reflective way or after
generating Java code from your ecore metamodel).

>
> Thank you in advance,
> Nikos
>

Cheers,
Dimitris
Re: [Hutn] problem and a general question [message #18623 is a reply to message #18085] Wed, 20 May 2009 07:19 Go to previous messageGo to next message
Nikos Mising name is currently offline Nikos Mising nameFriend
Messages: 11
Registered: July 2009
Junior Member
Dear Dimitris,

I downloaded your files and put them in my project, however the demo.hutn
does not execute. I have Ganymede eclipse is that a problem? Epsilon was
successfully installed. One question is about the Families.emf file. Is it
needed? How is it generated? (I work with ecore files)

Anyway, the demo produces the error:
[Line: 8, Column: 4, Reason: Unrecognised classifier: XMI, Line: 9,
Column: 16, Reason: Unrecognised classifier: UnknownType, Line: 14,
Column: 13, Reason: Unrecognised classifier: UnknownType, Line: 17,
Column: 11, Reason: Unrecognised classifier: UnknownType]

Thanks a lot,
Nikos

Dimitris Kolovos wrote:

> Hi Niko,

> Please see comments below

> Nikos wrote:
>> Dear all,
>>
>> I have a problem instantiating a model using hutn. I follow the
>> procedure specified in
>> http://www.eclipse.org/gmt/epsilon/cinema/HUTN.htm but I get the
>> following error:
>>
>> org.eclipse.epsilon.hutn.exceptions.HutnGenerationException: Called
>> feature owner on undefined object (157:102)
>>
>> Can you understand the nature of the problem? I have registered the
>> EPackage and added the Hutn nature to my project.

> I'm afraid I can't reproduce this. To make sure that there is nothing
> wrong with your .ecore/.hutn I've shared the example in the SVN under
>
https://dev.eclipse.org/svnroot/modeling/org.eclipse.gmt.eps ilon/trunk/examples/org.eclipse.epsilon.examples.hutn.famili es
> .. Could you please check this out and give it another go? (I assume you
> are using the latest version of Epsilon - 0.8.5)

>>
>> My reason for using Hutn is that I have a mathematical formula that I
>> want to transform to a model whose metamodel has been defined with
>> ecore. I plan to use Java to transform the formula to Hutn format and
>> then get the model. Is there a more practical way for my T2M
>> transformation?

> I suspect that you already have a parser for mathematical expressions
> which produces some sort of AST. I guess you could also use the AST to
> populate your ecore model directly (either in a reflective way or after
> generating Java code from your ecore metamodel).

>>
>> Thank you in advance,
>> Nikos
>>

> Cheers,
> Dimitris
Re: [Hutn] problem and a general question [message #18642 is a reply to message #18623] Wed, 20 May 2009 13:50 Go to previous messageGo to next message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Nikos,

Nikos wrote:
> Dear Dimitris,
>
> I downloaded your files and put them in my project, however the
> demo.hutn does not execute.

Have you replaced your old Families.ecore with the new one or did you
put the new one elsewhere and registered it too? If you did the latter,
I'd suggest you delete the old .ecore and restart Eclipse to unregister it.

> I have Ganymede eclipse is that a problem?

No.

> Epsilon was successfully installed. One question is about the
> Families.emf file. Is it needed? How is it generated? (I work with ecore
> files)

..emf files are Ecore metamodels expressed in the the Emfatic textual
notation. You can find out more about Emfatic in
http://www.alphaworks.ibm.com/tech/emfatic and
http://wiki.eclipse.org/Emfatic.

>
> Anyway, the demo produces the error:
> [Line: 8, Column: 4, Reason: Unrecognised classifier: XMI, Line: 9,
> Column: 16, Reason: Unrecognised classifier: UnknownType, Line: 14,
> Column: 13, Reason: Unrecognised classifier: UnknownType, Line: 17,
> Column: 11, Reason: Unrecognised classifier: UnknownType]

This looks strange indeed. Does this happen with the .hutn file I
uploaded? BTW could you please send me your original .ecore and .hutn files?

>
> Thanks a lot,
> Nikos
>

Dimitris

> Dimitris Kolovos wrote:
>
>> Hi Niko,
>
>> Please see comments below
>
>> Nikos wrote:
>>> Dear all,
>>>
>>> I have a problem instantiating a model using hutn. I follow the
>>> procedure specified in
>>> http://www.eclipse.org/gmt/epsilon/cinema/HUTN.htm but I get the
>>> following error:
>>>
>>> org.eclipse.epsilon.hutn.exceptions.HutnGenerationException: Called
>>> feature owner on undefined object (157:102)
>>>
>>> Can you understand the nature of the problem? I have registered the
>>> EPackage and added the Hutn nature to my project.
>
>> I'm afraid I can't reproduce this. To make sure that there is nothing
>> wrong with your .ecore/.hutn I've shared the example in the SVN under
> https://dev.eclipse.org/svnroot/modeling/org.eclipse.gmt.eps ilon/trunk/examples/org.eclipse.epsilon.examples.hutn.famili es
>
>> .. Could you please check this out and give it another go? (I assume
>> you are using the latest version of Epsilon - 0.8.5)
>
>>>
>>> My reason for using Hutn is that I have a mathematical formula that I
>>> want to transform to a model whose metamodel has been defined with
>>> ecore. I plan to use Java to transform the formula to Hutn format and
>>> then get the model. Is there a more practical way for my T2M
>>> transformation?
>
>> I suspect that you already have a parser for mathematical expressions
>> which produces some sort of AST. I guess you could also use the AST to
>> populate your ecore model directly (either in a reflective way or
>> after generating Java code from your ecore metamodel).
>
>>>
>>> Thank you in advance,
>>> Nikos
>>>
>
>> Cheers,
>> Dimitris
>
>
Re: [Hutn] problem and a general question [message #18664 is a reply to message #18642] Wed, 20 May 2009 15:56 Go to previous messageGo to next message
Nikos Mising name is currently offline Nikos Mising nameFriend
Messages: 11
Registered: July 2009
Junior Member
Hi Dimitris,

the error was on the declaration part.

I had written:

@spec{
MetaModel "SUC"{
nsURI: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
}
}

and it didn't work. After substituting it with

@Spec{
Metamodel "SUC"{
nsUri: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
}
}

it worked!

And yes, you were right about the restart of the eclipse platform.

Thanks a lot for the help,
Nikos

PS: If you come by Crete let me know, I will gladly share a coffee or beer.

Nikos Spanoudakis
http://users.isc.tuc.gr/~nispanoudakis/
Re: [Hutn] problem and a general question [message #18687 is a reply to message #18664] Thu, 21 May 2009 00:53 Go to previous messageGo to next message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Niko,

Glad you solved this and thanks for reporting back on the exact nature
of the problem!

I've opened https://bugs.eclipse.org/bugs/show_bug.cgi?id=277252 to tidy
up a bit the support for registered EPackages so that a restart won't be
necessary in future versions - and as a reminder that when I come to
Crete a raki will be in order :)

Cheers,
Dimitris

Nikos wrote:
> Hi Dimitris,
>
> the error was on the declaration part.
>
> I had written:
>
> @spec{
> MetaModel "SUC"{
> nsURI: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
> }
> }
>
> and it didn't work. After substituting it with
>
> @Spec{
> Metamodel "SUC"{
> nsUri: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
> }
> }
>
> it worked!
>
> And yes, you were right about the restart of the eclipse platform.
>
> Thanks a lot for the help,
> Nikos
>
> PS: If you come by Crete let me know, I will gladly share a coffee or beer.
>
> Nikos Spanoudakis
> http://users.isc.tuc.gr/~nispanoudakis/
>
Re: [Hutn] problem and a general question [message #18710 is a reply to message #18664] Thu, 21 May 2009 18:14 Go to previous messageGo to next message
Louis Rose is currently offline Louis RoseFriend
Messages: 440
Registered: July 2009
Location: York, United Kingdom
Senior Member
Nikos wrote:
> Hi Dimitris,
>
> the error was on the declaration part.
>
> I had written:
>
> @spec{
> MetaModel "SUC"{
> nsURI: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
> }
> }
>
> and it didn't work. After substituting it with
>
> @Spec{
> Metamodel "SUC"{
> nsUri: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
> }
> }
>
> it worked!
>

Was it simply the difference between the case of @spec and @Spec;
Metamodel and MetaModel; and nsURI and nsUri that caused this problem?

I'm presuming so, and have opened the following bug:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=277365

I'll fix this; I see no reason why these words should be case sensitive.

Cheers,
Louis.
Re: [Hutn] problem and a general question [message #18733 is a reply to message #18710] Fri, 22 May 2009 07:22 Go to previous message
Louis Rose is currently offline Louis RoseFriend
Messages: 440
Registered: July 2009
Location: York, United Kingdom
Senior Member
Louis Rose wrote:
> Nikos wrote:
>> Hi Dimitris,
>>
>> the error was on the declaration part.
>>
>> I had written:
>>
>> @spec{
>> MetaModel "SUC"{
>> nsURI: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
>> }
>> }
>>
>> and it didn't work. After substituting it with
>>
>> @Spec{
>> Metamodel "SUC"{
>> nsUri: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
>> }
>> }
>>
>> it worked!
>>
>
> Was it simply the difference between the case of @spec and @Spec;
> Metamodel and MetaModel; and nsURI and nsUri that caused this problem?
>
> I'm presuming so, and have opened the following bug:
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=277365
>
> I'll fix this; I see no reason why these words should be case sensitive.
>

Fixed, and checked into Epsilon SVN.

Many thanks for reporting this Nikos.

Cheers,
Louis.
Re: [Hutn] problem and a general question [message #568300 is a reply to message #18072] Tue, 19 May 2009 14:48 Go to previous message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Niko,

Please see comments below

Nikos wrote:
> Dear all,
>
> I have a problem instantiating a model using hutn. I follow the
> procedure specified in
> http://www.eclipse.org/gmt/epsilon/cinema/HUTN.htm but I get the
> following error:
>
> org.eclipse.epsilon.hutn.exceptions.HutnGenerationException: Called
> feature owner on undefined object (157:102)
>
> Can you understand the nature of the problem? I have registered the
> EPackage and added the Hutn nature to my project.

I'm afraid I can't reproduce this. To make sure that there is nothing
wrong with your .ecore/.hutn I've shared the example in the SVN under
https://dev.eclipse.org/svnroot/modeling/org.eclipse.gmt.eps ilon/trunk/examples/org.eclipse.epsilon.examples.hutn.famili es
.. Could you please check this out and give it another go? (I assume you
are using the latest version of Epsilon - 0.8.5)

>
> My reason for using Hutn is that I have a mathematical formula that I
> want to transform to a model whose metamodel has been defined with
> ecore. I plan to use Java to transform the formula to Hutn format and
> then get the model. Is there a more practical way for my T2M
> transformation?

I suspect that you already have a parser for mathematical expressions
which produces some sort of AST. I guess you could also use the AST to
populate your ecore model directly (either in a reflective way or after
generating Java code from your ecore metamodel).

>
> Thank you in advance,
> Nikos
>

Cheers,
Dimitris
Re: [Hutn] problem and a general question [message #568311 is a reply to message #18085] Wed, 20 May 2009 07:19 Go to previous message
Nikos Mising name is currently offline Nikos Mising nameFriend
Messages: 11
Registered: July 2009
Junior Member
Dear Dimitris,

I downloaded your files and put them in my project, however the demo.hutn
does not execute. I have Ganymede eclipse is that a problem? Epsilon was
successfully installed. One question is about the Families.emf file. Is it
needed? How is it generated? (I work with ecore files)

Anyway, the demo produces the error:
[Line: 8, Column: 4, Reason: Unrecognised classifier: XMI, Line: 9,
Column: 16, Reason: Unrecognised classifier: UnknownType, Line: 14,
Column: 13, Reason: Unrecognised classifier: UnknownType, Line: 17,
Column: 11, Reason: Unrecognised classifier: UnknownType]

Thanks a lot,
Nikos

Dimitris Kolovos wrote:

> Hi Niko,

> Please see comments below

> Nikos wrote:
>> Dear all,
>>
>> I have a problem instantiating a model using hutn. I follow the
>> procedure specified in
>> http://www.eclipse.org/gmt/epsilon/cinema/HUTN.htm but I get the
>> following error:
>>
>> org.eclipse.epsilon.hutn.exceptions.HutnGenerationException: Called
>> feature owner on undefined object (157:102)
>>
>> Can you understand the nature of the problem? I have registered the
>> EPackage and added the Hutn nature to my project.

> I'm afraid I can't reproduce this. To make sure that there is nothing
> wrong with your .ecore/.hutn I've shared the example in the SVN under
>
https://dev.eclipse.org/svnroot/modeling/org.eclipse.gmt.eps ilon/trunk/examples/org.eclipse.epsilon.examples.hutn.famili es
> .. Could you please check this out and give it another go? (I assume you
> are using the latest version of Epsilon - 0.8.5)

>>
>> My reason for using Hutn is that I have a mathematical formula that I
>> want to transform to a model whose metamodel has been defined with
>> ecore. I plan to use Java to transform the formula to Hutn format and
>> then get the model. Is there a more practical way for my T2M
>> transformation?

> I suspect that you already have a parser for mathematical expressions
> which produces some sort of AST. I guess you could also use the AST to
> populate your ecore model directly (either in a reflective way or after
> generating Java code from your ecore metamodel).

>>
>> Thank you in advance,
>> Nikos
>>

> Cheers,
> Dimitris
Re: [Hutn] problem and a general question [message #568324 is a reply to message #18623] Wed, 20 May 2009 13:50 Go to previous message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Nikos,

Nikos wrote:
> Dear Dimitris,
>
> I downloaded your files and put them in my project, however the
> demo.hutn does not execute.

Have you replaced your old Families.ecore with the new one or did you
put the new one elsewhere and registered it too? If you did the latter,
I'd suggest you delete the old .ecore and restart Eclipse to unregister it.

> I have Ganymede eclipse is that a problem?

No.

> Epsilon was successfully installed. One question is about the
> Families.emf file. Is it needed? How is it generated? (I work with ecore
> files)

..emf files are Ecore metamodels expressed in the the Emfatic textual
notation. You can find out more about Emfatic in
http://www.alphaworks.ibm.com/tech/emfatic and
http://wiki.eclipse.org/Emfatic

>
> Anyway, the demo produces the error:
> [Line: 8, Column: 4, Reason: Unrecognised classifier: XMI, Line: 9,
> Column: 16, Reason: Unrecognised classifier: UnknownType, Line: 14,
> Column: 13, Reason: Unrecognised classifier: UnknownType, Line: 17,
> Column: 11, Reason: Unrecognised classifier: UnknownType]

This looks strange indeed. Does this happen with the .hutn file I
uploaded? BTW could you please send me your original .ecore and .hutn files?

>
> Thanks a lot,
> Nikos
>

Dimitris

> Dimitris Kolovos wrote:
>
>> Hi Niko,
>
>> Please see comments below
>
>> Nikos wrote:
>>> Dear all,
>>>
>>> I have a problem instantiating a model using hutn. I follow the
>>> procedure specified in
>>> http://www.eclipse.org/gmt/epsilon/cinema/HUTN.htm but I get the
>>> following error:
>>>
>>> org.eclipse.epsilon.hutn.exceptions.HutnGenerationException: Called
>>> feature owner on undefined object (157:102)
>>>
>>> Can you understand the nature of the problem? I have registered the
>>> EPackage and added the Hutn nature to my project.
>
>> I'm afraid I can't reproduce this. To make sure that there is nothing
>> wrong with your .ecore/.hutn I've shared the example in the SVN under
> https://dev.eclipse.org/svnroot/modeling/org.eclipse.gmt.eps ilon/trunk/examples/org.eclipse.epsilon.examples.hutn.famili es
>
>> .. Could you please check this out and give it another go? (I assume
>> you are using the latest version of Epsilon - 0.8.5)
>
>>>
>>> My reason for using Hutn is that I have a mathematical formula that I
>>> want to transform to a model whose metamodel has been defined with
>>> ecore. I plan to use Java to transform the formula to Hutn format and
>>> then get the model. Is there a more practical way for my T2M
>>> transformation?
>
>> I suspect that you already have a parser for mathematical expressions
>> which produces some sort of AST. I guess you could also use the AST to
>> populate your ecore model directly (either in a reflective way or
>> after generating Java code from your ecore metamodel).
>
>>>
>>> Thank you in advance,
>>> Nikos
>>>
>
>> Cheers,
>> Dimitris
>
>
Re: [Hutn] problem and a general question [message #568339 is a reply to message #18642] Wed, 20 May 2009 15:56 Go to previous message
Nikos Mising name is currently offline Nikos Mising nameFriend
Messages: 11
Registered: July 2009
Junior Member
Hi Dimitris,

the error was on the declaration part.

I had written:

@spec{
MetaModel "SUC"{
nsURI: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
}
}

and it didn't work. After substituting it with

@Spec{
Metamodel "SUC"{
nsUri: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
}
}

it worked!

And yes, you were right about the restart of the eclipse platform.

Thanks a lot for the help,
Nikos

PS: If you come by Crete let me know, I will gladly share a coffee or beer.

Nikos Spanoudakis
http://users.isc.tuc.gr/~nispanoudakis/
Re: [Hutn] problem and a general question [message #568353 is a reply to message #18664] Thu, 21 May 2009 00:53 Go to previous message
Dimitrios Kolovos is currently offline Dimitrios KolovosFriend
Messages: 1776
Registered: July 2009
Senior Member
Hi Niko,

Glad you solved this and thanks for reporting back on the exact nature
of the problem!

I've opened https://bugs.eclipse.org/bugs/show_bug.cgi?id=277252 to tidy
up a bit the support for registered EPackages so that a restart won't be
necessary in future versions - and as a reminder that when I come to
Crete a raki will be in order :)

Cheers,
Dimitris

Nikos wrote:
> Hi Dimitris,
>
> the error was on the declaration part.
>
> I had written:
>
> @spec{
> MetaModel "SUC"{
> nsURI: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
> }
> }
>
> and it didn't work. After substituting it with
>
> @Spec{
> Metamodel "SUC"{
> nsUri: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
> }
> }
>
> it worked!
>
> And yes, you were right about the restart of the eclipse platform.
>
> Thanks a lot for the help,
> Nikos
>
> PS: If you come by Crete let me know, I will gladly share a coffee or beer.
>
> Nikos Spanoudakis
> http://users.isc.tuc.gr/~nispanoudakis/
>
Re: [Hutn] problem and a general question [message #568386 is a reply to message #18664] Thu, 21 May 2009 18:14 Go to previous message
Louis Rose is currently offline Louis RoseFriend
Messages: 440
Registered: July 2009
Location: York, United Kingdom
Senior Member
Nikos wrote:
> Hi Dimitris,
>
> the error was on the declaration part.
>
> I had written:
>
> @spec{
> MetaModel "SUC"{
> nsURI: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
> }
> }
>
> and it didn't work. After substituting it with
>
> @Spec{
> Metamodel "SUC"{
> nsUri: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
> }
> }
>
> it worked!
>

Was it simply the difference between the case of @spec and @Spec;
Metamodel and MetaModel; and nsURI and nsUri that caused this problem?

I'm presuming so, and have opened the following bug:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=277365

I'll fix this; I see no reason why these words should be case sensitive.

Cheers,
Louis.
Re: [Hutn] problem and a general question [message #568407 is a reply to message #18710] Fri, 22 May 2009 07:22 Go to previous message
Louis Rose is currently offline Louis RoseFriend
Messages: 440
Registered: July 2009
Location: York, United Kingdom
Senior Member
Louis Rose wrote:
> Nikos wrote:
>> Hi Dimitris,
>>
>> the error was on the declaration part.
>>
>> I had written:
>>
>> @spec{
>> MetaModel "SUC"{
>> nsURI: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
>> }
>> }
>>
>> and it didn't work. After substituting it with
>>
>> @Spec{
>> Metamodel "SUC"{
>> nsUri: "http://mi.parisdescartes.fr/ASEME/metamodels/SUC"
>> }
>> }
>>
>> it worked!
>>
>
> Was it simply the difference between the case of @spec and @Spec;
> Metamodel and MetaModel; and nsURI and nsUri that caused this problem?
>
> I'm presuming so, and have opened the following bug:
> https://bugs.eclipse.org/bugs/show_bug.cgi?id=277365
>
> I'll fix this; I see no reason why these words should be case sensitive.
>

Fixed, and checked into Epsilon SVN.

Many thanks for reporting this Nikos.

Cheers,
Louis.
Previous Topic:[Hutn] problem and a general question
Next Topic:Eugenia beginner question: node borders
Goto Forum:
  


Current Time: Fri Apr 26 13:56:55 GMT 2024

Powered by FUDForum. Page generated in 0.04177 seconds
.:: Contact :: Home ::.

Powered by: FUDforum 3.0.2.
Copyright ©2001-2010 FUDforum Bulletin Board Software

Back to the top