From 7a7437e6d33ec0303d8254794fe233999df23b11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20Schw=C3=B6rer?= Date: Mon, 29 Dec 2014 23:19:40 +0100 Subject: [PATCH] Updated ExtendedGitGraph version --- .../extendedgitgraph/ExtendedGitGraph.php | 4 +- .../components/extendedgitgraph/template.php | 2 +- www/protected/data/git_graph_raw.dat | 647 ++++++++++-------- 3 files changed, 371 insertions(+), 282 deletions(-) diff --git a/www/protected/components/extendedgitgraph/ExtendedGitGraph.php b/www/protected/components/extendedgitgraph/ExtendedGitGraph.php index c00fae3..751d775 100644 --- a/www/protected/components/extendedgitgraph/ExtendedGitGraph.php +++ b/www/protected/components/extendedgitgraph/ExtendedGitGraph.php @@ -14,6 +14,8 @@ class ExtendedGitGraph { const PROGRESS_SESSION_COOKIE = 'ajax_progress_egh_refresh'; + const COMMITCOUNT_COLOR_UPPERLIMIT = 16; + private $username; private $token; private $tokenHeader; @@ -243,7 +245,7 @@ class ExtendedGitGraph { public function generate($year) { $ymap = $this->generateYearMap($year); // unused on purpose (template.php needs it) - $ymapmax = $this->getMaxCommitCount(); // unused on purpose (template.php needs it) + $ymapmax = min($this->getMaxCommitCount(), self::COMMITCOUNT_COLOR_UPPERLIMIT); // unused on purpose (template.php needs it) ob_start(); include('template.php'); diff --git a/www/protected/components/extendedgitgraph/template.php b/www/protected/components/extendedgitgraph/template.php index f1c29ce..d1e9368 100644 --- a/www/protected/components/extendedgitgraph/template.php +++ b/www/protected/components/extendedgitgraph/template.php @@ -49,7 +49,7 @@ $monthlist = array_fill(0, 12, [0, 0]); } $c_count = $ymap[$date->format('Y-m-d')]; - $color_idx = ceil(pow($c_count/$ymapmax, $exponent) * (count($COLORS)-1)); + $color_idx = min((count($COLORS)-1), ceil(pow($c_count/$ymapmax, $exponent) * (count($COLORS)-1))); $color = $COLORS[$color_idx]; $wday = ($date->format('N') - 1); diff --git a/www/protected/data/git_graph_raw.dat b/www/protected/data/git_graph_raw.dat index 28b33bc..bb300fe 100644 --- a/www/protected/data/git_graph_raw.dat +++ b/www/protected/data/git_graph_raw.dat @@ -1,90 +1,176 @@ -a:2:{s:12:"repositories";a:26:{i:0;a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:24:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}i:1;a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 09:41:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}i:2;a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 19:54:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}i:3;a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 11:37:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}i:4;a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 14:40:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}i:5;a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 17:09:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:132;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}i:6;a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 10:43:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}i:7;a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-14 20:57:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}i:8;a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 15:56:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:260;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}i:9;a:13:{s:2:"id";i:19209134;s:4:"name";s:23:"MikesSharpHelperClasses";s:9:"full_name";s:33:"Mikescher/MikesSharpHelperClasses";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:52:"https://github.com/Mikescher/MikesSharpHelperClasses";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 16:07:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:152;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:70:"https://api.github.com/repos/Mikescher/MikesSharpHelperClasses/commits";}i:10;a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-31 09:11:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}i:11;a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 15:36:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}i:12;a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:17:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}i:13;a:13:{s:2:"id";i:9667378;s:4:"name";s:16:"Rezeptverwaltung";s:9:"full_name";s:26:"Mikescher/Rezeptverwaltung";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/Rezeptverwaltung";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 08:39:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:4237;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/Rezeptverwaltung/commits";}i:14;a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-17 12:10:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}i:15;a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-02 18:12:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}i:16;a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 07:51:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}i:17;a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-03 11:23:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}i:18;a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-04 09:24:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}i:19;a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 08:39:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}i:20;a:13:{s:2:"id";i:22617301;s:4:"name";s:8:"yiistrap";s:9:"full_name";s:18:"Mikescher/yiistrap";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/yiistrap";s:8:"language";s:3:"PHP";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 19:38:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:4563;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/yiistrap/commits";}i:21;a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 13:10:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:21280;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}i:22;a:13:{s:2:"id";i:24764588;s:4:"name";s:6:"SAMApp";s:9:"full_name";s:22:"Sam-Development/SAMApp";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Sam-Development/SAMApp";s:8:"language";N;s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 16:00:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Sam-Development/SAMApp/commits";}i:23;a:13:{s:2:"id";i:25170491;s:4:"name";s:5:"SAMHP";s:9:"full_name";s:21:"Sam-Development/SAMHP";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Sam-Development/SAMHP";s:8:"language";s:3:"CSS";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-13 17:56:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Sam-Development/SAMHP/commits";}i:24;a:13:{s:2:"id";i:24764627;s:4:"name";s:11:"SurivorGame";s:9:"full_name";s:27:"Sam-Development/SurivorGame";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:46:"https://github.com/Sam-Development/SurivorGame";s:8:"language";N;s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 16:01:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:64:"https://api.github.com/repos/Sam-Development/SurivorGame/commits";}i:25;a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-09 20:31:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}}s:7:"commits";a:1130:{i:0;a:8:{s:3:"sha";s:40:"db22831dfe9c1da2ebb03c3e0bb8aedf12832d62";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added new logo (for new Homepage ...)";s:10:"repository";a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";r:13;s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-03 12:37:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1;a:8:{s:3:"sha";s:40:"874e6053eae7b2bb63c61b173b4dfc7e5c069739";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added Binary Builds";s:10:"repository";a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";r:13;s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:32:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:2;a:8:{s:3:"sha";s:40:"f8a01b3e444907fd9d6b1f09450b071b7078a360";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Added Project";s:10:"repository";a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";r:13;s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:31:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:3;a:8:{s:3:"sha";s:40:"835bc89dbc674dbfef0e03baae3807dacfd15f23";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";r:13;s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:24:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:4;a:8:{s:3:"sha";s:40:"3931a743b1f28590a15160933cd27c7e2223153c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Fixed AV when monitor is off + Added Right/Left Choice to DIPSViewer";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-08 09:25:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:5;a:8:{s:3:"sha";s:40:"572283622f0b5229e87b5ef1ec4aab38f8a51e9a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Added History Cleanup to TVC (Removes Dropbox-Artifacts)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-10 18:25:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:6;a:8:{s:3:"sha";s:40:"9949b2f6c4d33f79ecc4124260dd460b173dc7c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Fixed AWC Bug (Wrong order of Multi-Monitor-Wallpaper)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 16:58:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:7;a:8:{s:3:"sha";s:40:"454a4bbf0ea397fbc0e64233991d7f1094f8b7b6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Fixed AWC Bug (MonitorConstellation HD_SX not recognized)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 16:49:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:8;a:8:{s:3:"sha";s:40:"c7a011d26433411c85b23ee884e4b89f1aa60ad2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Cleaned up DIPSViewer Visuals";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 16:26:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:9;a:8:{s:3:"sha";s:40:"bc295ddd89b3dafa2177943716bb49625ef02cdd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Updated VS Output path";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 16:15:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:10;a:8:{s:3:"sha";s:40:"d2f624a406636f9a545f245cb847f78dd9c3370a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Removed unneccessary PAUSE in ATC";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 12:26:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:11;a:8:{s:3:"sha";s:40:"2b294c6c459e66a6e4af458fae0db71509e38521";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added Restore-Functionality to DIPSViewer";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 12:23:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:12;a:8:{s:3:"sha";s:40:"e84f5f9ae255a911724f7322d320fc24dd61e8fc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Extracted Desktop-Icons Access to own dll";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 12:22:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:13;a:8:{s:3:"sha";s:40:"09082b3d31cc1b71757fa687c88c387ccd52551b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Added Screen display to DIPSViewer (DIPS-log format updated)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 10:44:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:14;a:8:{s:3:"sha";s:40:"288c399254e8249993049c3b894a39663f63d06a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Linebreak to log";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 21:18:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:15;a:8:{s:3:"sha";s:40:"b41d05876e352d7e20643f9160aea4fbf0df88a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Implemented ";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 20:42:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:16;a:8:{s:3:"sha";s:40:"e551224cda5073b0cc8739bf7a7b7ce19b1d1dd7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Updated DIPSViewer";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 20:42:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:17;a:8:{s:3:"sha";s:40:"82f940fcf10114c9354bf9c79ed09d39a8845fd1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Updated DIPSViewer-UI";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 14:23:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:18;a:8:{s:3:"sha";s:40:"a54636f177c7a68d64176e12d9db180a8279724e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added DIPSViewer";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 13:55:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:19;a:8:{s:3:"sha";s:40:"f3a791aca996555af94779f37f5d1261f878c95d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Implemented ";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 14:15:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:20;a:8:{s:3:"sha";s:40:"2bceefdc1f6a462cfc6558bd154134b7118fe2dc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Implemented ";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 13:18:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:21;a:8:{s:3:"sha";s:40:"1775b67edcc83c2f9c85c845a1ae387984222f90";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Started Implementing DIPS";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 12:09:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:22;a:8:{s:3:"sha";s:40:"e599d5d23b44d318cdbe89d3a5eb35ec4e3c6248";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:66:"Added Classes for most things (Config, Logger, AWC, DIPS, TVC ...)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 09:44:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:23;a:8:{s:3:"sha";s:40:"6a78fe9f170faae02150b3335088e34a78894f70";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:30;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 09:41:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:24;a:8:{s:3:"sha";s:40:"0d3a7d8a6e2f52a5e6ed5799f0f3f9c0cd8021b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"[BefunExec] Tried fixing non-closing after exiting main-window";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 09:02:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:25;a:8:{s:3:"sha";s:40:"43a65401ca32089435b4a79aecf77992b35b65d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"[BefunExec] Fixed Reload when opening file in-program";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 13:44:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:26;a:8:{s:3:"sha";s:40:"3d9e0dd2411e85f48189e869e2eae5f4bd20bb23";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-08 07:22:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:27;a:8:{s:3:"sha";s:40:"bb278ec44312b4fa122a7a8bee28a10693c7da1f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-07 09:18:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:28;a:8:{s:3:"sha";s:40:"a769ca624125ceb8c8ee18afbeecd264ff900ba4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-07 09:16:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:29;a:8:{s:3:"sha";s:40:"feb68961fd28ff1f38caeee7d00b3391794b6cf9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"[BefunDebug] Added Tools Tab";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-23 20:10:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:30;a:8:{s:3:"sha";s:40:"74fc14379b389f2f5055786fdeb92e121aa4f17b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"[BEfunExec] Added Statusbar";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 20:20:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:31;a:8:{s:3:"sha";s:40:"8bcc16f158e8b411432dc02cb449bc5277f7a962";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"[BefunExec] Added effective (from BefunHighlight) Width/Height";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 18:55:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:32;a:8:{s:3:"sha";s:40:"499acd09567bbcc3f622ce7cd8be0a201bf1b4b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"[BefunExec] Added Option to create FullRes Screenshot";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 17:11:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:33;a:8:{s:3:"sha";s:40:"903b7cd0edaf766ff788111da471fd21f518fca2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Fixed AV when loading big file";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 18:16:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:34;a:8:{s:3:"sha";s:40:"3a15bfa935a0f5fd2fc1afb4e8a6e67e569e4024";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"### Fixes ### +a:2:{s:12:"repositories";a:38:{i:0;a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:24:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}i:1;a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 13:13:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}i:2;a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 09:41:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}i:3;a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:05:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}i:4;a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 11:54:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}i:5;a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:01:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}i:6;a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:22:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}i:7;a:13:{s:2:"id";i:28590807;s:4:"name";s:14:"BefunHighlight";s:9:"full_name";s:24:"Mikescher/BefunHighlight";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:43:"https://github.com/Mikescher/BefunHighlight";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:00:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:61:"https://api.github.com/repos/Mikescher/BefunHighlight/commits";}i:8;a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:00:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}i:9;a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 19:54:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}i:10;a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:00:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}i:11;a:13:{s:2:"id";i:25349535;s:4:"name";s:10:"binspector";s:9:"full_name";s:20:"Mikescher/binspector";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/binspector";s:8:"language";N;s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-17 09:14:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:464;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/binspector/commits";}i:12;a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 11:37:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}i:13;a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-22 18:29:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}i:14;a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 14:40:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}i:15;a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 17:09:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:448;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}i:16;a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 10:43:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}i:17;a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-14 20:57:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}i:18;a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 15:56:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:2044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}i:19;a:13:{s:2:"id";i:19209134;s:4:"name";s:23:"MikesSharpHelperClasses";s:9:"full_name";s:33:"Mikescher/MikesSharpHelperClasses";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:52:"https://github.com/Mikescher/MikesSharpHelperClasses";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 16:07:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:152;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:70:"https://api.github.com/repos/Mikescher/MikesSharpHelperClasses/commits";}i:20;a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-31 09:11:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}i:21;a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 15:36:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}i:22;a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:17:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}i:23;a:13:{s:2:"id";i:9667378;s:4:"name";s:16:"Rezeptverwaltung";s:9:"full_name";s:26:"Mikescher/Rezeptverwaltung";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/Rezeptverwaltung";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 08:39:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:4237;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/Rezeptverwaltung/commits";}i:24;a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-17 12:10:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}i:25;a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-02 18:12:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}i:26;a:13:{s:2:"id";i:28542363;s:4:"name";s:18:"StandaloneOrganizr";s:9:"full_name";s:28:"Mikescher/StandaloneOrganizr";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/StandaloneOrganizr";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-27 17:33:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/StandaloneOrganizr/commits";}i:27;a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 07:51:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}i:28;a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-03 11:23:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}i:29;a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-04 09:24:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}i:30;a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 08:39:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}i:31;a:13:{s:2:"id";i:22617301;s:4:"name";s:8:"yiistrap";s:9:"full_name";s:18:"Mikescher/yiistrap";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/yiistrap";s:8:"language";s:3:"PHP";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 19:38:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:4563;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/yiistrap/commits";}i:32;a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 13:10:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:27020;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}i:33;a:13:{s:2:"id";i:27968883;s:4:"name";s:10:"sam-dev.de";s:9:"full_name";s:26:"Sam-Development/sam-dev.de";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/sam-dev.de";s:8:"language";s:3:"PHP";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-13 17:59:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:19012;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/sam-dev.de/commits";}i:34;a:13:{s:2:"id";i:24764588;s:4:"name";s:6:"SAMApp";s:9:"full_name";s:22:"Sam-Development/SAMApp";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Sam-Development/SAMApp";s:8:"language";N;s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 16:00:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Sam-Development/SAMApp/commits";}i:35;a:13:{s:2:"id";i:25170491;s:4:"name";s:5:"SAMHP";s:9:"full_name";s:21:"Sam-Development/SAMHP";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Sam-Development/SAMHP";s:8:"language";s:3:"CSS";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-13 17:56:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:4320;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Sam-Development/SAMHP/commits";}i:36;a:13:{s:2:"id";i:24764627;s:4:"name";s:11:"SurivorGame";s:9:"full_name";s:27:"Sam-Development/SurivorGame";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:46:"https://github.com/Sam-Development/SurivorGame";s:8:"language";N;s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 16:01:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:64:"https://api.github.com/repos/Sam-Development/SurivorGame/commits";}i:37;a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-09 20:31:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}}s:7:"commits";a:1736:{i:0;a:8:{s:3:"sha";s:40:"db22831dfe9c1da2ebb03c3e0bb8aedf12832d62";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added new logo (for new Homepage ...)";s:10:"repository";a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";r:13;s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-03 12:37:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1;a:8:{s:3:"sha";s:40:"874e6053eae7b2bb63c61b173b4dfc7e5c069739";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added Binary Builds";s:10:"repository";a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";r:13;s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:32:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:2;a:8:{s:3:"sha";s:40:"f8a01b3e444907fd9d6b1f09450b071b7078a360";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Added Project";s:10:"repository";a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";r:13;s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:31:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:3;a:8:{s:3:"sha";s:40:"835bc89dbc674dbfef0e03baae3807dacfd15f23";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:19652359;s:4:"name";s:9:"AbsCanvas";s:9:"full_name";s:19:"Mikescher/AbsCanvas";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/AbsCanvas";s:8:"language";s:4:"Java";s:8:"creation";r:13;s:4:"size";i:7876;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/AbsCanvas/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:24:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:4;a:8:{s:3:"sha";s:40:"9a65c600f014c6387106c2b8d8f44d07df215e17";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-04 23:19:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:5;a:8:{s:3:"sha";s:40:"40d4869d201af7d0b3b8965f64574f97d4d6a822";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-04 23:19:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:6;a:8:{s:3:"sha";s:40:"1945e15816ffb41d55de2056633d8fda396da1df";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Remove -q option vom wercker";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-04 23:11:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:7;a:8:{s:3:"sha";s:40:"a4baa09aad828e86c049d07c87e5a07af77679b3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"I'm a fucking idiot";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-04 23:02:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:8;a:8:{s:3:"sha";s:40:"cba374b2ae82957cc44a242e4389bed8ba861600";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added unit testing to wercker";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-04 22:59:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:9;a:8:{s:3:"sha";s:40:"b98ea8d857506d4a767137dd1792f92945767035";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"added build-tools-21.0.1 to wercker.yml";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-04 22:53:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:10;a:8:{s:3:"sha";s:40:"503c9824da66b44f7b69e582ff6aa1ef35f1b0c3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"chmod +x gradlew >> wrecker.yml";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-04 22:49:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:11;a:8:{s:3:"sha";s:40:"f21f38a89a46f9fe917360084ceca9619fef3a84";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added (hopefully) android-21 target to wercker";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-04 22:46:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:12;a:8:{s:3:"sha";s:40:"fcc36bf6ffe9c7e5d503091fa2367275904b1519";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"wrong yml name -.-";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-04 22:34:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:13;a:8:{s:3:"sha";s:40:"f70cdc7b9429b560c62ee12fdc2ed2d14c0275fa";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added wrecker.yml";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-04 22:32:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:14;a:8:{s:3:"sha";s:40:"c301d6b869c70890f7b878720af148b25915141f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Fixed remaining Eclipse warnings";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-27 14:05:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:15;a:8:{s:3:"sha";s:40:"542cf31175b007d9deabe5bef4e79f119d9579f7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"TriangleBox Collision works now (ALL unit tests run)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-26 13:48:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:16;a:8:{s:3:"sha";s:40:"a201c7347a797550ad19d2c72c18701b724a3ff3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"TriangleTriangle Collision works now (unit tests run)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-25 19:18:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:17;a:8:{s:3:"sha";s:40:"7261f554df9ec7376725d8ab2d914e9d5ba01e1f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"TriangleTriangle Collision works kinda now (unit tests don't run)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-25 19:01:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:18;a:8:{s:3:"sha";s:40:"dd02c1e4e0e86b724dfa70959bb82afec189c6db";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Fixed TriangleTriangle Collision Detection";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-25 16:42:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:19;a:8:{s:3:"sha";s:40:"3dc68d680ba15f4585e455cc0bb434936d31786d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"Optimized getCircleLineXDistance() and getCircleLineYDistance()";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-25 16:34:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:20;a:8:{s:3:"sha";s:40:"45aa37b80066039e67bc06110cbf7cd518568a34";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Fixed some rrors in Circle-Triangle collisions";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-25 14:00:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:21;a:8:{s:3:"sha";s:40:"3ad5d70dccb4953d6e7d0e94a7644e7fa454a794";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"TriangleCircle Collision works now (unit tests run)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-25 12:54:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:22;a:8:{s:3:"sha";s:40:"7e23b66db45f5469dfb988f0d66b7e9f20018d3c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Implemented new CircleTriangle Collision Algorithm";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-25 12:16:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:23;a:8:{s:3:"sha";s:40:"0c71a743569d5bc3c8ec9d85379e337c0dee76da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"Working on TriangleCircleCollisions (see *.linq file)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-24 20:05:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:24;a:8:{s:3:"sha";s:40:"4999dec2399ea7083e93384b0b13a246b0b91608";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Implement doGeometriesCollide(Triangle, Triangle)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-24 10:08:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:25;a:8:{s:3:"sha";s:40:"7e486bb85784f362026a32ef769f844e566a5387";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Implement doGeometriesCollide(Triangle, Circle)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-24 10:01:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:26;a:8:{s:3:"sha";s:40:"be3aa44068bf971467b7567b04836d48bb0d343b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Implement doGeometriesCollide(Triangle, Box)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-24 09:52:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:27;a:8:{s:3:"sha";s:40:"1fef07b6fb8b0fe52576fa93418bfb641fe66476";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added methods for Triangle Collisions";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-23 15:42:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:28;a:8:{s:3:"sha";s:40:"e872a180e27f178d965e422b3b13c6f0015753db";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Added TriangleTest "EntityTouchingTest" (update)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-22 13:39:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:29;a:8:{s:3:"sha";s:40:"001bdb8d0077ae3adbf7af897de33a752373b1ee";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added TriangleTest "EntityCollisionTest" (update)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-22 13:07:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:30;a:8:{s:3:"sha";s:40:"38bbfdbcd8fe3e1454eb8143f09644a5203958b2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Added TriangleTest "CollisonMapTest" (update)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-22 13:02:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:31;a:8:{s:3:"sha";s:40:"7e919cfdd0ad5545d8eba4b3393f14c9769e3f0e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added TriangleTest "CollisonCircleTriangleTest"";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-22 12:49:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:32;a:8:{s:3:"sha";s:40:"19fcceb5f87f55325fe0d7e21621d17fa272b709";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added TriangleTest "CollisonTriangleCircleTest"";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-22 12:44:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:33;a:8:{s:3:"sha";s:40:"52348933031d7fe8563b874c09beed5e8bf08bce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Added TriangleTest "CollisonBoxTriangleTest"";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-22 12:09:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:34;a:8:{s:3:"sha";s:40:"6534cf26fa9856ccf2ea828037071d9e4c74ec16";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Added TriangleTest "ColliisonTriangleBoxTest"";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-21 16:35:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:35;a:8:{s:3:"sha";s:40:"68840fa97bdeeb3a3aecbcd0ee70041a4b5520f3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Added TriangleTest "ColliisonTriangleTriangleTest"";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-21 15:59:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:36;a:8:{s:3:"sha";s:40:"7606831d01751ef0a84a9a781f4a28dd604b6ae2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:103:"CollisionTriagnle migrated from "circumcenter" to "centroid" (better because always inside of triangle)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-21 15:21:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:37;a:8:{s:3:"sha";s:40:"ba43dd0174925f7937e0e59b37b03adeecd4b403";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Reorganized CollisionTest unitTests";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-21 12:24:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:38;a:8:{s:3:"sha";s:40:"bf28ddedbd9ce17d827c7e7dbedfcc15653576ec";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"Refactored ShapeMath methods into CollisionGeometry classes";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-21 11:56:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:39;a:8:{s:3:"sha";s:40:"0085065e62352f9cf6923d9619449868e6424738";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"Added CollisionTriangle (preparation for triangle collisions)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-20 21:02:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:40;a:8:{s:3:"sha";s:40:"126c68355bd4db289acbcdcb6e2ef0d36be9c772";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:97:"Added methods to add CollisionBoxes around the map to limit Entities inside of the map boundaries";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-20 08:46:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:41;a:8:{s:3:"sha";s:40:"d8267e30f920ba25c237f1ba4fd75df15d84ba9f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"added scrollMapToEntity() methods";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-19 20:23:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:42;a:8:{s:3:"sha";s:40:"0d4eeae8be334ec2adee8b8d61b89be4b49786a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"added possibility of Entity to have multiple forces";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-19 13:26:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:43;a:8:{s:3:"sha";s:40:"19dfc840bfa3bf1ee74946f26d24c4757b078c95";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added (Hard)-Touching recognition";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-19 12:29:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:44;a:8:{s:3:"sha";s:40:"cf2d7253bdbefef715c4bb4a079cd5bdc44d901b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"added Backgrounds (Simple, Repeating, Parallax)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-18 17:39:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:45;a:8:{s:3:"sha";s:40:"913b69475730ac8cf94aea1bb003c523f86ad5ff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"added Gravity and Mass to Entities";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-18 15:13:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:46;a:8:{s:3:"sha";s:40:"b9bbead5c5117ab4221eeb2f4e73e3d4cd163d03";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added new Demo Game "sidescroller"";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-18 13:32:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:47;a:8:{s:3:"sha";s:40:"e70323c713a28447dc07c7b74d1abe0451e9fe91";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Forgot to change Superclass of Entity in last commit";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-17 23:38:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:48;a:8:{s:3:"sha";s:40:"ba6e12fc1007168e121963c6ba7ba7cc3257a3c7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Fixed and Added Unit Tests";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-17 23:35:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:49;a:8:{s:3:"sha";s:40:"69e2f6c4e2b85e33db5a000ea07adaada7cf6627";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:77:"Added Tile Collisions and refactored MoveCollisions into HARD/SOFT collisions";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-17 23:18:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:50;a:8:{s:3:"sha";s:40:"8928be1d32dbf9401ceb103ce96cbe19af9e3f74";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"Added canMoveCollide() for more diverse movement Collisions";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-17 20:00:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:51;a:8:{s:3:"sha";s:40:"ffd7490766305867b98d5c843f3c5fa8f594096b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"Optimized CollisionMap expTileScale Formula (Don't know what I was thinking -.-)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-17 10:15:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:52;a:8:{s:3:"sha";s:40:"5ab9b82b82b771637e3fdd2dfe330d2beae29266";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"entity rendering perormance improvement (+todo cleanup)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-15 17:48:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:53;a:8:{s:3:"sha";s:40:"ec36b76ca3ffac9b2db30922de083a1ff0a0821f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"Fixed XML Parsing when no encoding/compression is set (Thanks unit-tests -.- )";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-13 19:23:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:54;a:8:{s:3:"sha";s:40:"9d934a0820c8f6f5a0501f853e1a520558c73b09";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:66:"Added max delta-time (otherwise android goes crazy on startup ...)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-13 19:08:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:55;a:8:{s:3:"sha";s:40:"e1dad3b8ff47bbc49cd4c2e06170fdf343bfd715";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"Fixed commons-codec NoSuchMethod Error -> fixes for android build";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-13 19:02:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:56;a:8:{s:3:"sha";s:40:"d18c532fcaca2f9cf29213e4b9d57b6a7def35bb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"Removed XOM-Library (now using LibGDX XML Parser) -> fixes for android build";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-13 18:22:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:57;a:8:{s:3:"sha";s:40:"8ce71390f23b6e527d0a394ebaaf96370c9d9a3b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added Unit Tests for different collisionMapScales";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-13 13:29:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:58;a:8:{s:3:"sha";s:40:"7375ca2d8c3329b442fb572f5a8bb73245f97cce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added debug vectors to entities";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-12 23:38:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:59;a:8:{s:3:"sha";s:40:"cade858d31bd23618a048a3f78687367ad0d2c23";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:100:"Added custom Size to collisionMap. +CollisionTiles can now be 2^n times bigger/smaller than map tiles";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-12 22:58:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:60;a:8:{s:3:"sha";s:40:"b4cb0e15c1c295594fff65738733111a7fb2cb01";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Add a few convenient methods - fixed things - etc";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-12 18:56:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:61;a:8:{s:3:"sha";s:40:"76de0db10177477c7f892914bce070ce51284a47";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Added ~~[ many ]~~ unit tests for collisions";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-12 09:44:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:62;a:8:{s:3:"sha";s:40:"c8e00c9610267fd361a9c8e9405fa339b7621a27";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Updated travis.yml (emails ?)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-11 21:15:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:63;a:8:{s:3:"sha";s:40:"15d7c346105e439f27a75643eb06332cf1be5e05";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Fixed Unit Tests";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-11 20:58:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:64;a:8:{s:3:"sha";s:40:"e1ac1f3e86042777b8c7e48d4c60f7ad9d58652c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"javadoc previous commits";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-11 20:57:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:65;a:8:{s:3:"sha";s:40:"69b1bd0e76684ea4107b0a45fad1a75507ac16d9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Demo build (for fun :D )";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-11 20:10:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:66;a:8:{s:3:"sha";s:40:"0b36251a683b0f096f2b1588a6f84f52304eaca2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"COLLISION DETECTION ... yay";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-11 19:49:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:67;a:8:{s:3:"sha";s:40:"93532b8eb6591d450944488117a7edf3e7e031fb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Moved DummyClasses to de.samdev.absgdx.test.dummy";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-11 14:44:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:68;a:8:{s:3:"sha";s:40:"ae4d4ba4a8549b572bc516d4d17995db53e4116a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added more Unit Tests";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-11 14:05:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:69;a:8:{s:3:"sha";s:40:"6ae6ee8d36b18c643eadbb5842c681a13fd3ff17";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"javadoc it all ..";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-11 13:14:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:70;a:8:{s:3:"sha";s:40:"22b6f17dea39ef19923e168557094cf390e36ef9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"A little bit of Demo for the collisionGeometries";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-11 12:44:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:71;a:8:{s:3:"sha";s:40:"b822ba69018cb1e9601472f888a5bfe059d50ea7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"collisionGeometries are correctly mapped onto the Tiles (+ Movement etc)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-11 12:43:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:72;a:8:{s:3:"sha";s:40:"5a0a08b14060fe8cfa0d79ecb0dbcc339144c6fe";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"Entity can now have (non-functional) collisionCircles";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-11 10:05:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:73;a:8:{s:3:"sha";s:40:"ff9cca50950da0a8b2f257e37f7e5adc8f75b71d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Migrated to jUnit4 syntax";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-09 21:41:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:74;a:8:{s:3:"sha";s:40:"42958724313d07099b65fda7ba3d6382b1a75226";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Unit Tests for Entity && SortedLinkedEntityList";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-09 21:32:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:75;a:8:{s:3:"sha";s:40:"73b07b2dad7ea23ae6afa67a8c8597abdc074151";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added Entity removal";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-05 11:13:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:76;a:8:{s:3:"sha";s:40:"072fbd38ef306ae6d39fb6b8df78840e9bfb7a49";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Added SortedLinkedEntityList (for rendering z order)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-05 10:13:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:77;a:8:{s:3:"sha";s:40:"a56c354d4d4dc53db0d00ea98db3f7f9820b7c57";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Entity movement (framerate independent)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-03 16:13:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:78;a:8:{s:3:"sha";s:40:"7788721c1ef3510271d32322721221dca224b751";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Added animations to entitys";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-03 14:32:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:79;a:8:{s:3:"sha";s:40:"f6bbb25c4372beb1334360ce904fcb0addf99c49";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Entity system in place";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-03 10:18:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:80;a:8:{s:3:"sha";s:40:"257682820902714fdd1664194af363a51db5e947";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"Translation/Scale isnow done by Transformationmatrix manipulation";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-03 10:03:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:81;a:8:{s:3:"sha";s:40:"070274cffca54cb860b57dd8de4ba8bf1e6f60e0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"javadoc everything ... EVERYTHING !!!!!111einseinself";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-02 19:59:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:82;a:8:{s:3:"sha";s:40:"7c6b7d61ce4254d27792e0609a773478737be848";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added settings to gradle config";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-02 17:04:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:83;a:8:{s:3:"sha";s:40:"6a013fcf00d78945bd3601cdd86967e735e6e6d0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added settings to gradle config";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-02 17:04:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:84;a:8:{s:3:"sha";s:40:"cf9340a54dc3dd0f5cf236e75e7b07bc5bb4a644";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Pushed Eclipse Settings to repo";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-02 16:40:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:85;a:8:{s:3:"sha";s:40:"356f77e443e1878636919d3ab4cefb98ba6853eb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Added Entities";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-02 16:34:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:86;a:8:{s:3:"sha";s:40:"f1b1a9a018ca5a3f511067626263e87ad19921ac";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Fixed Resources in absGDX-test (gradle ...)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-02 13:50:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:87;a:8:{s:3:"sha";s:40:"71b0973452ac626268a174213548e10f1cd45cde";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Unit Tests for Map Loader";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-02 13:38:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:88;a:8:{s:3:"sha";s:40:"66ec46c35c97a2dc7b653f830bfb8c8ac5efacbb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added AutoTile + Debugmap";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-31 13:59:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:89;a:8:{s:3:"sha";s:40:"0687e001e39eb23798252553aa7ff94ea575665b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added Animation- & StaticTile";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-31 12:02:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:90;a:8:{s:3:"sha";s:40:"0561da3b148def489bc8aaa81a1e9de98de4dde1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Finished Map loading from TMX file";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-30 20:44:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:91;a:8:{s:3:"sha";s:40:"7b9a2f1268601623d140b4cb1e5a101eed0b4cc1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Moved to new XML Framework (XOM)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-30 18:29:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:92;a:8:{s:3:"sha";s:40:"62a24c2a4ac9885ded5d25366eb112e0e835a559";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Merge remote-tracking branch 'origin/master'";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-28 22:11:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:93;a:8:{s:3:"sha";s:40:"eebf7221b9832bbc516ae02ebefeae76c97eaefe";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"things and fixes";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-28 22:10:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:94;a:8:{s:3:"sha";s:40:"c3fb6255b6b38fc4899a6b3a19079a0230bd4d44";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Merge remote-tracking branch 'origin/master'";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-28 21:18:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:95;a:8:{s:3:"sha";s:40:"7b7c94462282ffd5b6f3fbe9bf63df8c3f6dda26";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Removed GC debug output (Dalvik VM -.- )";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-28 21:18:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:96;a:8:{s:3:"sha";s:40:"64e06f7b69b6707b05d44c82f20f4151192c56e9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"Moved Unit Tests to own gradle project (=> Eclipse compilation works again)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-28 19:04:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:97;a:8:{s:3:"sha";s:40:"85244eb0ce9241790729c631a9b32d20a209ed26";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Kinda fixed android:duplicate License problem (=> BUILD WITH GRADLE)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-28 18:48:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:98;a:8:{s:3:"sha";s:40:"d0849fc274d3f40a591bc565190727c9eb320018";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Merge remote-tracking branch 'origin/master'";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-28 13:20:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:99;a:8:{s:3:"sha";s:40:"5fb6d264cedd5f2bcf3c89ced174ce0cfc11bea7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-28 13:20:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:100;a:8:{s:3:"sha";s:40:"581f8291f65113a71eafcff0faab9cdb81f10f54";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Added Debug Output for Maps + Input + DebugFormatter";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-28 13:19:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:101;a:8:{s:3:"sha";s:40:"48ffe228a17c94793e8e919578928994de1a1add";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Merge remote-tracking branch 'origin/master'";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-28 11:39:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:102;a:8:{s:3:"sha";s:40:"b7d1b5aefcf985d3d25955c7ada7c4c595009739";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"FIXED THE FIRST MEMORY LEAK ᕙ༼ຈل͜ຈ༽ᕗ";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-28 11:36:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:103;a:8:{s:3:"sha";s:40:"34ae16c2d7bb33870e1eb8ebf39e83c87a51590e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"More Debug output";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-28 11:31:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:104;a:8:{s:3:"sha";s:40:"9e834dac73f70f98704c96e0641e9dfb01b0ad85";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-28 09:08:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:105;a:8:{s:3:"sha";s:40:"a281e8da9288ded29e6fea0a4b3e8e02a1cda983";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Started implementing Debug output";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-27 16:18:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:106;a:8:{s:3:"sha";s:40:"2ccb3e3a8e689cee680cc7ad083d3e6563f72a51";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Finished DependentProperties + Added Debugmode";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-25 16:48:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:107;a:8:{s:3:"sha";s:40:"6c7a38fdb7ef8cd85472fcdd3a3cf930ea7cd562";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added apache:commons-lang3 dependency";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-25 12:49:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:108;a:8:{s:3:"sha";s:40:"c47547fc84ce755199d1dc66c4d424c03a11250e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Started implementing DependentProperties";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-24 18:10:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:109;a:8:{s:3:"sha";s:40:"f69f0398829bc1e46afe6ce7a6f757fc09c3a624";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"More ouput when unit testing (gradle -> travis)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-24 13:04:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:110;a:8:{s:3:"sha";s:40:"ffb8bc331d29300d985ad925ed2fcd12defee67b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Fixed Tiles + Unit tests";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-24 12:37:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:111;a:8:{s:3:"sha";s:40:"8e10abd90b72588946cbf980bf5157eab99977fb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added more Unit Tests";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-24 11:58:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:112;a:8:{s:3:"sha";s:40:"678889de8880269f97709547150b7955638da797";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"Added Tiles";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-24 11:58:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:113;a:8:{s:3:"sha";s:40:"b1eed05fbf8c968c20555ad3d709016a3efca28f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added Map Offset";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-23 11:01:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:114;a:8:{s:3:"sha";s:40:"0a0c720b43d98f19cb123cc612be45028da9b890";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added SectionMapScaleResolver";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-22 16:50:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:115;a:8:{s:3:"sha";s:40:"4a95d91adac651aa2f5e43388dfb3f52f19e0870";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"Implemented LimitedMinimumBoundaryScreenScaleResolver";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-22 16:39:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:116;a:8:{s:3:"sha";s:40:"e659ce1e30e2b3d60061c439adafdd9697ae6296";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Implemented MinimumBoundaryScreenScaleResolver";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-22 16:00:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:117;a:8:{s:3:"sha";s:40:"98dc44dc96e394f53f4cbe1215e714dd13b3d4a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"fixed build.gradle to execute tests";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-21 17:44:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:118;a:8:{s:3:"sha";s:40:"7dd1ff0ce055342a493d61467bdbdce51e2d6b2a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Implemented FixedScreenScaleResolver";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-21 17:21:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:119;a:8:{s:3:"sha";s:40:"d2b6dbd1f05e8980342e8b66b4305aac50c96eb8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"Added UnitTest for MinimumBoundaryScreenScaleResolver";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-21 17:00:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:120;a:8:{s:3:"sha";s:40:"66c3fcc8be22ca0669d83b60637f1e291447cefe";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Finished MaximumBoundaryScreenScaleResolver";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-21 16:38:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:121;a:8:{s:3:"sha";s:40:"79893c703aad9b187c5aa81ae34ba1060806ba61";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Started TileMap (added MapScaleResolver)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-21 16:25:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:122;a:8:{s:3:"sha";s:40:"fa6cf7e5dfd5d336a07469d52ae33b28d9008c08";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added JUnit Tests";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 17:45:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:123;a:8:{s:3:"sha";s:40:"ba270cd5cac146bed7a4a571fb0263a7518ae145";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"Added README for template (short instructions for now - more later)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 17:23:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:124;a:8:{s:3:"sha";s:40:"c8d0552fb2ec3949bfb9645d4207b327d4fa651a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Gradle Trickeries and more";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 17:22:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:125;a:8:{s:3:"sha";s:40:"000e6b45ed3936805b0e9d7267c952e2f8707ced";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added Template for including compiled jar";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 17:18:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:126;a:8:{s:3:"sha";s:40:"57cb787c97f407d940f77bedc22c0d76730fd4d5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Try to configure Travis CI (2)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 13:41:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:127;a:8:{s:3:"sha";s:40:"299b90d3e72378cb5038d74ea5457bc88ec3ac87";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Try to configure Travis CI (1)";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 13:37:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:128;a:8:{s:3:"sha";s:40:"ce35c348860618b20f74043e6496bc9bd9e450ef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Fixed android check for Travis CI";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 13:33:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:129;a:8:{s:3:"sha";s:40:"7166f5a0569bc644bb6008102c93b2cd5095af4a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Fixed permissions for Travis CI";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 13:22:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:130;a:8:{s:3:"sha";s:40:"7d7cf6655b68bf5c3a6260bdb2c92ec26f90c78d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Travis CI support - Trigger build";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 13:20:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:131;a:8:{s:3:"sha";s:40:"163b98fc6186d003f3c0e9c153672026aef0529d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added Travis CI support";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 13:18:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:132;a:8:{s:3:"sha";s:40:"11eef2aa5870184f1d082ffb3ac7dadbdf011b7c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added absGDX-framework";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 12:54:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:133;a:8:{s:3:"sha";s:40:"43ec55e0bcccddf3b08edf964b445a6d32db54ca";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Little gradle hackery";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 12:30:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:134;a:8:{s:3:"sha";s:40:"80dbeef9736d87cc095a59898c39f9c77b3018c7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added project sceleton";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 11:38:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:135;a:8:{s:3:"sha";s:40:"688c3be54ff9466ec9abc130c84fd67746e34f05";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:9:"Gradle it";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 11:37:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:136;a:8:{s:3:"sha";s:40:"9dc18d8b4b18a06cce5809aab2eec824d7d7c668";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Initial commit // Here we go";s:10:"repository";a:13:{s:2:"id";i:25427405;s:4:"name";s:6:"absGDX";s:9:"full_name";s:16:"Mikescher/absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:35:"https://github.com/Mikescher/absGDX";s:8:"language";s:4:"Java";s:8:"creation";r:30;s:4:"size";i:16668;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:53:"https://api.github.com/repos/Mikescher/absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-19 11:37:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:137;a:8:{s:3:"sha";s:40:"3931a743b1f28590a15160933cd27c7e2223153c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Fixed AV when monitor is off + Added Right/Left Choice to DIPSViewer";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-08 09:25:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:138;a:8:{s:3:"sha";s:40:"572283622f0b5229e87b5ef1ec4aab38f8a51e9a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Added History Cleanup to TVC (Removes Dropbox-Artifacts)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-10 18:25:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:139;a:8:{s:3:"sha";s:40:"9949b2f6c4d33f79ecc4124260dd460b173dc7c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Fixed AWC Bug (Wrong order of Multi-Monitor-Wallpaper)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 16:58:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:140;a:8:{s:3:"sha";s:40:"454a4bbf0ea397fbc0e64233991d7f1094f8b7b6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Fixed AWC Bug (MonitorConstellation HD_SX not recognized)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 16:49:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:141;a:8:{s:3:"sha";s:40:"c7a011d26433411c85b23ee884e4b89f1aa60ad2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Cleaned up DIPSViewer Visuals";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 16:26:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:142;a:8:{s:3:"sha";s:40:"bc295ddd89b3dafa2177943716bb49625ef02cdd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Updated VS Output path";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 16:15:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:143;a:8:{s:3:"sha";s:40:"d2f624a406636f9a545f245cb847f78dd9c3370a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Removed unneccessary PAUSE in ATC";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 12:26:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:144;a:8:{s:3:"sha";s:40:"2b294c6c459e66a6e4af458fae0db71509e38521";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added Restore-Functionality to DIPSViewer";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 12:23:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:145;a:8:{s:3:"sha";s:40:"e84f5f9ae255a911724f7322d320fc24dd61e8fc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Extracted Desktop-Icons Access to own dll";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 12:22:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:146;a:8:{s:3:"sha";s:40:"09082b3d31cc1b71757fa687c88c387ccd52551b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Added Screen display to DIPSViewer (DIPS-log format updated)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-07 10:44:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:147;a:8:{s:3:"sha";s:40:"288c399254e8249993049c3b894a39663f63d06a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Linebreak to log";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 21:18:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:148;a:8:{s:3:"sha";s:40:"b41d05876e352d7e20643f9160aea4fbf0df88a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Implemented ";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 20:42:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:149;a:8:{s:3:"sha";s:40:"e551224cda5073b0cc8739bf7a7b7ce19b1d1dd7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Updated DIPSViewer";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 20:42:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:150;a:8:{s:3:"sha";s:40:"82f940fcf10114c9354bf9c79ed09d39a8845fd1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Updated DIPSViewer-UI";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 14:23:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:151;a:8:{s:3:"sha";s:40:"a54636f177c7a68d64176e12d9db180a8279724e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added DIPSViewer";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-06 13:55:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:152;a:8:{s:3:"sha";s:40:"f3a791aca996555af94779f37f5d1261f878c95d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Implemented ";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 14:15:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:153;a:8:{s:3:"sha";s:40:"2bceefdc1f6a462cfc6558bd154134b7118fe2dc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Implemented ";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 13:18:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:154;a:8:{s:3:"sha";s:40:"1775b67edcc83c2f9c85c845a1ae387984222f90";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Started Implementing DIPS";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 12:09:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:155;a:8:{s:3:"sha";s:40:"e599d5d23b44d318cdbe89d3a5eb35ec4e3c6248";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:66:"Added Classes for most things (Config, Logger, AWC, DIPS, TVC ...)";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 09:44:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:156;a:8:{s:3:"sha";s:40:"6a78fe9f170faae02150b3335088e34a78894f70";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:17435226;s:4:"name";s:24:"AutostartToolsCollection";s:9:"full_name";s:34:"Mikescher/AutostartToolsCollection";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:53:"https://github.com/Mikescher/AutostartToolsCollection";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:420;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:71:"https://api.github.com/repos/Mikescher/AutostartToolsCollection/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-05 09:41:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:157;a:8:{s:3:"sha";s:40:"0e910b9fa071f1c12d8eb503b50a5cc071464fbb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Create README.md";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 13:15:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:158;a:8:{s:3:"sha";s:40:"f732348759430c4f13028931b1fb7ee5b2c7f596";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated gitignore";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:09:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:159;a:8:{s:3:"sha";s:40:"0b428bc8b4874e70d0ce202ee3d03e4e592de7c7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"[BefunDebug] Added Tools Tab";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-23 20:10:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:160;a:8:{s:3:"sha";s:40:"20de4f7b89876440bb9b7a98757021f120421ccb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"[ALL] Changed Ouputpath to a common one";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:56:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:161;a:8:{s:3:"sha";s:40:"2058151e5094aaca959f83fa16422aafa230bee5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"Changed Assemblyname of BefunDebug - Fixed old refernces of BefungExec";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:28:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:162;a:8:{s:3:"sha";s:40:"0e66a57f291e890f8e9a15f13a8456ce8737711d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Commited missing changrs from yesterday";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-05 09:01:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:163;a:8:{s:3:"sha";s:40:"ac9a24320c87978c9798276e46931d4bd2aec0e0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"[BefunGen] changed NumberRep-internals from int32 to int64 (long)";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 18:08:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:164;a:8:{s:3:"sha";s:40:"0ea1973538c9b77920cd925a53fc7a92e6b019ff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Changed License to MIT (BefunWrite + BefunExec)";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-30 15:28:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:165;a:8:{s:3:"sha";s:40:"c504e4789ac6bc7d9832ac0a3e8aee9569393891";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Finished basig BefunHighlighter code";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 22:28:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:166;a:8:{s:3:"sha";s:40:"0b812e22cb2c71f91de637d45c0d8cb93270edf8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Finished core construct of BefunHighlight";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 18:09:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:167;a:8:{s:3:"sha";s:40:"025489a586a561dcd9abc3ac47e1666bda9bc149";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"Renamed BefungExex to BefunExec fo a matter of consistency";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 16:06:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:168;a:8:{s:3:"sha";s:40:"d41f4d7dc7b4a82a45e580913fbfc64e4bb0ada2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"[BefunDebug] Added field for NumberRep Size";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-11 19:31:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:169;a:8:{s:3:"sha";s:40:"c9e2890e0e21c81f1a49b43051fb4e5b5aaff0c8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefunGen] Added Optimization (Flatten and CleanUp StmtList Hierachie)";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 13:30:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:170;a:8:{s:3:"sha";s:40:"8a2de4d09205585c7882caa908bcb06f646e7fa6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Added new (Makro-)Command ";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 12:41:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:171;a:8:{s:3:"sha";s:40:"724d70007261e2ed4240efc540ec7632068cae86";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added more Examples";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:25:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:172;a:8:{s:3:"sha";s:40:"e3c51f10830bb649aa741694d44826688051c195";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"[BefunWrite] Added "Build All" Cmd";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:25:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:173;a:8:{s:3:"sha";s:40:"5b04b27671971da59d48464497315ab32140def7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Bugfixes and PICalc Example";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 21:29:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:174;a:8:{s:3:"sha";s:40:"aa017ee87ec09fd9d8ed421d28a6e30289464089";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added RemoveUnusedMethods Optimization";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 10:45:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:175;a:8:{s:3:"sha";s:40:"1c2320a6796c903625160ca1120b50dbea15c846";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Added Icons (BefunExec, BefunGen, BefunDebug, BefunWrite)";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 13:12:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:176;a:8:{s:3:"sha";s:40:"283f14fee8b316a3afd88f92e79346fb491eeff5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Renamed BefunGenStudio to BefunDebug";s:10:"repository";a:13:{s:2:"id";i:28590933;s:4:"name";s:10:"BefunDebug";s:9:"full_name";s:20:"Mikescher/BefunDebug";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunDebug";s:8:"language";s:2:"C#";s:8:"creation";r:64;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunDebug/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 13:04:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:177;a:8:{s:3:"sha";s:40:"8e128c5cf2316ebe0d9b2362d646503d708124c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added UndoLog (Left Arrow Key)";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 21:38:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:178;a:8:{s:3:"sha";s:40:"db1154452cd7cb67479c52993542d681a80dcc3b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Added option to sow stack reversed (fixed at tail)";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 19:16:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:179;a:8:{s:3:"sha";s:40:"163f44a784ae4c30301928bb4c7084ddfedb71fb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added more precise speed control";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 18:55:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:180;a:8:{s:3:"sha";s:40:"ba0b4392f011fc603235f2efa0950c60a7026cee";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"BefunExec Refactoring [Step 2]";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 17:05:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:181;a:8:{s:3:"sha";s:40:"78a9052f25291c917b4c5335576bee5fcfe80750";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"BefunExec Refactoring [Step 1]";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 16:32:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:182;a:8:{s:3:"sha";s:40:"3e6beaceed09adec7b8d005cc4d8d825bd9c6229";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Create README.md";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 13:14:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:183;a:8:{s:3:"sha";s:40:"572fa1352efa76bc29710a70ee51cb93caa9c3d0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Updated .gitignore";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:09:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:184;a:8:{s:3:"sha";s:40:"c0d649294463ea1ce5148e7f817acbad75506f2d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"[BefunExec] Improved Graph display again (for jumps)";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-10 01:56:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:185;a:8:{s:3:"sha";s:40:"a43e3dd743a4ee0e2b24a9ef0b2f680b489fc9a1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"[BefunExec] Added BefunHighlight graph rendering to DebugView (TAB)";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-10 01:14:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:186;a:8:{s:3:"sha";s:40:"f379bfbd10e079042c1266395a3a38357e297262";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"[BefunExec] Tried fixing non-closing after exiting main-window";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 09:02:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:187;a:8:{s:3:"sha";s:40:"81a22cbd321e15949caa76cc1a09f5ec4cb18c03";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"[BefunExec] Fixed Reload when opening file in-program";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 13:44:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:188;a:8:{s:3:"sha";s:40:"3b75db2eb33ae5495b91d2937e98e166e75359a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"[BefunDebug] Added Tools Tab";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-23 20:10:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:189;a:8:{s:3:"sha";s:40:"42ad20ff55ddad32e0e85cbe37b6d7014ea95b1a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"[BEfunExec] Added Statusbar";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 20:20:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:190;a:8:{s:3:"sha";s:40:"f049ea08291e40297366d0b4f2e5cb0095378aff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"[BefunExec] Added effective (from BefunHighlight) Width/Height";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 18:55:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:191;a:8:{s:3:"sha";s:40:"9ce0f34ced716edfabdf40e8d9852be6ae99bf69";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"[BefunExec] Added Option to create FullRes Screenshot";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 17:11:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:192;a:8:{s:3:"sha";s:40:"e352fc0a2fdc61838366cf83043a322d96607364";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Fixed AV when loading big file";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 18:16:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:193;a:8:{s:3:"sha";s:40:"5a5e2f055bcb26b7eee27596c0ba8bfb94002c1e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"### Fixes ### - Fixed MASSIVE MemoryLeak on low FPS - - Added Befunge version display";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 17:35:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:35;a:8:{s:3:"sha";s:40:"91971d51684dac9319b5d67a80c2fae8755fcb6a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added Timer to BefunExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 17:03:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:36;a:8:{s:3:"sha";s:40:"4489e65f0c262cdea5ce82cf8575cee498f936e7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Updated examples to use new SH selector";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-17 09:12:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:37;a:8:{s:3:"sha";s:40:"e20e199376b6fb15b0e5e459dddd4ef7a735df4d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"[BefunWrite] Fixed typo in PI_Calc.tf";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-16 12:36:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:38;a:8:{s:3:"sha";s:40:"699ddf0d8b64e2ee283f1e42e925fa5159c38407";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:86:"[BefunGen] **Major** code compression by vertically expanding Callframe I/O operations";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-10 17:10:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:39;a:8:{s:3:"sha";s:40:"7f69f47fdaa8f889f6a65616ce3c8105e4cf6c7a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"[BefunWrite] Updated Example "Square It"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-10 17:10:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:40;a:8:{s:3:"sha";s:40:"33666a194372b48ac6039854dda02d3b06a8a9cb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"[BefunExec & BefunGen] Added Todo's";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 20:57:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:41;a:8:{s:3:"sha";s:40:"8952ba449aa04d12663c01e045c35f1a69f6d38b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"[ALL] Changed Ouputpath to a common one";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:56:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:42;a:8:{s:3:"sha";s:40:"4a8e1509ed1cf096a51be97eadf7fcf7bba2bb17";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"[BefunExec] Added Option to hide "Input char"-message && append input on enter method";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:47:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:43;a:8:{s:3:"sha";s:40:"e4e7eff9eb692f4d571d8cff6583537d1b118206";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"[BefunWrite] Added new example: "Square It"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:35:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:44;a:8:{s:3:"sha";s:40:"b09d24e04e31f1c1f5a40636b648c8127a1012bf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefunGen] Fixed wrong Re-Entry adresses when using a RepeatUntil-Stmt";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:33:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:45;a:8:{s:3:"sha";s:40:"582e9051c76d78ef8f5023183a688aa9bd9990b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunExec] Fixed **massive** lag when turning decay off";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:33:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:46;a:8:{s:3:"sha";s:40:"9f254abfa4e0319183d3d711944f6dde85f1947a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:105:"[BefunGen] Fixed possible unexpected behaviour in Stmt_Switch (and it confused my syntax highlighter ...)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 17:50:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:47;a:8:{s:3:"sha";s:40:"6e2fab6ebed17cd0a60dafc09d99e42351ae2975";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunGen] Optimized Stmt_Out_CharArr for short literals";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:58:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:48;a:8:{s:3:"sha";s:40:"d8fc4c5f852566a326378599996cf34dcf3e32ec";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:120:"[BefunWrite] Fixed calling Interpreter from different working directory -[BefunGen] Added watermark to generated programs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:31:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:49;a:8:{s:3:"sha";s:40:"57745c0f8c5be764c79289189f5012e1294ca7d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:141:"[BefunWrite] Fixes: + - Added Befunge version display";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 17:35:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:194;a:8:{s:3:"sha";s:40:"4948eab3ecafbd84210120ce4f426d985ad8348b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added Timer to BefunExec";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 17:03:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:195;a:8:{s:3:"sha";s:40:"2f01484f993fee0d5e92625a6c4ac9aaa008069e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"[BefunExec & BefunGen] Added Todo's";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 20:57:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:196;a:8:{s:3:"sha";s:40:"4b04866a2d36fa74e57c465516e9e1b0fdbf2ba8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"[ALL] Changed Ouputpath to a common one";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:56:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:197;a:8:{s:3:"sha";s:40:"f7d72422a4dabb7477a417b68923907c091daf8d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"[BefunExec] Added Option to hide "Input char"-message && append input on enter method";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:47:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:198;a:8:{s:3:"sha";s:40:"770c3fda0407daec23618ace13f73e948ed14415";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunExec] Fixed **massive** lag when turning decay off";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:33:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:199;a:8:{s:3:"sha";s:40:"d8a45eaca48ac4f7baeb5a443bda308e74775bf9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:141:"[BefunWrite] Fixes: [BefunWrite] Fixed Typos [BefunWrite] Fixed Tail setting not working -[BefunWrite] Fixed Syntaxhighlighting not tri-state";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:30:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:50;a:8:{s:3:"sha";s:40:"cac900aa231f23e54e0a10dba21afce6701d653a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"Changed Assemblyname of BefunDebug - Fixed old refernces of BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:28:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:51;a:8:{s:3:"sha";s:40:"441052d4e4bb75bb8498ebce9d7ca0266d8f37d9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefunExec] Changed Stepcounter to ulong (should never overflow again)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:27:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:52;a:8:{s:3:"sha";s:40:"87203804ef80b75d6fc5710789588a871313ec5a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Removed unused projects and files";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 01:17:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:53;a:8:{s:3:"sha";s:40:"930640b18d8a3eba8dfe3a1587deeb16d69827b5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Commited missing changrs from yesterday";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-05 09:01:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:54;a:8:{s:3:"sha";s:40:"95e07368001038270376bc055f282ee0ee873dba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"[BefunExec] Added LQ SH_EXTENDED ( who would use that ?? )";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 18:48:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:55;a:8:{s:3:"sha";s:40:"15be09d8529e9ec91f96d70e1259c64b53c65f54";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"[BefunGen] changed NumberRep-internals from int32 to int64 (long)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 18:08:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:56;a:8:{s:3:"sha";s:40:"1b53aff2d9a67d81f4b970a8084244b9a39b2642";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunExec] changed internals from int32 to int64 (long)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 17:18:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:57;a:8:{s:3:"sha";s:40:"3bf28fb7c3d70f00f50e1ed9b5893ae486bae8d2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"[BefunExec] Added reload from file command";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 16:21:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:58;a:8:{s:3:"sha";s:40:"d7185a570af14524b1bcc65c717e4611b377f903";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunExec] automatically use SH_EXTENDED on small progs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 15:33:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:59;a:8:{s:3:"sha";s:40:"9de8755e7d6a683857fe668ce95684ca6fcf61fc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"[BefunExec] Changed namespaces & assembly names to BefunExec (from BefungExec)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 15:20:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:60;a:8:{s:3:"sha";s:40:"ce88746523756282328ef4302c5cda5dee0fe87c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"[BefunExec] Added Todo's";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 06:25:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:61;a:8:{s:3:"sha";s:40:"ac9d2f13d9bdd553f5d88c64551f6ad6c7e5cdd1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"[BefunExec] Improved BefunHighlight performance & added SH update";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 16:07:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:62;a:8:{s:3:"sha";s:40:"94d95a0b1fead591dd6d681e68c0377c41956746";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"[BefunExec] Added BefunHighlight to BefunExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 16:01:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:63;a:8:{s:3:"sha";s:40:"d471c1711c1fe59d44ca71818ce15f08c00a08fe";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Changed License to MIT (BefunWrite + BefunExec)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-30 15:28:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:64;a:8:{s:3:"sha";s:40:"324363a6a00a45190d5961b4401c854c5f67c5a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Removed duplicate files from renaming BefunExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 22:29:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:65;a:8:{s:3:"sha";s:40:"2f8df8f65e9bb0bfb3f0977170dd7155f781734c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Finished basig BefunHighlighter code";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 22:28:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:66;a:8:{s:3:"sha";s:40:"6e65128ac8d69c525d8246a93d17ee2511e07724";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Finished core construct of BefunHighlight";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 18:09:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:67;a:8:{s:3:"sha";s:40:"01df5a50a356e8e7a6dad4d7b53ea470c594c605";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added new Project BefunHighlight";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 16:06:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:68;a:8:{s:3:"sha";s:40:"dec852f031d76b708873ace467d8fe1c7c4505fa";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"Renamed BefungExex to BefunExec fo a matter of consistency";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 16:06:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:69;a:8:{s:3:"sha";s:40:"f4fb7dde1fb6c541d4a833299e1b682f973f805b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"[BefunExec] Added GIF Export Functionality";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 11:47:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:70;a:8:{s:3:"sha";s:40:"cf90757d8eb2084d929f0a035324f34db00cea1c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"[BefunWrite] Bugfix: Fixed crash when opending AboutWindow";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 12:48:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:71;a:8:{s:3:"sha";s:40:"7c1cbd0d10ebc3d53b70f29f3c4c326a870b1f6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:79:"[BefungExec] Bugfix: Fixed Wrong (LQ) Rendering with a lot of identical symbols";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 12:42:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:72;a:8:{s:3:"sha";s:40:"1a0f2c128a4327f33b2f1e1a38cfc6973e48d97a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"[BefunWrite] Added new Example: GOL";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 12:35:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:73;a:8:{s:3:"sha";s:40:"bfd65da0aae7f83af7971861c9e2ad533e9be932";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Set Grammarbug ("4-4") to "WON'T FIX"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 11:49:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:74;a:8:{s:3:"sha";s:40:"363688c8a03a9f6aea046b45be53328bee54afb7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"[BefunDebug] Added field for NumberRep Size";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-11 19:31:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:75;a:8:{s:3:"sha";s:40:"554a70bd1f0238e666cc50c7216a4f1304692142";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"[BefunExec] Fixed Dup Operator on empty stack (now results in [0|0])";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-11 13:52:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:76;a:8:{s:3:"sha";s:40:"02a9db581bbb10d5c46eacd32b7b87f5fad1ddd0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:5:"+TODO";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:06:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:77;a:8:{s:3:"sha";s:40:"3d5381148304e067baeac24d5a6b1f0133efd357";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"[BefunWrite] Added Output :)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 13:08:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:78;a:8:{s:3:"sha";s:40:"b35781cdffa1cfbd62fb16ad8995d1b14b8cec43";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"[BefunWrite] Fixed RunConfigurations (chars not saved correctly)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 11:29:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:79;a:8:{s:3:"sha";s:40:"a1439ac622b23ecec686beaf434ce0dd01e1883d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Updated Examples with new shorthand VarDecl";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 16:16:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:80;a:8:{s:3:"sha";s:40:"bb2b6701607f90ab7418b79304a967ed243f98c3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunGen] Added Shorthand VarDecl to Grammar and Parser";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 16:06:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:81;a:8:{s:3:"sha";s:40:"a72872dd771098251f2ffe16f548b09f6d77439a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Added checks for duplicate Identifier";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 16:05:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:82;a:8:{s:3:"sha";s:40:"59d742568e70f651d1ac3ecd46e158e995517211";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"Small things";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:39:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:83;a:8:{s:3:"sha";s:40:"a54aad8a08a0ac02d2077796b561ea7f203db84e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added new Example: Sieve of Eratosthenes";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:24:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:84;a:8:{s:3:"sha";s:40:"88b571a3b0f1c573d35c6eb35b0f8fed34efc9c1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"[Bugfix] Constants in Valuepointer not inlined";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:24:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:85;a:8:{s:3:"sha";s:40:"7f217fa830829bdf21a06766c9b19c1addb02334";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Added new Def-Constant "DISPLAY_SIZE"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:23:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:86;a:8:{s:3:"sha";s:40:"5222a62658499dc0eee1b80b63bf92e16fa73dd7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added 2 more Unit Tests (Outf, goto)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 13:39:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:87;a:8:{s:3:"sha";s:40:"d483e8ea894a4f96b0ab13f4a213c6ad1d966beb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefunGen] Added Optimization (Flatten and CleanUp StmtList Hierachie)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 13:30:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:88;a:8:{s:3:"sha";s:40:"743ca0823c731e91123a087598f771882d2137e3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Added new (Makro-)Command ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 12:41:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:89;a:8:{s:3:"sha";s:40:"8b130110c6c1415157f1a71abe545976464374d8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added more Examples";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:25:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:90;a:8:{s:3:"sha";s:40:"141994af268e9b9f3f63813f9e1ac1cc1f46f01b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"[BefunWrite] Added "Build All" Cmd";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:25:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:91;a:8:{s:3:"sha";s:40:"c0e21733a6b39eb6f1dcbc0eec8a75cdb0c1b138";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"[BefunWrite] Fixed SaveAs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:00:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:92;a:8:{s:3:"sha";s:40:"46039e2d42621aa268508b90c9232261e0593896";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Bugfixes and PICalc Example";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 21:29:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:93;a:8:{s:3:"sha";s:40:"b8897212d33db58af99fd8545c3a0c999c2ebb10";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added BefunWrite Examples";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 20:22:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:94;a:8:{s:3:"sha";s:40:"3dfeaa3afde9665ad7a89f4065bcdd683721edee";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"FIxed a few minor Bugs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 20:22:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:95;a:8:{s:3:"sha";s:40:"857ce1c8b74ab8e5e6d80635cf590c7fbc0a75a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"Added Explorer Integration (open File from commandline)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 19:42:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:96;a:8:{s:3:"sha";s:40:"b096b295d44dd1f52a929b25c179e8dab0b5ee20";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"[BefungExec & BefunWrite] Added Cursor Follow Mode";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 09:44:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:97;a:8:{s:3:"sha";s:40:"29d79d5a88052c220970b6d8e7b1c51a95fe4de9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"[OPTIMIZE] Optimized multiple MethodCalls in one line ---> use only one exit lane";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 08:35:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:98;a:8:{s:3:"sha";s:40:"43d54118c324eb1a8e0bb7122fa7792c58e0aafa";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added more UnitTests";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 08:21:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:99;a:8:{s:3:"sha";s:40:"4675d5a8673f3becf6bf48bdda6e4bea7e96be43";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"[BUGFIX] Fixed recursive Methodcalls like push(peek());";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 07:57:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:100;a:8:{s:3:"sha";s:40:"96594d36b34222e04b000f3f1e15c98f03a302ef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added fatal //TODO";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 14:00:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:101;a:8:{s:3:"sha";s:40:"933c54b61c39cda4a28e42e9e2c97c9d1fc9db17";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Fixed Reversed Switch Statement with long children";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 14:00:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:102;a:8:{s:3:"sha";s:40:"419c6e701fee92a0853ebeaafb407961497a5f02";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Various Bugfixes && UserExceptions";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 12:41:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:103;a:8:{s:3:"sha";s:40:"641cfd6c0056651d404f53509438f77ac385fbea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Simplified BefunWrite Example";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 12:40:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:104;a:8:{s:3:"sha";s:40:"bd3f74421da2c6875ccdd31368c0c39289333d4f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Fixed AV when zooming out in BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 12:40:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:105;a:8:{s:3:"sha";s:40:"bf4e3745b5186e4cd11a5f202d95b9381f82a75e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added RemoveUnusedMethods Optimization";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 10:45:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:106;a:8:{s:3:"sha";s:40:"b99647d0474a9fb5ddf7b602e4c1f7baef8720af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Added (Optimize Static Expressions)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 09:55:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:107;a:8:{s:3:"sha";s:40:"3376274f4d02acfc57034872bc0006a36897aa10";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added Check for RETURN Statement in Mainmethod";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 08:33:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:108;a:8:{s:3:"sha";s:40:"55c722e21147c78ce12c02f78052bbe75a2d850e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed Output not updating on Reset in BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 08:13:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:109;a:8:{s:3:"sha";s:40:"42d129a8d09f2f1042ab6d7913324a1ad735c65f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added Default_Display_Value to BefunGen and BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 08:08:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:110;a:8:{s:3:"sha";s:40:"810a0d03cacb2849f8bb930e0f53c386aa5bdc5d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Added Icons (BefunExec, BefunGen, BefunDebug, BefunWrite)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 13:12:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:111;a:8:{s:3:"sha";s:40:"9a5f57b7d8d1fc2b69005067a65cf3dce02ddcd0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Renamed BefunGenStudio to BefunDebug";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 13:04:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:112;a:8:{s:3:"sha";s:40:"259b5116050fa2d19fafded3a441237149c8aec3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Menu + About-Dialog to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 12:06:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:113;a:8:{s:3:"sha";s:40:"49bbdbd63eaf660926130381e28c937d7eb73509";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"Fixed no error when declaring a variable with a wrong-typed Literal";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 09:20:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:114;a:8:{s:3:"sha";s:40:"675cd3a06dea85a409090ac8cbdc06dcfadeb704";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added MouseWheel Zooming";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-21 18:29:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:115;a:8:{s:3:"sha";s:40:"99da466b833bb7acbfe85db9439fcf690189aaa8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Fixed (BR->TL) Zooming";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-21 15:46:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:116;a:8:{s:3:"sha";s:40:"56937902317d04de8063641141e354de39dfbc45";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added About Screen to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-21 14:59:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:117;a:8:{s:3:"sha";s:40:"85f65b9f7eca8b4453386a3fe4b525aa3dc3b3c9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Reset DemoProg to previous version";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-20 12:19:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:118;a:8:{s:3:"sha";s:40:"ab9c5f58998a02fd797d94da21a88b7ac677c174";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"Added Input Queque && Fixed KeyEvents when glProgView not focused";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-20 12:16:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:119;a:8:{s:3:"sha";s:40:"0b01bff202b7f60589fd78418050de082497fd6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Fields for In/Output to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-20 11:19:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:120;a:8:{s:3:"sha";s:40:"1d8a3ef675dabd43dd26368077b7ea7600a2e188";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"Fixed New Save not correctly registering sourcecodefile";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-19 16:09:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:121;a:8:{s:3:"sha";s:40:"488b454994b51f7b9724eaf6d216cd33016849b2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Fixed CharSpinner Events not correctly registered";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-19 14:11:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:122;a:8:{s:3:"sha";s:40:"fccef901db8c5a41b4bca03e3e7122081f05b2ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added Run to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 14:14:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:123;a:8:{s:3:"sha";s:40:"203053f85abb5d09b6c10a798519acc166128549";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Improved ToolbarButtonTheme";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 11:27:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:124;a:8:{s:3:"sha";s:40:"fa3c5a34f2a5015b0ea9f6c1349d1831684f00ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Building to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 10:27:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:125;a:8:{s:3:"sha";s:40:"b8979f3f7354b6e46f18eb7ae8e48d0914a0a66e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"Removed FailMessage from TextFungeParser (=> now throws Exceptions)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 10:18:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:126;a:8:{s:3:"sha";s:40:"ed604335a6e0207e5da21a92ff94fa431e3f6faf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Fixed BefunGenTests with new CodeGenOptions Handling";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 10:18:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:127;a:8:{s:3:"sha";s:40:"5fe8b679b382083cd2b4ec180c187f9e8192838b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added StepCounter to BefunExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 09:35:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:128;a:8:{s:3:"sha";s:40:"af8690d94cf6f4b67f137f39156309c4f54b6a2c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added ErrorList to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 20:32:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:129;a:8:{s:3:"sha";s:40:"33b3f098b589906cbbb16bdbe4ab499b92b84fc5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added ProgrammExplorer to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 20:21:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:130;a:8:{s:3:"sha";s:40:"b25ae763775729272d0782142d188146cde5ad58";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added Display of Error Line in BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 13:54:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:131;a:8:{s:3:"sha";s:40:"9e1bb772ad3de49b4b8f8d484ceff5f20d15d2f4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added RunConfiguration Dialog";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 12:21:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:132;a:8:{s:3:"sha";s:40:"4901bc8b8b42e8dadf1b45118201f90b04ef6d40";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added greyable ToolbarButtons";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 11:57:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:133;a:8:{s:3:"sha";s:40:"84d4f89dad290eddefaf080e7008cec24e819998";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Cleaned up GUI & WPF Commands";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 09:17:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:134;a:8:{s:3:"sha";s:40:"1e202b75f6581b9495464b85e586eca0767bedbf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Added Loading/Saving/Creating to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 16:58:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:135;a:8:{s:3:"sha";s:40:"2e3c77e2615a7e30fb22fc1dccaf97b8077b711b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Finished Mockup of BefunWrite (Menu/Dock/Edit ...)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 12:54:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:136;a:8:{s:3:"sha";s:40:"5065818e7222854389e43bfa577ff2c9ab46b618";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:86:"Added new Project: BefunWrite - - Added AvalonEdit Control - - Added AvalonDockControl";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 10:39:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:137;a:8:{s:3:"sha";s:40:"7e3b9fda04cf7d00314b7f3b4ea396dec4efc239";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Made CodeGenOptions to a non-static class";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 09:35:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:138;a:8:{s:3:"sha";s:40:"841f9e05a6157a86ca9af61386b572e0506b3822";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added SudoGen example";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 09:26:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:139;a:8:{s:3:"sha";s:40:"f4c118ed0348cab27f3dc2f478685035bf34b2b6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Maze-Solver to example";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-29 16:37:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:140;a:8:{s:3:"sha";s:40:"8b4f82be1e8583ba279ca51d69543c757eb51376";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added pretty formatted ClassDiagram";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 23:33:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:141;a:8:{s:3:"sha";s:40:"fd1de7d27652d06d0540f0a85c307d7b91148a1d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added CodeGen to (4x)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 22:57:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:142;a:8:{s:3:"sha";s:40:"529057e60c27e7d03001abe1466c61b69efe90ab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 18:36:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:143;a:8:{s:3:"sha";s:40:"b8ac48f4554388ce4961a0715fa481a8a318b182";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:77:"Added Class for Statement_Switch / More Tests / Fixed Bug in GOTO_Lbl Finding";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 12:16:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:144;a:8:{s:3:"sha";s:40:"ca01b1f683385f361d3ecf8d3727532fcf5b1889";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Codegen to Base-4 Random";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 18:50:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:145;a:8:{s:3:"sha";s:40:"50ccab5db8c239b76efa3a59d444b4d5a5649aa9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Implemented Augmented Assignments (x8)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 17:41:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:146;a:8:{s:3:"sha";s:40:"65d7205b0ced7a5b39ad3bcaadf7ecc829be1979";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:157:"Added more LanguageFeatures (for now only to grammar) +[BefunWrite] Fixed Syntaxhighlighting not tri-state";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:30:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:200;a:8:{s:3:"sha";s:40:"dcb6b29695f0f3f066a5cf12a883701e80490eb0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefunExec] Changed Stepcounter to ulong (should never overflow again)";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:27:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:201;a:8:{s:3:"sha";s:40:"54776cf14a56c19dc4c3671f43b0f5397567d544";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"[BefunExec] Added LQ SH_EXTENDED ( who would use that ?? )";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 18:48:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:202;a:8:{s:3:"sha";s:40:"5064fccd6281c6362385674166c0c4abec2d53ec";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunExec] changed internals from int32 to int64 (long)";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 17:18:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:203;a:8:{s:3:"sha";s:40:"618ac1f90e01a33dd64a3c99eef0e738331d18a6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"[BefunExec] Added reload from file command";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 16:21:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:204;a:8:{s:3:"sha";s:40:"5198b06e5ab6fbaf09bf7b21f14acb2ec75a0751";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunExec] automatically use SH_EXTENDED on small progs";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 15:33:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:205;a:8:{s:3:"sha";s:40:"498bd90f911b7090bc3254e33bf8697706987156";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"[BefunExec] Changed namespaces & assembly names to BefunExec (from BefungExec)";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 15:20:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:206;a:8:{s:3:"sha";s:40:"42e794ab422d4b46c6bbfa08a54d033a5792b5ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"[BefunExec] Added Todo's";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 06:25:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:207;a:8:{s:3:"sha";s:40:"b9e5c1f091567aecf4f46ba5164368a605e52565";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"[BefunExec] Improved BefunHighlight performance & added SH update";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 16:07:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:208;a:8:{s:3:"sha";s:40:"a71bb7c18bcc7c280004a6ebeb390be24834bafb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"[BefunExec] Added BefunHighlight to BefunExec";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 16:01:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:209;a:8:{s:3:"sha";s:40:"f2d5152cb825a0d12dd998d46d97117a2da61093";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Changed License to MIT (BefunWrite + BefunExec)";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-30 15:28:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:210;a:8:{s:3:"sha";s:40:"ed7735b7121dd4f3f060a68e9ca696532b8a1712";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"Renamed BefungExex to BefunExec fo a matter of consistency";s:10:"repository";a:13:{s:2:"id";i:28590675;s:4:"name";s:9:"BefunExec";s:9:"full_name";s:19:"Mikescher/BefunExec";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/BefunExec";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/BefunExec/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 16:06:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:211;a:8:{s:3:"sha";s:40:"dfa8cc597f7b5ee2b09f671c7b6471ed660ae80f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Create README.md";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 13:15:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:212;a:8:{s:3:"sha";s:40:"9438333519ae40d1f272011f4eb6dd8ad33e3275";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Updated .gitignore";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:09:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:213;a:8:{s:3:"sha";s:40:"4cfc2463a890faa5d6a22432c0742931660bee06";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:86:"[BefunGen] **Major** code compression by vertically expanding Callframe I/O operations";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-10 17:10:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:214;a:8:{s:3:"sha";s:40:"967e614af2d754ad843a68a4383cb04c62b6fa43";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"[BefunExec & BefunGen] Added Todo's";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 20:57:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:215;a:8:{s:3:"sha";s:40:"88e4c49bfcaa253a9579b312102bb30a640d8d82";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"[ALL] Changed Ouputpath to a common one";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:56:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:216;a:8:{s:3:"sha";s:40:"7a35792b00152364a1b30ef9e6f4aa3ef2c85eb9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefunGen] Fixed wrong Re-Entry adresses when using a RepeatUntil-Stmt";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:33:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:217;a:8:{s:3:"sha";s:40:"6ae998ba6ccffc539a62eba8aaa57b5c5ae95af3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:105:"[BefunGen] Fixed possible unexpected behaviour in Stmt_Switch (and it confused my syntax highlighter ...)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 17:50:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:218;a:8:{s:3:"sha";s:40:"c05305fdd38489d0dc67a9ccce1cfba54b33a76c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunGen] Optimized Stmt_Out_CharArr for short literals";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:58:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:219;a:8:{s:3:"sha";s:40:"defbc9da50c310b20a1b5e71da3834ce59f77780";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:120:"[BefunWrite] Fixed calling Interpreter from different working directory +[BefunGen] Added watermark to generated programs";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:31:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:220;a:8:{s:3:"sha";s:40:"d3b1a0f272364371a23c710f1bb40c2476785d56";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"[BefunExec] Added LQ SH_EXTENDED ( who would use that ?? )";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 18:48:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:221;a:8:{s:3:"sha";s:40:"311c7641bd87da028a3254aeacab25a0a725fa14";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"[BefunGen] changed NumberRep-internals from int32 to int64 (long)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 18:08:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:222;a:8:{s:3:"sha";s:40:"2df45b13efa528bbeb06bf01d66f602a198b27bd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunExec] changed internals from int32 to int64 (long)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 17:18:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:223;a:8:{s:3:"sha";s:40:"4db8cf39271983455f41bb5204996ca404b87186";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"[BefunExec] Added GIF Export Functionality";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 11:47:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:224;a:8:{s:3:"sha";s:40:"5f95c677df907f9ee937d54ebdb6c65eba1bdef5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:5:"+TODO";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:06:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:225;a:8:{s:3:"sha";s:40:"2eaa0b43a3510117d68375936aba0f5ca1267676";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"[BefunWrite] Added Output :)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 13:08:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:226;a:8:{s:3:"sha";s:40:"7cd5135d430e770ac2fa79f1e674a5635f4eba34";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"[BefunWrite] Fixed RunConfigurations (chars not saved correctly)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 11:29:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:227;a:8:{s:3:"sha";s:40:"57843716500b1fed5eec44273905d82ff6413f70";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunGen] Added Shorthand VarDecl to Grammar and Parser";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 16:06:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:228;a:8:{s:3:"sha";s:40:"80635f02f53affbbe86a14ab5781937c0ffd4d55";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Added checks for duplicate Identifier";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 16:05:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:229;a:8:{s:3:"sha";s:40:"09a1187b597a5af9dff2a5b88abc241c123f37cc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"Small things";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:39:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:230;a:8:{s:3:"sha";s:40:"44f0ea9dac11bc8c6d7706329b4e787d3faac6f2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"[Bugfix] Constants in Valuepointer not inlined";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:24:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:231;a:8:{s:3:"sha";s:40:"64a200b8acff74fb19c0ff660fdd4f5d44e868ff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Added new Def-Constant "DISPLAY_SIZE"";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:23:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:232;a:8:{s:3:"sha";s:40:"9eaba8a7288a30ecef95cfcd992e0f5d1caf2e1d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefunGen] Added Optimization (Flatten and CleanUp StmtList Hierachie)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 13:30:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:233;a:8:{s:3:"sha";s:40:"078bb567e909ea3f005910f22b0c4a0b92af18cc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Added new (Makro-)Command ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 12:41:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:234;a:8:{s:3:"sha";s:40:"48655738c9e1cd60b95f3b3c7fbf77452e5634ad";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"[BefunWrite] Fixed SaveAs";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:00:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:235;a:8:{s:3:"sha";s:40:"63e47974fe18dccb203d01df97ceb3d43b6eb43e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Bugfixes and PICalc Example";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 21:29:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:236;a:8:{s:3:"sha";s:40:"8866941d52c3ed81db4db24ef60f05846c7c3268";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"[OPTIMIZE] Optimized multiple MethodCalls in one line +--> use only one exit lane";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 08:35:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:237;a:8:{s:3:"sha";s:40:"9080bf70686c5cca308bde67c150b42f25006661";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"[BUGFIX] Fixed recursive Methodcalls like push(peek());";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 07:57:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:238;a:8:{s:3:"sha";s:40:"892468cd8cfe2984bb299c2385d11cfacbbaba4c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added fatal //TODO";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 14:00:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:239;a:8:{s:3:"sha";s:40:"2e75663709d0671be554fe744750fc9de20ae6bb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Fixed Reversed Switch Statement with long children";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 14:00:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:240;a:8:{s:3:"sha";s:40:"cf01988e1c367f40b09f18cc066f43ce0651b703";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Various Bugfixes && UserExceptions";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 12:41:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:241;a:8:{s:3:"sha";s:40:"9068cede570a005d0a07e3f67d7111e5a56a9691";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added RemoveUnusedMethods Optimization";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 10:45:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:242;a:8:{s:3:"sha";s:40:"51937b35dc37bbeb4d61904a52640fa3207e259c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Added (Optimize Static Expressions)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 09:55:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:243;a:8:{s:3:"sha";s:40:"59ea6a39af975f0d7eaa394d5a00006a881c85e1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added Check for RETURN Statement in Mainmethod";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 08:33:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:244;a:8:{s:3:"sha";s:40:"76875191690fa3d1404d79cdb4870824ec7eb197";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added Default_Display_Value to BefunGen and BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 08:08:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:245;a:8:{s:3:"sha";s:40:"0fa67b03b29a3d0283f5e57a9517490f41a9c6a1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Added Icons (BefunExec, BefunGen, BefunDebug, BefunWrite)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 13:12:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:246;a:8:{s:3:"sha";s:40:"d7a6a4471cb2b727dd129f81633bec56ce7d26d7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Menu + About-Dialog to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 12:06:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:247;a:8:{s:3:"sha";s:40:"2a39e2eb4fe1ef94b9a0d9223f6b3069dc0c9b09";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"Fixed no error when declaring a variable with a wrong-typed Literal";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 09:20:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:248;a:8:{s:3:"sha";s:40:"de8373c69f06a5e6aa9e30affcc9a37286fe500e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"Fixed New Save not correctly registering sourcecodefile";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-19 16:09:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:249;a:8:{s:3:"sha";s:40:"65e70a085c195af228321175d71b0dcf41caf0d2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added Run to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 14:14:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:250;a:8:{s:3:"sha";s:40:"c943453c89257d6821abfc993297a28f9bf0678c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"Removed FailMessage from TextFungeParser (=> now throws Exceptions)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 10:18:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:251;a:8:{s:3:"sha";s:40:"a9ded0a4d5d50ac17d0f09f06354374506b9b281";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added ErrorList to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 20:32:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:252;a:8:{s:3:"sha";s:40:"86bc4365b2842ae1ee713ad01dd63af2610219a2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added ProgrammExplorer to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 20:21:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:253;a:8:{s:3:"sha";s:40:"317e2826b87094e7f90629cd09b4414f38ec003c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added Display of Error Line in BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 13:54:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:254;a:8:{s:3:"sha";s:40:"88a9362bf8b108f7b3b89d82790fc01fb653e9dc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added RunConfiguration Dialog";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 12:21:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:255;a:8:{s:3:"sha";s:40:"fd0223c2441560e4fef39fba9e289bd194e6253e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Cleaned up GUI & WPF Commands";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 09:17:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:256;a:8:{s:3:"sha";s:40:"a2a057cc8bbb091fbf06763d4af7b0116bdc93e1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Added Loading/Saving/Creating to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 16:58:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:257;a:8:{s:3:"sha";s:40:"220ea858abb70d0ee63226e4b0f5f555f1c51926";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Made CodeGenOptions to a non-static class";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 09:35:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:258;a:8:{s:3:"sha";s:40:"ef51c9a4393dce5d1d2617789027abaf4d4ccc8b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added SudoGen example";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 09:26:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:259;a:8:{s:3:"sha";s:40:"7f215363e2d683b653dd5f62eb6adfd583804bd9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Maze-Solver to example";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-29 16:37:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:260;a:8:{s:3:"sha";s:40:"9e1bde60ade49a48f66bcdbd1e82c5d9ec95f979";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added pretty formatted ClassDiagram";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 23:33:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:261;a:8:{s:3:"sha";s:40:"7a05185aa5a8ac8ffdfaed0fdd7575afcd903f71";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added CodeGen to (4x)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 22:57:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:262;a:8:{s:3:"sha";s:40:"6a8d6c8876d707c8bdb86a6930197ee80830409c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 18:36:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:263;a:8:{s:3:"sha";s:40:"b66092d6c4c7fe2a1d9231acc28c6793a9545392";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:77:"Added Class for Statement_Switch / More Tests / Fixed Bug in GOTO_Lbl Finding";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 12:16:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:264;a:8:{s:3:"sha";s:40:"7e3917dc23b0a3e6f91d79639fbb78865a8ea1e0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Codegen to Base-4 Random";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 18:50:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:265;a:8:{s:3:"sha";s:40:"93b518e42e4cd5de51f3419a6bb0679d13468385";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Implemented Augmented Assignments (x8)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 17:41:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:266;a:8:{s:3:"sha";s:40:"915ca036d8967c0845f5786fb11a5f926f6181af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:157:"Added more LanguageFeatures (for now only to grammar) - switch - Post/Prefix Expressions - Base-4 Random - - Augmented Assignments (+= , -= , %= , ...)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 16:58:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:147;a:8:{s:3:"sha";s:40:"5c5bafe3ff58c85ca9802f112c346f13891a0322";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"Performance ... BAAM --> Hashing Tags in Codepiece -> >> 7x Codegen speed <<";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 11:40:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:148;a:8:{s:3:"sha";s:40:"a46aa64816af785a530471f145139f616e962172";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Finalized BefungExec - - Reverted Demoprog - - Fixed Menu->Run";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 19:48:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:149;a:8:{s:3:"sha";s:40:"fcf5f650bc5fbc12b20948f5b070559f10ccbcd4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:">>Massive<< Performance Boost in BefungExec ( 8FPS -> 87FPS )";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 17:33:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:150;a:8:{s:3:"sha";s:40:"021f1af93507651c8d402859064ff2f0500dd3f5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Fixed Pause-Unpause AV";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 15:50:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:151;a:8:{s:3:"sha";s:40:"ec4aa4db696fe80a0f0e2a8d7fb003c21e1dd842";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"Added a load of features to BefungExec (Control via WinForms Controls)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 15:31:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:152;a:8:{s:3:"sha";s:40:"35628fee8f78c582949d34efc85633f74a908098";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Ported BefungExec to a GLControl-based WinForms App";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 12:23:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:153;a:8:{s:3:"sha";s:40:"90779a5ffd0f5750a03068c9df914a2b5d0aef9b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Reverted a few temporary settings";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 13:25:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:154;a:8:{s:3:"sha";s:40:"deda399ee99cdb66b71df2105f446e139effe8ba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"ლ,ᔑ•ﺪ͟͠•ᔐ.ლ IT'S HAPENNING - !! MAZE_GEN !!";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 13:12:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:155;a:8:{s:3:"sha";s:40:"f4c52c254a08aeab4bdb8a6a4bdbc18f89596aa3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:116:"Multiple small things: + - Augmented Assignments (+= , -= , %= , ...)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 16:58:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:267;a:8:{s:3:"sha";s:40:"19d1fe6a9b4e00ab0861a2231f1546b0022fb5ab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"Performance ... BAAM +-> Hashing Tags in Codepiece -> >> 7x Codegen speed <<";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 11:40:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:268;a:8:{s:3:"sha";s:40:"7c0a5dbe5d5dd23e26ce6597ec8187e0ea06f299";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"ლ,ᔑ•ﺪ͟͠•ᔐ.ლ IT'S HAPENNING - !! MAZE_GEN !!";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 13:12:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:269;a:8:{s:3:"sha";s:40:"9f639127225c0d04640021da029432c71c0ad7ca";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:116:"Multiple small things: Fixed DisplaySize=0 Using Optimized CharLiteralOut-Code -Added Tests for For-Loop (and others)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 10:51:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:156;a:8:{s:3:"sha";s:40:"b1ae1f83ff41dc85ac36b58ba165a3c084d5dcca";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 10:29:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:157;a:8:{s:3:"sha";s:40:"105df3dfda9f6a559625e305ee0d68494c473f3a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added Codegen to ModuloRangeLimiter()";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 09:10:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:158;a:8:{s:3:"sha";s:40:"4585bd20714543516930737fcd061467378c8fd8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added CodeGen for Display (to the Prog Header)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 17:07:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:159;a:8:{s:3:"sha";s:40:"4fc23e09bedc53ac69bb129241d0b294210ab550";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Cleaned up Codegen for - Added possibility for Display";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 15:05:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:160;a:8:{s:3:"sha";s:40:"a02d81c3324900fd8f4e04b3d166a41f80deb90c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Constants";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 12:44:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:161;a:8:{s:3:"sha";s:40:"2171d02b320b87981ba2b676a90dcd5c99915f8f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Global Variables";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 12:04:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:162;a:8:{s:3:"sha";s:40:"59f23dfc2c5574a6c5c9cfcd396f9610892b9ae1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Added For-Loop";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 11:33:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:163;a:8:{s:3:"sha";s:40:"c1ab259d11b1fd9379a0e9ca3c58be402cbf52d7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:79:"Implemented new Grammar Features into GrammarTableMap -//TODO Implement Features";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 18:46:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:164;a:8:{s:3:"sha";s:40:"d16a1dcd111ea6747e1af66a7641bd6d115e91b7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"Updated Plain-Grammar-File (Display, Underscore_Identifier, For-Loop)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 14:18:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:165;a:8:{s:3:"sha";s:40:"931b9d35a20038c5ad35db1dbdde3bd2e3a2895c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added CodeGen to and ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 10:39:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:166;a:8:{s:3:"sha";s:40:"fffa5a50d91b31e9b05365244d13a4cbb6cb878e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added ArrayHandling in Return Values";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 10:18:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:167;a:8:{s:3:"sha";s:40:"d455d29d933cfe94a586e81458a819de932c1e8e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Bugfixes - here and there and everywhere";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 09:25:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:168;a:8:{s:3:"sha";s:40:"4b5f21a60fc5eea51c51e8f90251195bb3f4b4ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added and organized UnitTests";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 08:11:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:169;a:8:{s:3:"sha";s:40:"daf1636ed3514bce0c0ec6ec0b5288dde3705880";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Fixed many Bugs related to MethodCalls ( like ... many )";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-18 14:52:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:170;a:8:{s:3:"sha";s:40:"7d9388935ba4bcf93caf9e09f92b7ee768698376";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed MethodCall - CornerCases in ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-18 13:40:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:171;a:8:{s:3:"sha";s:40:"4378c5775cc948488f9c989d8c4049ff838d011a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:103:"ᕙ༼ຈل͜ຈ༽ᕗ Method Calls are working - The Lanes are under heavy load ᕙ༼ຈل͜ຈ༽ᕗ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-18 12:33:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:172;a:8:{s:3:"sha";s:40:"8c7c18541d073f6c59806bb11e00aab2c0142261";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"-.- Missed a "few" files in the last commit";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 20:24:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:173;a:8:{s:3:"sha";s:40:"dedf337936e2ef6b657b35e9606826f9cb99f422";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:303:"Many things: +Added Tests for For-Loop (and others)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 10:51:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:270;a:8:{s:3:"sha";s:40:"d140d2fb333f2bdd2b67c7b05f56a75a1951b9db";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 10:29:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:271;a:8:{s:3:"sha";s:40:"ad159acca17b57674eafb91b2b0f0278a1396146";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added Codegen to ModuloRangeLimiter()";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 09:10:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:272;a:8:{s:3:"sha";s:40:"7e733cf639dbcd4731aa33216d5341ce27b14e82";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added CodeGen for Display (to the Prog Header)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 17:07:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:273;a:8:{s:3:"sha";s:40:"195943686cb009cf1073ec1285e23f74e4a76319";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Cleaned up Codegen for - Added possibility for Display";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 15:05:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:274;a:8:{s:3:"sha";s:40:"d39c587e6b5b0b8c56014472e14d94f0147f38ac";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Constants";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 12:44:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:275;a:8:{s:3:"sha";s:40:"9f4462291a264dbdb1fb4acfcfd7aa94745baadb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Global Variables";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 12:04:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:276;a:8:{s:3:"sha";s:40:"672bc60c45ce3b9d7201f1136eb7d81e9d50020e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Added For-Loop";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 11:33:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:277;a:8:{s:3:"sha";s:40:"887427fc99e4298a463edc0f0c5ce4d41d36350d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:79:"Implemented new Grammar Features into GrammarTableMap +//TODO Implement Features";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 18:46:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:278;a:8:{s:3:"sha";s:40:"fdaeffa66daca33e4a0dc8c4375ddcc306f43900";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"Updated Plain-Grammar-File (Display, Underscore_Identifier, For-Loop)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 14:18:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:279;a:8:{s:3:"sha";s:40:"c6e7d1bfc4db7d5421c132e4aa820e1e6f350721";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added CodeGen to and ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 10:39:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:280;a:8:{s:3:"sha";s:40:"46a673d17d0e9d0c3570ca0b0eeb51ec31b0c8f7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added ArrayHandling in Return Values";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 10:18:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:281;a:8:{s:3:"sha";s:40:"1df682df98e84e414322e181533d7f731be6f3e9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Bugfixes - here and there and everywhere";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 09:25:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:282;a:8:{s:3:"sha";s:40:"96713353517105e308ac9f3b413c67bbbf3b173c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added and organized UnitTests";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 08:11:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:283;a:8:{s:3:"sha";s:40:"91b9dedf1d84a0f22088d3f0061d8a531bfddad0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Fixed many Bugs related to MethodCalls ( like ... many )";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-18 14:52:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:284;a:8:{s:3:"sha";s:40:"60b355d11a0363bf531fede13c97dfda9f03c3d5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed MethodCall - CornerCases in ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-18 13:40:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:285;a:8:{s:3:"sha";s:40:"0454d8a98b643d8cd93b289c5d55231b186f231e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:103:"ᕙ༼ຈل͜ຈ༽ᕗ Method Calls are working - The Lanes are under heavy load ᕙ༼ຈل͜ຈ༽ᕗ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-18 12:33:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:286;a:8:{s:3:"sha";s:40:"3a6f031e2989b7296c3b884cce9736a6f7889a00";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"-.- Missed a "few" files in the last commit";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 20:24:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:287;a:8:{s:3:"sha";s:40:"315cc8931bf1c00849287c97ba39a9b9d89c0b8e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:303:"Many things: Added better Codegen for Default Array Initializer Added DefaultValues for TempField nad TempResultField Added Codegen Button to BGStudio Added ArrayTooSmall Test Fixed visual Things on BGStudio Form Fixed Initial LeftLane Entry Point (was one off) -Updated exapmle_00 (Commented goto's out)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 20:23:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:174;a:8:{s:3:"sha";s:40:"19ceceeb96d2fffc5cf7c4b301eff1ed89c92ddc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:92:"Removed unused Path from Body -> (and Added TempField for Results)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 15:13:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:175;a:8:{s:3:"sha";s:40:"80442895654a6fcd5e767c7dab604f80d7081738";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added Space for Temp-Buffering of Result-Values";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 14:35:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:176;a:8:{s:3:"sha";s:40:"15c116c7924d1da9d96fd5e6c040d064e384baaf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added CodeGen for Lanes to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 13:32:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:177;a:8:{s:3:"sha";s:40:"cef8b3ad379ec013c53f85b3fe5373e0aad8d559";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Cleaned up Exceptions --> One File To Rule Them All";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 09:57:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:178;a:8:{s:3:"sha";s:40:"b63265e8e8435458a4c0496d195ab063467d540c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"Added Test if all Paths lead to a or ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 08:31:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:179;a:8:{s:3:"sha";s:40:"b2616d0bbcacd8ef41ea2f7f7f843dd1e9241a29";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:136:"Force CodeTags & MC-Tags: +Updated exapmle_00 (Commented goto's out)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 20:23:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:288;a:8:{s:3:"sha";s:40:"4dbbac2744433d32e05e6970d89af4de3206705e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:92:"Removed unused Path from Body -> (and Added TempField for Results)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 15:13:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:289;a:8:{s:3:"sha";s:40:"75942466b55b3c30b190e7061d05dd297a36dd6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added Space for Temp-Buffering of Result-Values";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 14:35:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:290;a:8:{s:3:"sha";s:40:"81cbc31c1a1911eaa1fddb03600f8592dbdcf9f3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added CodeGen for Lanes to ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 13:32:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:291;a:8:{s:3:"sha";s:40:"daec4d6af44d489686fab18631cf5df2f7b6f1cf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Cleaned up Exceptions --> One File To Rule Them All";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 09:57:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:292;a:8:{s:3:"sha";s:40:"3c70cba55bd6ec59e5d9ee5e7ef08e67dc12b6c8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"Added Test if all Paths lead to a or ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 08:31:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:293;a:8:{s:3:"sha";s:40:"436899586d42afb4a95a15fd429a623c8ab521c5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:136:"Force CodeTags & MC-Tags: Forces BefungeCommandTags to be of Type CodeTag -Added Horizontal MC-Tag Extension to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-16 17:12:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:180;a:8:{s:3:"sha";s:40:"b41a9c2ed96f279ac1371908eee86d6cb84a50b3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Test for NumberCodeGeneration";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 21:53:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:181;a:8:{s:3:"sha";s:40:"2a7d02782446cbb1a7cd5ff21d7b50e43d5be666";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Automatic Testing to BefunGenTest";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 21:17:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:182;a:8:{s:3:"sha";s:40:"b76111a24ce184913c2438d12d659db2ab8deb3f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Fixed Bug in ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 21:16:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:183;a:8:{s:3:"sha";s:40:"add26873cd1e8ba94eebe59bb67884648d3280c8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"Drastically improved efficiency of NumberCodeFactory_Stringify";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 18:13:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:184;a:8:{s:3:"sha";s:40:"b76aa3526c6fe41eabbe7068ecced9157b7389eb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added missing files to index";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 14:32:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:185;a:8:{s:3:"sha";s:40:"162c011cf649d89048ee247019386cd4d548cc11";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:148:"Redone NumberCodes: +Added Horizontal MC-Tag Extension to ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-16 17:12:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:294;a:8:{s:3:"sha";s:40:"4cd9410e5f0da6b6ca87751ad73a331a69624b45";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Test for NumberCodeGeneration";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 21:53:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:295;a:8:{s:3:"sha";s:40:"157080d45efd0b70e77bf2bd5f85a842580b165d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Automatic Testing to BefunGenTest";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 21:17:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:296;a:8:{s:3:"sha";s:40:"6bd710a5940e3e3288791e3bc3d3b8206b768e9d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Fixed Bug in ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 21:16:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:297;a:8:{s:3:"sha";s:40:"22ca325ce8e56139479ddf62e261b9382cef4196";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"Drastically improved efficiency of NumberCodeFactory_Stringify";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 18:13:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:298;a:8:{s:3:"sha";s:40:"394164eb93800e3fa202ffaddc5f49c224a0dd7d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added missing files to index";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 14:32:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:299;a:8:{s:3:"sha";s:40:"2294a8be8ef5f2982888e3a5f61411983df6a572";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:148:"Redone NumberCodes: Added NumberCodeFactory_Boolean Added NumberCodeFactory_Stringify Fixed NumberCodeFactory_Stringmode -Redone NumberCode Benchmark";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 14:26:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:186;a:8:{s:3:"sha";s:40:"a4df9ed130beb0615fdf10e0ae9f49a5e0a2bef5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:134:"Started Code for MethodCalls : +Redone NumberCode Benchmark";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 14:26:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:300;a:8:{s:3:"sha";s:40:"77d41f41fa781e6a6d943f62b1fe85cf441a34d8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:134:"Started Code for MethodCalls : Added unique CodePointAddress and MethodAdress -Added Code for ENtry Exit Poits in StatementListElements";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 20:41:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:187;a:8:{s:3:"sha";s:40:"b78c09f304c3fd34f2626c39eac10307a3826de9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Started tagging & Added Tags to CodePiece.toString()";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 15:06:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:188;a:8:{s:3:"sha";s:40:"e6c6f7136008e6f2d35a3c5f5829235de7db7a9d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"Added Codegen to (for now only for testing - nothing real)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 14:23:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:189;a:8:{s:3:"sha";s:40:"1305113e565bfef020ea60c1640d1b07b43e7c16";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added more planning comments";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 12:36:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:190;a:8:{s:3:"sha";s:40:"a729dbc86ebdc3ff7056d0aabc35bc15fe17af1c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Cleaned up UnitTestProject";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 11:39:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:191;a:8:{s:3:"sha";s:40:"aeb2366a311e4ccd7a6b4a98db0855a47483d677";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Added Codegen to for Int_Array and Char_Array";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 11:31:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:192;a:8:{s:3:"sha";s:40:"6527dd3a61799d153a8b8f1f897bb96e60755a24";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"[BefungExec] Added ASCII Display";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 21:53:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:193;a:8:{s:3:"sha";s:40:"c97f7de628bbaf3604e8ca48a19a218f7267aaed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Finished for Arrays";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 21:49:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:194;a:8:{s:3:"sha";s:40:"a099dd857e43feadff31e3ac5d4f3aee844f9b80";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"[BefungExec] Recognize Fileparameter from Windows Explorer";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 18:12:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:195;a:8:{s:3:"sha";s:40:"a223d9264f3bb86fcf669780195dea13b4b06242";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:140:"Added special Array Treatment: +Added Code for ENtry Exit Poits in StatementListElements";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 20:41:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:301;a:8:{s:3:"sha";s:40:"35915b0927e217a05770c71839e27c15846f62e3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Started tagging & Added Tags to CodePiece.toString()";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 15:06:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:302;a:8:{s:3:"sha";s:40:"6c242af4ac0d312b5d4014d0da7577c608056544";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"Added Codegen to (for now only for testing - nothing real)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 14:23:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:303;a:8:{s:3:"sha";s:40:"92b950bb0fdf7620f0a9f122d1f0b9d4ca2a0850";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added more planning comments";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 12:36:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:304;a:8:{s:3:"sha";s:40:"68e5b09a36abe17ffe9e5b7f2750ff90badbbf76";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Added Codegen to for Int_Array and Char_Array";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 11:31:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:305;a:8:{s:3:"sha";s:40:"88b52bf5d9e9ad312253076a35e9315ca559af1a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"[BefungExec] Added ASCII Display";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 21:53:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:306;a:8:{s:3:"sha";s:40:"73d44ac154b8a04c4b3be3a1cb29980f399b6e0e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Finished for Arrays";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 21:49:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:307;a:8:{s:3:"sha";s:40:"29aef7fdc65544459330f01f75f6ad333e959de6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:140:"Added special Array Treatment: GenerateCode for with Arrays -GenerateCode for with Arrays (unfinished)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 14:41:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:196;a:8:{s:3:"sha";s:40:"249fdbb1e3d2d77c6635bebcaeab9adf55f875a7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"Fixed UTF-8";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 17:01:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:197;a:8:{s:3:"sha";s:40:"cbd030e7ad124c5d418e5dc5bece3e6c426bfe71";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"Using StatementList where possible -Adding (debug) union-BType";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 16:44:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:198;a:8:{s:3:"sha";s:40:"699c295fdb48dc6a15f8dd6602acc4fb06b95243";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Added MethodCallExtraction to more Constructs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 14:23:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:199;a:8:{s:3:"sha";s:40:"280e84fd6712a277af6808a39678defd7afcd2f2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Simple MethodCallExtraction is Working";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 13:58:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:200;a:8:{s:3:"sha";s:40:"e6bf42f218ec9307fa5304aeddd85dca7265ad87";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"[BefungExec] Fixed AV on char/int input";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-04 11:48:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:201;a:8:{s:3:"sha";s:40:"92b21ff83481d8d4e36c7bdf90b18348abd97133";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added CodeGen for ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 17:33:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:202;a:8:{s:3:"sha";s:40:"5e78255e2e36abb9889400ae2f4c393c63b21e73";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Drastically simplifier ExtendedBoolCast";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 16:54:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:203;a:8:{s:3:"sha";s:40:"51a2b9ac95a84e5b80c539fa09340d17bd2359da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Fixed StatementList with empty statements";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 16:14:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:204;a:8:{s:3:"sha";s:40:"6907e0b44172a86b143a04d6bd42005828c6de0a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"Redid Codegen for (now more efficient - better maintenance)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 15:55:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:205;a:8:{s:3:"sha";s:40:"56a9fa5fde961a4f016d934a5b59bf3999c98e6c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Option to ExtendedBoolCasting";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 13:44:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:206;a:8:{s:3:"sha";s:40:"5e70895610e1783889a7dc92f91836f6095a46bb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Added NumberRep.Best (Always choose best Representation)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 13:15:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:207;a:8:{s:3:"sha";s:40:"ae03e8fcaa8af3ce8f102fafa81197b9448916b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"[BefungExec] Added better SyntaxHighlighting (Black-Font when breakpoint/cursor)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 11:07:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:208;a:8:{s:3:"sha";s:40:"2a3c173704daf944f603adf039d916ae0ebc2a60";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefungExec] Fixed Selection and Breakpoints not offsetted when zoomed";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 10:45:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:209;a:8:{s:3:"sha";s:40:"75854cd2bcc8972ac37040474b08072eaf17c6bf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:97:"Added ELSIF Syntax to grammar (and while,repeat etc Now wnat a StmtList instead of a single Stmt)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 23:32:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:210;a:8:{s:3:"sha";s:40:"e2420040967659002f7524d56b36fe7292714585";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Control Character (\r \n etc etc)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 20:54:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:211;a:8:{s:3:"sha";s:40:"2efd88cd706c47e4ea4b99b58fbe72d3195364df";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Added CodeGenAdded CodeGen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 20:00:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:212;a:8:{s:3:"sha";s:40:"cfa548784e960ccf211558d993d2fb204e092ea1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Clear all Breakpoints command";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 15:13:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:213;a:8:{s:3:"sha";s:40:"70fc86c6a8dc56e7d0f1a442fa425b068bdda342";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added CodeGen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 15:13:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:214;a:8:{s:3:"sha";s:40:"e0d852ace9cbc339a2ed234dee9f9094709d5e56";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Fixed ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 15:13:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:215;a:8:{s:3:"sha";s:40:"05daf095644c3d03c30039b0860901ed236eec6c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:119:"Overhaul BefungExec +GenerateCode for with Arrays (unfinished)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 14:41:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:308;a:8:{s:3:"sha";s:40:"8f1a563110a4f569b9d13b5804d7be875ca78067";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"Fixed UTF-8";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 17:01:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:309;a:8:{s:3:"sha";s:40:"c1e180090beb5101c706fe6a2af6b5d842a13e1c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"Using StatementList where possible +Adding (debug) union-BType";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 16:44:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:310;a:8:{s:3:"sha";s:40:"0e1e9e87050f19e054278646a18ca30af1905ba0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Added MethodCallExtraction to more Constructs";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 14:23:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:311;a:8:{s:3:"sha";s:40:"0b12642f984f59f90246c85b11b66dcaf11f94a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Simple MethodCallExtraction is Working";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 13:58:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:312;a:8:{s:3:"sha";s:40:"9916121015fc40f082ba98f72ead243117295314";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added CodeGen for ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 17:33:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:313;a:8:{s:3:"sha";s:40:"c54da369dd6608d6046da9326fd3c7b4587184b0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Drastically simplifier ExtendedBoolCast";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 16:54:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:314;a:8:{s:3:"sha";s:40:"67231ecdcdb44414f8e2b8c200b07aaa178a1359";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Fixed StatementList with empty statements";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 16:14:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:315;a:8:{s:3:"sha";s:40:"805f184dab78f420a296492dec293de0ed546bb5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"Redid Codegen for (now more efficient - better maintenance)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 15:55:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:316;a:8:{s:3:"sha";s:40:"d3e5ac8e23ee2c457a4b85f69e72e3ffb83fe1bd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Option to ExtendedBoolCasting";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 13:44:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:317;a:8:{s:3:"sha";s:40:"194037f4c3bec6eb500a5e7fba0ef1d2e661ccd3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Added NumberRep.Best (Always choose best Representation)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 13:15:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:318;a:8:{s:3:"sha";s:40:"243275bc0b05057bb7ccc15f669fbfd446f6e77e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefungExec] Fixed Selection and Breakpoints not offsetted when zoomed";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 10:45:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:319;a:8:{s:3:"sha";s:40:"7de6d89bbbd1452b2f492ffbce5cee04ce47f71e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:97:"Added ELSIF Syntax to grammar (and while,repeat etc Now wnat a StmtList instead of a single Stmt)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 23:32:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:320;a:8:{s:3:"sha";s:40:"73beec8f88be842384d0c08fca7307ac46ee92e9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Control Character (\r \n etc etc)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 20:54:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:321;a:8:{s:3:"sha";s:40:"538a9b3b3d0968894e31fbc2e366093094e05360";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Added CodeGenAdded CodeGen to ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 20:00:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:322;a:8:{s:3:"sha";s:40:"54fab0d7f30285cf3ecdb4f2fa32961d4ae9b61b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added CodeGen to ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 15:13:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:323;a:8:{s:3:"sha";s:40:"9240d996001087b234f5de5f43133ce5859fbd35";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Fixed ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 15:13:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:324;a:8:{s:3:"sha";s:40:"a486f7083264dc1bfc3f2a60c3964b5f9f59aba9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:119:"Overhaul BefungExec - More / better Ouput - More CMD Params - Debugmode - NOP - Skipping - Bug Fixing - - Resetting";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-01 18:17:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:216;a:8:{s:3:"sha";s:40:"e46f1edad47b53c8063ce04af3a932ff02d0ba4d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Updated Raster";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-01 15:14:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:217;a:8:{s:3:"sha";s:40:"c638c71d46ffb10a20f282c240b729a1d6c64de7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-01 15:12:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:218;a:8:{s:3:"sha";s:40:"639ba5ac27a6d7aea696dd27eaf6732ecdd58cd3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"Updated BefungExec (Hertz-Display, Syntax-Highlighting, Parameter ...)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-01 12:38:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:219;a:8:{s:3:"sha";s:40:"f71c9fe9c6ec78f9507166ee62b8b7620ed103eb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:91:"Updated BefungExec Raster + - Resetting";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-01 18:17:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:325;a:8:{s:3:"sha";s:40:"d9835f68dcfe957a4e06ce59e7c5f2559336cc7f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-01 15:12:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:326;a:8:{s:3:"sha";s:40:"112d2a4fb387aa677a87bc02e0a43fd988d8e83d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:91:"Updated BefungExec Raster Fixed Compare-Expressions -Added Codegen ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-28 20:22:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:220;a:8:{s:3:"sha";s:40:"a9bac077de67412dc2c1ba7cd03c59789c664bf6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"Codegen for and tested and working";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 20:43:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:221;a:8:{s:3:"sha";s:40:"0232dd20984b41d716751aa2a2e8699c8723ca38";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Fixes and Changes ... here and there";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 14:13:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:222;a:8:{s:3:"sha";s:40:"619dfb12e4094388a2cbfcdc43c5555cba42f0bc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"Improved Array Assignment Performance, Fixed Inc/Dec leaving stack non-empty";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 12:58:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:223;a:8:{s:3:"sha";s:40:"fb7811f2cc49a9997d97ab201aa759b3ba417dd7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Added Codegen to and ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 12:14:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:224;a:8:{s:3:"sha";s:40:"d9d268c4a11b71db05ca77f403a85a6c0f34be04";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 12:02:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:225;a:8:{s:3:"sha";s:40:"882c4ff464c13c41dc33446c00a35d668c66f708";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:83:"Added Codegen to and ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 10:59:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:226;a:8:{s:3:"sha";s:40:"8c49ffd80da9f01b8d51455169d5ea159666182b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 10:46:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:227;a:8:{s:3:"sha";s:40:"e9898ba41d5a01ba0297e96ff8d01d1e57d41cb2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"Added Codegen to and ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 09:26:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:228;a:8:{s:3:"sha";s:40:"0f303d99af439b74fee654b2b47726ccb356241e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 09:17:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:229;a:8:{s:3:"sha";s:40:"86169db8e40584e3e6169636655e441072b197b5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added reverse Codegen to all Expressions";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 09:02:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:230;a:8:{s:3:"sha";s:40:"9b6d903a08df0e8998afa3f9e7481597b6d1971b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 07:41:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:231;a:8:{s:3:"sha";s:40:"9c4adf93dc82ddf6ad93f58b3eee3ee3d218df47";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Changed getting of VarDeclPos to Field of VarDeclaration";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-26 17:20:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:232;a:8:{s:3:"sha";s:40:"36464b4b5302f2c9a46f368fa58b23120ff9d2b0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Updated ToDos and added "future plans"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-26 14:37:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:233;a:8:{s:3:"sha";s:40:"053c2982a4b014f92f2babb3471eaddc565a96a3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:148:"Finished CodeGen vor VarDeclaration +Added Codegen ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-28 20:22:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:327;a:8:{s:3:"sha";s:40:"c5fc7a60085f3586d3df5318d1af060dd55cea09";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"Codegen for and tested and working";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 20:43:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:328;a:8:{s:3:"sha";s:40:"f49db0316359ee52e5a62054903497dd4d6d8dbc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Fixes and Changes ... here and there";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 14:13:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:329;a:8:{s:3:"sha";s:40:"f130a4464ecd9bfab008cade235e48fb096fdeb5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"Improved Array Assignment Performance, Fixed Inc/Dec leaving stack non-empty";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 12:58:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:330;a:8:{s:3:"sha";s:40:"cbe412470988abaad22fedd94198cd31aedb65c3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Added Codegen to and ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 12:14:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:331;a:8:{s:3:"sha";s:40:"c848ddfe65eebecc8277b2ca4d657d883e630409";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 12:02:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:332;a:8:{s:3:"sha";s:40:"32c82c99b71177dd924d0b6d19783f1ba68e636a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:83:"Added Codegen to and ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 10:59:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:333;a:8:{s:3:"sha";s:40:"67cbfb32880b61cda28df1a964de27e4e58dd123";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 10:46:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:334;a:8:{s:3:"sha";s:40:"5aac664224367a3a38479cfdeb5adaccae7ab4ad";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"Added Codegen to and ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 09:26:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:335;a:8:{s:3:"sha";s:40:"2b779b8d6f46e24220373b139cc792139c9de6bf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 09:17:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:336;a:8:{s:3:"sha";s:40:"e82a764b1a9f2f054de86db599725c7681fecd69";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added reverse Codegen to all Expressions";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 09:02:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:337;a:8:{s:3:"sha";s:40:"e51270bcfb2e2e5c2cfc2564c2731e9841ce2bf3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 07:41:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:338;a:8:{s:3:"sha";s:40:"4645745d1f7a06b2777ab9bdb085fe89a5a8d594";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Changed getting of VarDeclPos to Field of VarDeclaration";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-26 17:20:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:339;a:8:{s:3:"sha";s:40:"7f32cef9c3e6e6519c6d2f34fc337a4572182353";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Updated ToDos and added "future plans"";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-26 14:37:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:340;a:8:{s:3:"sha";s:40:"133b504218205c175486bc04cd33195b3e084ce7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:148:"Finished CodeGen vor VarDeclaration Added negative Dec-Literals to Grammar Added Vertical Compression -Fixed numerous Bugs with Reverse PC-Generation";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-25 19:53:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:234;a:8:{s:3:"sha";s:40:"650935a0fd1f84d4c782d888bdb209837c970233";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Added Codegen for ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-25 13:48:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:235;a:8:{s:3:"sha";s:40:"a2239274fb3e08227dffbcb96827e4373d4dcc2a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Codegen for ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-25 10:26:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:236;a:8:{s:3:"sha";s:40:"39cf3f82a6990c202ec37780bee3eb1c21c29973";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added Optimization: ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 14:43:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:237;a:8:{s:3:"sha";s:40:"8f982de0d6842e75de34b8223a7d8f3fe96bc6c4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added distinction between empty and unused commands";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 13:48:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:238;a:8:{s:3:"sha";s:40:"91c3b59c42e62f95dcac5991518931fbc8b1c555";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Codepiece-Tagging to BefunGen";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 10:04:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:239;a:8:{s:3:"sha";s:40:"fbd76816f04994386a7c56b94786f275e225bc31";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Fixed Decay && Added Zoom-Param";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 09:00:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:240;a:8:{s:3:"sha";s:40:"88dd360b925aa960547a0bcc999172a70bdef4de";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added Execution of Generated prog to BefunGenStudio";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-23 17:14:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:241;a:8:{s:3:"sha";s:40:"b058c7257d4ff4dcee78c6d422a4086d76c54eb6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Added Zooming and Breakpoints to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-23 16:42:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:242;a:8:{s:3:"sha";s:40:"4b34b52e800e55af60ba6ff17fc54db3ee042d2d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Commit Added Demo to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-23 00:07:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:243;a:8:{s:3:"sha";s:40:"b8b70cfe76e9a6759cae3db29d9c0823c351bae5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added integer input to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-22 15:21:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:244;a:8:{s:3:"sha";s:40:"3498a7d04dfec2775eb8cc12fdb856aea4d08184";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added Stack Display to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-22 14:12:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:245;a:8:{s:3:"sha";s:40:"f69946206758c834ca4e69e5243bf26d1b19c67d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added Fast (and easy) Befunge Interpreter (OGL)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-21 23:22:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:246;a:8:{s:3:"sha";s:40:"c8a908f78daaf426c2b97ed87d9202203b8445f5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"More Todos ... this could be a jClipCorn-Commit ^^";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-20 18:29:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:247;a:8:{s:3:"sha";s:40:"9dff0d5d83c6b0c6224fd9892e4514288b54f60a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"More Debugging, Updated Doku, Method rumpfs, Todos, and other useless things";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-20 17:39:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:248;a:8:{s:3:"sha";s:40:"35195a1a515810d568f99a0bfa0d452038f4464d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:163:"Added codegen to: (6x) +Fixed numerous Bugs with Reverse PC-Generation";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-25 19:53:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:341;a:8:{s:3:"sha";s:40:"90c24c811dd5092938241a4beda9b428011d83f1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Added Codegen for ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-25 13:48:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:342;a:8:{s:3:"sha";s:40:"a57054435786c4aa46dd618abc2d3d7d0402aa1a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Codegen for ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-25 10:26:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:343;a:8:{s:3:"sha";s:40:"e1ed68800a5c56067c3d81ab01a8402b5918b602";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added Optimization: ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 14:43:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:344;a:8:{s:3:"sha";s:40:"08ebf67bb2e47958e8a57509647c9d85510f2bce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added distinction between empty and unused commands";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 13:48:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:345;a:8:{s:3:"sha";s:40:"4ba04bf2500d8d283aaeb099c8907fbc33ccec84";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Codepiece-Tagging to BefunGen";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 10:04:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:346;a:8:{s:3:"sha";s:40:"152bfda3ca16a773e496c24e80615767926e00ba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added Execution of Generated prog to BefunGenStudio";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-23 17:14:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:347;a:8:{s:3:"sha";s:40:"37a39b8ad85dce424504f0263b1895774775eaf1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"More Todos ... this could be a jClipCorn-Commit ^^";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-20 18:29:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:348;a:8:{s:3:"sha";s:40:"1cdd1263e66ee8f3eb0eb2b235bf302614893e45";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"More Debugging, Updated Doku, Method rumpfs, Todos, and other useless things";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-20 17:39:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:349;a:8:{s:3:"sha";s:40:"c2304fe634d490aacd88da5e5b4e0ecddb7ad2f3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:163:"Added codegen to: (6x) , , , , , -";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-19 21:15:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:249;a:8:{s:3:"sha";s:40:"2a7caa8b0ebe39a7056207189b0c12ea8050d3ff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:106:"Codegen for -Better debug method for evaluating expressions";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-18 19:41:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:250;a:8:{s:3:"sha";s:40:"ae9300df86ed5bb1c01518e64b7a784eb47329a7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:107:"Added Literal-Gen Method: Factorization +";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-19 21:15:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:350;a:8:{s:3:"sha";s:40:"a3dcb3e187447da03b13173f6118f9ed0d07a98f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:106:"Codegen for +Better debug method for evaluating expressions";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-18 19:41:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:351;a:8:{s:3:"sha";s:40:"fff6dcc5131a2aa24747bca2b48a493aa867a128";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:107:"Added Literal-Gen Method: Factorization Fixed Escape Bug on int == '"' -Fixed negatve int Literals in Base-9";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-17 18:15:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:251;a:8:{s:3:"sha";s:40:"015e2a2b348202b95012a78a4af64f23bb4f675d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Add more optimization";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-17 15:22:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:252;a:8:{s:3:"sha";s:40:"d00223ad9581126a0a7a9c119275202296f2f959";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added CodeGen to (+ other Bugfixes)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-17 14:53:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:253;a:8:{s:3:"sha";s:40:"d60fce3b1680e7b4dbb6011f42b32f63d82074e3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:115:"Added a little bit of CodeGen to +Fixed negatve int Literals in Base-9";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-17 18:15:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:352;a:8:{s:3:"sha";s:40:"32505fb2b0c8efe9139a9e29fcc656652a4781e7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Add more optimization";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-17 15:22:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:353;a:8:{s:3:"sha";s:40:"773add35185e431cf2a7369e9812599d6bf4dbf1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added CodeGen to (+ other Bugfixes)";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-17 14:53:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:354;a:8:{s:3:"sha";s:40:"1d88d56c885d4fe5b157a62be1ef4f42a754bb51";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:115:"Added a little bit of CodeGen to Added CodeGenOptions Class -Added option to display Literals in Base-9";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 21:21:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:254;a:8:{s:3:"sha";s:40:"723ae02efa2f01292218afcde0da58960570223c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added CodeGen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 16:54:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:255;a:8:{s:3:"sha";s:40:"22c56671a866bbac71bced87c51581ef1877a10c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Added Label linking -Added Case-Insensitivity";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 14:53:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:256;a:8:{s:3:"sha";s:40:"ea0bddf5e15a155892a71bbc535d7a02c7796fc4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:82:"Added new Elements to AST (Call, Boolsche Op's ..) -Fixed Call-Statement in Grammar";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 14:29:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:257;a:8:{s:3:"sha";s:40:"c3cb50a02c6f2e9a7ca41c5c383743ea849c17ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Updated Grammar and Skeleton";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-13 17:13:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:258;a:8:{s:3:"sha";s:40:"335513724983959fa6d7cd1f0d91116f84e83638";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Removed ParseTreeCSharp Project";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-13 16:02:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:259;a:8:{s:3:"sha";s:40:"96360cf6c2d24161e24a32165546b72942cd9a18";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Fixed Grammar not loading";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 19:41:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:260;a:8:{s:3:"sha";s:40:"f34a4e7a7b40f6c7c9c28546b8b5bfba1f6d097a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Cleaning and Fixing ... too lazy too write commits";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 19:11:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:261;a:8:{s:3:"sha";s:40:"ba5d697c410a44bfd85bc40fcd533060e97b18e2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Fixed code highlighting and so ...";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 18:33:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:262;a:8:{s:3:"sha";s:40:"ef4d01bb119896d509b69053f6bff9e90bfa1d39";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Moved parsing to second thread";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 14:32:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:263;a:8:{s:3:"sha";s:40:"c3a9e10aa8731d6e9d4ff8cf7e461d30b69268ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"Updated example to be more logical and to include unfinished work";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 21:25:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:264;a:8:{s:3:"sha";s:40:"b75a9face6af6a689debbc85d166a0e6b5abc14b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:71:"Finished Linking (Variables, Methods & Expressions) -More AST-Validating";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 19:58:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:265;a:8:{s:3:"sha";s:40:"4ec11059c555fb7351a6fe8ca24928f875f42612";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Started implementing ResultType linking";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 15:25:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:266;a:8:{s:3:"sha";s:40:"8af1146266031f8d6df84ecd9f2f677e757c310c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added position to Objects and Exceptions";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 13:09:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:267;a:8:{s:3:"sha";s:40:"716d97b33f327f79cfba6765f7c9a6bd7719e6a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Improved and fixed various things";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 11:48:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:268;a:8:{s:3:"sha";s:40:"c3c2c78701b18dae2c5d38ead06aa6512b6ca389";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Fixed AV when egt is not found";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 20:59:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:269;a:8:{s:3:"sha";s:40:"c4c69eabb2335d336061400abdc030121fc77810";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added linking of Variables";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 20:00:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:270;a:8:{s:3:"sha";s:40:"2731ad161f05f5dc72b7f8d591fe611dc69c9bb9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added Exceptions, BefungeCommandHelper, DemoParser etc";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 16:21:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:271;a:8:{s:3:"sha";s:40:"9674e40ed7bb0f6df1fc63a7eccb33739d7644f2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Updated Highlight file";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 14:14:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:272;a:8:{s:3:"sha";s:40:"5392594e48dfd6fadc41747da8d6fcbc7358b065";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Fixed Statements not showing correctly in AST-Debug";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 10:25:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:273;a:8:{s:3:"sha";s:40:"a8db2f27557339f98585ab5188889e83c6c2a86f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:84:"Git&Code Clean Up +Added option to display Literals in Base-9";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 21:21:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:355;a:8:{s:3:"sha";s:40:"81f71099bdf98f246f0bc4a241711bb97f67c854";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added CodeGen to ";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 16:54:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:356;a:8:{s:3:"sha";s:40:"2ff246e53bfbcbf45fc4ab7829920cba7024169a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Added Label linking +Added Case-Insensitivity";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 14:53:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:357;a:8:{s:3:"sha";s:40:"d115ddffb5a5ade5ab2d829ee6e6f29672fd93d3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:82:"Added new Elements to AST (Call, Boolsche Op's ..) +Fixed Call-Statement in Grammar";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 14:29:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:358;a:8:{s:3:"sha";s:40:"b8087cd69e8ceb78327988b119823e0ce4c7ca7c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Updated Grammar and Skeleton";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-13 17:13:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:359;a:8:{s:3:"sha";s:40:"af0f0b0cb13b7fb14322ae32971c68cfae163f20";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Fixed Grammar not loading";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 19:41:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:360;a:8:{s:3:"sha";s:40:"10c4a814936c87d223e966ed4d20599f3f2bb864";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Cleaning and Fixing ... too lazy too write commits";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 19:11:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:361;a:8:{s:3:"sha";s:40:"0e81b4440bf802c3d5e731754003017b0c365399";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Fixed code highlighting and so ...";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 18:33:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:362;a:8:{s:3:"sha";s:40:"193fc4763cec6e651afeda9ca4b14e59fe8552b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Moved parsing to second thread";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 14:32:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:363;a:8:{s:3:"sha";s:40:"fe3678ddb29445ef2d28b046ef8ff0883e5d4adf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"Updated example to be more logical and to include unfinished work";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 21:25:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:364;a:8:{s:3:"sha";s:40:"52a1b042100b296fb306e4506bbe501cffed704d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:71:"Finished Linking (Variables, Methods & Expressions) +More AST-Validating";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 19:58:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:365;a:8:{s:3:"sha";s:40:"427d5ea53b1773d9acea5b1e8adcb7e0caedd9ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Started implementing ResultType linking";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 15:25:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:366;a:8:{s:3:"sha";s:40:"39ad4a1d87ec43e23214e55a856f1efdcfd3891f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added position to Objects and Exceptions";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 13:09:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:367;a:8:{s:3:"sha";s:40:"120ffcbd27496fdab9bc4ec9958d0d9b78d5fb11";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Improved and fixed various things";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 11:48:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:368;a:8:{s:3:"sha";s:40:"4e1f422b914ca48c597190aff57238b8f4a57a73";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added linking of Variables";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 20:00:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:369;a:8:{s:3:"sha";s:40:"6372723c5a6d65bff1e9d34d43375940ea46887c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added Exceptions, BefungeCommandHelper, DemoParser etc";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 16:21:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:370;a:8:{s:3:"sha";s:40:"d7fbb402a70449169caaf16b227010e1db99fc37";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Fixed Statements not showing correctly in AST-Debug";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 10:25:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:371;a:8:{s:3:"sha";s:40:"50aac55709f5a9c918e249b58329335807225a95";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:84:"Git&Code Clean Up Moved Skeleton to extra File Added egt to repo -Updated example_00";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 09:02:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:274;a:8:{s:3:"sha";s:40:"b45b2bb8e27aa18d20ef6a7605cdd202976b620e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Fixed CodePiece on neg. Values -Added Unit Tests";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-09 17:32:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:275;a:8:{s:3:"sha";s:40:"a64b8da883aa1265a2cb457e42ab64a6402a3b80";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Cleaned up code";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-09 16:47:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:276;a:8:{s:3:"sha";s:40:"f86746ce3b74b50709f0c815117a482135840b6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Moved Parser to BefunGen-Project -Added CodePiece-Class";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-09 16:46:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:277;a:8:{s:3:"sha";s:40:"d6edfdc9700987fd3ef9ce0a0f1c5e767f8d0bd9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Added Output for AST (ASCII-Tree Representation)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 23:49:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:278;a:8:{s:3:"sha";s:40:"0a9b24b5cf1b952f15aa427ea1eb93b743e6f888";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added better Components to ParseTreeC#";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 22:44:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:279;a:8:{s:3:"sha";s:40:"ada76d124f05f6977e0d6375155f55ead1537b17";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Finished AST -Fixed a few grammar errors";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 21:13:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:280;a:8:{s:3:"sha";s:40:"bc873ab9c6db2ecbd000d7ae5d2beedf8b996b2d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added Literals to AST";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 13:24:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:281;a:8:{s:3:"sha";s:40:"5ba80d5030919baaeefa300ac5eb339dc69e9b9a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added Skeleton for AST-Generation";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 11:47:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:282;a:8:{s:3:"sha";s:40:"dc23a3090c25fa8081f92837bfaa989321b8aca2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added example program";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 11:47:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:283;a:8:{s:3:"sha";s:40:"ee234a9cc1895d7ead99c1053bad6313c3e6b4bb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Improved Tree-Display (Messages, Linenumbers etc)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 11:46:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:284;a:8:{s:3:"sha";s:40:"bd3e9d6325633366d0e6840c88e6bd9bf47bff6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Updated Grammar";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 11:46:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:285;a:8:{s:3:"sha";s:40:"8042f76a0590efbe45a6163135ed9cdd68f933e3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed unnecessary Linevreaks from Grammatik";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:14:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:286;a:8:{s:3:"sha";s:40:"bac4ce4b9bab801db7ed31fffa7382b4dc62f1be";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"Added Grammatic-Definition for Language "TextFunge" with GOLD";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:12:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:287;a:8:{s:3:"sha";s:40:"962198eff3fad64b72120871e83e22a88cf53132";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Updated *.gitignore";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:12:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:288;a:8:{s:3:"sha";s:40:"cd30ae867b6c0e387e1b677352d2311d7684ee9f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Stub for BefunGen Prog";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:11:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:289;a:8:{s:3:"sha";s:40:"775edc5d97d1cf4c040c2a27d574c5312e997752";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added GOLD-Parser Generator (for parsing TextFunge)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:11:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:290;a:8:{s:3:"sha";s:40:"c69bbb57cc3e2cca87eb96f218b5a153a6f40ed9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added Tree-Display Project for ParserGenerator Gold";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:11:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:291;a:8:{s:3:"sha";s:40:"35ab135903b6bb4f0fd800d3711e6980bb6f35b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Updated *.gitignore";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:09:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:292;a:8:{s:3:"sha";s:40:"b9f77068ba425216e7533fb48533c03fb0f386d2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Updated Readme";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:01:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:293;a:8:{s:3:"sha";s:40:"fe43883e48c827a6cd4b6a9b0308b5c68a859b06";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:47;s:4:"size";i:2232;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 19:54:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:294;a:8:{s:3:"sha";s:40:"b05dc03b2d2899b8ad81cf64fd1eb11ed0c8c316";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated gitignore";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:64;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 19:55:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:295;a:8:{s:3:"sha";s:40:"26e64cd663fee40fb9c571039f37580b8625e583";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Added Fancy Stuff (Animations, Logo, Effects)";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:64;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 19:51:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:296;a:8:{s:3:"sha";s:40:"3c3a5af6c7ce91c2506dce6e5119877688eb3ced";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Aufgabe 2) Wechselspiel";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:64;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 16:16:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:297;a:8:{s:3:"sha";s:40:"f8a24e8d1757408b50168d5fe49ebb81ecbf6138";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Aufgabe 1) Farbenspiel";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:64;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 14:49:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:298;a:8:{s:3:"sha";s:40:"6035fc34ca6d95713d20a86ba7ded3a9c76fb088";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Initial Commit - Slick2d";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:64;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 11:58:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:299;a:8:{s:3:"sha";s:40:"a6e2bc371b7bb8a20e89d53a79eeb082cdcb5529";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:64;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 11:37:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:300;a:8:{s:3:"sha";s:40:"21901611350f89391ec8b56b004203aa9b8f99ea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Removed unused References";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-25 19:23:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:301;a:8:{s:3:"sha";s:40:"6f9577c067d1e33c4539c9779554e52dd5a42885";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added En/De-crypt PGP";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 20:36:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:302;a:8:{s:3:"sha";s:40:"7b124a7a3f1d7eb9ab83f8ff507fdfcf38b3d84b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added Decrypt_Tab";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 18:14:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:303;a:8:{s:3:"sha";s:40:"12ffba37e0a0de9086b844c2fb439a0fbd51ab3c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added Encrypt_Tab";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 18:14:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:304;a:8:{s:3:"sha";s:40:"8734316075c324f552f415d1752f0387ed768fec";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added Generate_Tab";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 16:12:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:305;a:8:{s:3:"sha";s:40:"db3ec75ec0f558c562a74ff8737677ce39e0c2a6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Initial Structure Commit";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 14:44:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:306;a:8:{s:3:"sha";s:40:"83fcce298fdde3168ffd2c9b79e448dc1cd91066";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:81;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 14:40:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:307;a:8:{s:3:"sha";s:40:"08f36bc5d76808d4884e147dc6f59dcd43c10ea2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"Added more Meta-data + Fixed a few bugs + Improved Performance -(All in one ^^)";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:98;s:4:"size";i:132;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-08 13:30:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:308;a:8:{s:3:"sha";s:40:"465b0b767d2c58cb673976018947740d7c75f79c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Removed unsued files";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:98;s:4:"size";i:132;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 17:12:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:309;a:8:{s:3:"sha";s:40:"be2419219fed2fedcbdc71eed78d41a6bde685b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Finished Styling etc";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:98;s:4:"size";i:132;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 17:09:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:310;a:8:{s:3:"sha";s:40:"a275445690a80a76514c4e7af5f68e7fe78fa6f8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"added working template";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:98;s:4:"size";i:132;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 15:37:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:311;a:8:{s:3:"sha";s:40:"500d56f6a54898ace3db8087563028fd6c4519c1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added full parsing / data-export / data-import";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:98;s:4:"size";i:132;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 13:45:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:312;a:8:{s:3:"sha";s:40:"794fca0f6615625da1566e53fb029cad1aa60657";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Initial work - enumerating commits";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:98;s:4:"size";i:132;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-06 22:21:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:313;a:8:{s:3:"sha";s:40:"3f2f935880a9d42831bffba1ec45e4146cb0a959";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Fixed Code Warnings -> more refactoring";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:52:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:314;a:8:{s:3:"sha";s:40:"fa3b79df8d67daa1c04e83d61fa3ee89333938b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Înfer Generic Type Arguments";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:49:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:315;a:8:{s:3:"sha";s:40:"9cf49516d2b6f098d2c86c469c93aa543338fd06";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:73:"Moved Pricelogic to Price (NewReleasePrice, RegularPrice, ChildrensPrice)";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:48:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:316;a:8:{s:3:"sha";s:40:"d23bb039315f0849fcc1b5ebbe47b7d310d245cd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Moved double getCharge(int daysRented) to Movie.java";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:27:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:317;a:8:{s:3:"sha";s:40:"02aa53b646c8803e8cb56cc2d2a41237f3924e1d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added htmlStatement class";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:24:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:318;a:8:{s:3:"sha";s:40:"2f84cd26d0fab02ca80406ddda1ea95d9140c997";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Codef formatting (Ctrl+SHift+O/F/S)";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:19:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:319;a:8:{s:3:"sha";s:40:"efeb24e9d963bb1dfee2f6b6253ef7893c6093f2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"Moved temp Variables to getTotalCharge() and getTotalFrequentRenderPoints()";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:18:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:320;a:8:{s:3:"sha";s:40:"c1d7da7d388e09da0fda45f96b6a1d0887b09515";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Moved "getFrequentRenterPoints" to Rental.java";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:06:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:321;a:8:{s:3:"sha";s:40:"2329f055280ace9f48ad218dadcb4964969f92d3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Inline Variable "temp"";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:03:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:322;a:8:{s:3:"sha";s:40:"0bb486ab8338f9152b513bc5339b345c915ad5ea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Removed amountFor Method";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:02:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:323;a:8:{s:3:"sha";s:40:"d9526cdf6e59d8578d050c22231bfa709398fc7a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Moved "amountFor" from Movie to Rental";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:00:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:324;a:8:{s:3:"sha";s:40:"93b8c9951f3c4535e0f7f07438b25af116e05b6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Moved Code to seperate Method "amountFor"";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 10:55:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:325;a:8:{s:3:"sha";s:40:"488566a641ec49348b7bde7f1fe16be7d2bc641d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"INITIAL (No Refactoring)";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:115;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 10:46:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:326;a:8:{s:3:"sha";s:40:"6c5704a12e85f5d8f76e34162dec265bbae763f0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"1.9.3 Bugfix: Fixed jCoverChooser reset when viewing Episode";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-04 20:56:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:327;a:8:{s:3:"sha";s:40:"4a6f6d7f9bb41b4391f6ce0a0fe054639a7c1cf5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.9.2 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 19:06:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:328;a:8:{s:3:"sha";s:40:"c67ed12e0a643e4bf23a4dd94d9dce9e75369971";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"1.9.2 Task: Reverted CharChooser to old behaviour of non-substance LnF's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-08 15:04:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:329;a:8:{s:3:"sha";s:40:"ffe0fed3769b21baf69a1c28ee04ef033fbb4a29";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"1.9.2 Feature: Added (PLAIN | JSON | XML) export function";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-07 19:08:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:330;a:8:{s:3:"sha";s:40:"40bc62e74aadf3a7e437eb317930ef37ace50e73";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:73:"1.9.2 Feature: Added One-Click metadata calculation to "AddEpisodesFrame"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-07 10:27:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:331;a:8:{s:3:"sha";s:40:"d6e430f91888ad24d01b791a6dafa267a8f02c51";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Late night todo commit";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-29 21:09:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:332;a:8:{s:3:"sha";s:40:"5b303e50b0eeca82e15808563d955f41a43a811f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"1.9.2 Task: Added a minimum scrollbar height on the windows L'n'F";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-05 23:36:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:333;a:8:{s:3:"sha";s:40:"ef671d5bb9cdfa492ed4f870057b683bc6bc5595";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:104:"1.9.2 Task: Improved Performance when throwing a massive amount of exceptions (collecting them together)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 21:08:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:334;a:8:{s:3:"sha";s:40:"c9ba1c1ffd432826917e607bd36e5f738a74fecb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"1.9.2 Feature: Added ResetTags Option to ImportDialog(s)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 20:58:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:335;a:8:{s:3:"sha";s:40:"50cda8545e80d4d5c58d926ac46b12a39d3b2518";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:102:"1.9.2 Task: Changed IMDB-Parse Method to [jSoup-Library] - (source of a few bugs & better Maintenance)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 19:44:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:336;a:8:{s:3:"sha";s:40:"be815cddb8a4b50b03db7be1e05eef7b99d997a6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"1.9.2 Task: Only allow CreateFolderStructure after successful tests";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 15:14:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:337;a:8:{s:3:"sha";s:40:"ab31955ff3573b42ad58dbaa4efd32ede090fdbf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"1.9.2 Bugfix: Fixed AV when selecting Theme "Autumn"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 14:24:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:338;a:8:{s:3:"sha";s:40:"29708bec9953babedbfcb857429c600ec88a6b6e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"1.9.2 Bugfix: Fixed List-UI with "Windows"-Theme";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 14:14:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:339;a:8:{s:3:"sha";s:40:"c70964ee29260021d9cae8464bc1aa8f6a5d94a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:104:"1.9.2 Bugfix: Fixed ValidateDatabase->CheckFolderStructure for Folder with different Lowercase/Uppercase";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 12:35:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:340;a:8:{s:3:"sha";s:40:"b9b30be588828c2e15ae5f9434964658260377c7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:96:"1.9.2 Bugfix: Fixed Filename-creation for Elements ending with a dot (caused various other bugs)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 12:29:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:341;a:8:{s:3:"sha";s:40:"0a7ad9491bd9bf962638d542365323ad1d702056";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"1.9.2 Bugfix: Wrong Movie-Filesize when having more than 2 Parts (+ TODO's)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 11:24:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:342;a:8:{s:3:"sha";s:40:"ec703d44ec1f12d8737764424ebd9261ee5316ff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"1.9.2 Task: Live update PreviewSeriesFrame (while open)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-18 14:55:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:343;a:8:{s:3:"sha";s:40:"92395e252eee20767deb7c504766696020468310";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"1.9.2 Bugfix: ParseWatchDataFrame: Update Date even when no change in viewed";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 21:10:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:344;a:8:{s:3:"sha";s:40:"2e47c6353470bc83e58ea69d650e00576a4d4d1b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"1.9.2 Beta Release (for internal use only)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 20:50:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:345;a:8:{s:3:"sha";s:40:"9770c7e691d4968a6fff83b9982e68c55274e76a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"Fixed ParseWatchData not setting episodes to correct value";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 20:48:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:346;a:8:{s:3:"sha";s:40:"4992b0df622f26b706e7e69b103dc13769c0a3a7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Fixed typo";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-11 19:32:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:347;a:8:{s:3:"sha";s:40:"69af72979f7d4ee61f7a1bec1ba3f48916c97b2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:71:"1.9.2 Feature: Added new Syntax to ParseWatchDataFrame (Episode ranges)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:18:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:348;a:8:{s:3:"sha";s:40:"64aec23dfd510325af8dcdafecd685feb9cff4c8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:66:"1.9.2 Feature: Added new Database Error: "INVALID_SERIESSTRUCTURE"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-09 19:30:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:349;a:8:{s:3:"sha";s:40:"b3a2f8bc1614dfcf9f822a4487637021de49d47d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"1.9.2 Feature: Added clickable Score to ClipTable";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-30 10:37:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:350;a:8:{s:3:"sha";s:40:"bca7dfca244995cd2726f97dee494f293abe3853";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"1.9.2 Bugfix: Fixed TextEncoding when loading Filter from File";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-30 10:26:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:351;a:8:{s:3:"sha";s:40:"a11fe2443b49242eb6a04560663917c4d16bc3a7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"1.9.2 Feature: Added 'pasteURL' && 'pasteImage' to EditCoverComponent";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-30 10:20:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:352;a:8:{s:3:"sha";s:40:"e5cf2f82b615ebe25050830b375b2888f74db41a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"1.9.2 Feature: Only show SeriesOverlay when optin selected (do not modify files)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 11:45:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:353;a:8:{s:3:"sha";s:40:"3f6e8a9feb8cbcfd0cfb8f57e8c99954377245cc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:144:"1.9.2 Feature: Added proper EditCoverControl +Updated example_00";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 09:02:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:372;a:8:{s:3:"sha";s:40:"e3b4f1f1884b399cddbd59e87b7f131f8b7da184";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Fixed CodePiece on neg. Values +Added Unit Tests";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-09 17:32:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:373;a:8:{s:3:"sha";s:40:"eab8c373582ec110431eb089d7da0b841b86d6d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Cleaned up code";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-09 16:47:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:374;a:8:{s:3:"sha";s:40:"90a32a09cd372faf626b7e258b54f4b9936e159a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Moved Parser to BefunGen-Project +Added CodePiece-Class";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-09 16:46:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:375;a:8:{s:3:"sha";s:40:"450d1be936ca1eca2a162ef7ec88ce16348cb034";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Stub for BefunGen Prog";s:10:"repository";a:13:{s:2:"id";i:28590834;s:4:"name";s:8:"BefunGen";s:9:"full_name";s:18:"Mikescher/BefunGen";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunGen";s:8:"language";s:2:"C#";s:8:"creation";r:98;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunGen/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:11:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:376;a:8:{s:3:"sha";s:40:"0f1ba42e562bfa974a2da6873d7133095c0d6c86";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Create README.md";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 13:15:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:377;a:8:{s:3:"sha";s:40:"7178795f6d3e7b32fa550c454cc7b44dcf0a271b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Updated .gitignore";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:09:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:378;a:8:{s:3:"sha";s:40:"5a661d8394f1cf7843f90f4adc1865785f567091";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"[ALL] Changed Ouputpath to a common one";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:56:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:379;a:8:{s:3:"sha";s:40:"5c45ab91d8f1c7e3f521f8db8e2dd5f9cfb7001b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunGen] Optimized Stmt_Out_CharArr for short literals";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:58:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:380;a:8:{s:3:"sha";s:40:"e1ccf6a05365770217bd7280e204714dacb07711";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Set Grammarbug ("4-4") to "WON'T FIX"";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 11:49:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:381;a:8:{s:3:"sha";s:40:"ac6cd98f4b9a7217dab7930bab8b78a205ddd338";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added 2 more Unit Tests (Outf, goto)";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 13:39:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:382;a:8:{s:3:"sha";s:40:"06adea931e72ad8578bd1ecaf4c621bec5005e08";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"Added Explorer Integration (open File from commandline)";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 19:42:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:383;a:8:{s:3:"sha";s:40:"85e24d78c1873e82286a0677fe42d3eb50535dee";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added more UnitTests";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 08:21:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:384;a:8:{s:3:"sha";s:40:"28e8f55b1bea33f845a2ea91abb0894da12dad93";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"[BUGFIX] Fixed recursive Methodcalls like push(peek());";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 07:57:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:385;a:8:{s:3:"sha";s:40:"94804f42c1ed86b341e800383397dbfce0c5a993";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added RemoveUnusedMethods Optimization";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 10:45:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:386;a:8:{s:3:"sha";s:40:"ca0ffceb44a049e1d2251a883d650ca01eef497c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Fixed BefunGenTests with new CodeGenOptions Handling";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 10:18:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:387;a:8:{s:3:"sha";s:40:"aa643835986d7aa2c10741ee736fdffdd6a5352e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added CodeGen to (4x)";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 22:57:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:388;a:8:{s:3:"sha";s:40:"3cf83908e27052255008b2767ab8a8498f6923f9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 18:36:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:389;a:8:{s:3:"sha";s:40:"52c81a86ecdf7ad7c9e64181eeb4b2f6ce4ef5b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:77:"Added Class for Statement_Switch / More Tests / Fixed Bug in GOTO_Lbl Finding";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 12:16:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:390;a:8:{s:3:"sha";s:40:"f535026b0a033e01c892396efa39fa591feb133e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:116:"Multiple small things: +Fixed DisplaySize=0 +Using Optimized CharLiteralOut-Code +Added Tests for For-Loop (and others)";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 10:51:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:391;a:8:{s:3:"sha";s:40:"ee864d8db07892dcb0d607fc96ef817ed884ed46";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 10:29:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:392;a:8:{s:3:"sha";s:40:"c80e13d8a82b5c89963a557624b96197d8853e9c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added CodeGen for Display (to the Prog Header)";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 17:07:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:393;a:8:{s:3:"sha";s:40:"21306386b7fd2e89a26b3eaa3f19f9bd6fd8edba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Global Variables";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 12:04:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:394;a:8:{s:3:"sha";s:40:"1ce43170a9c1e7475b76e78bf1aea477010ae5a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added CodeGen to and ";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 10:39:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:395;a:8:{s:3:"sha";s:40:"208af95f2228933902a152f50f454d709ae119ca";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added ArrayHandling in Return Values";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 10:18:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:396;a:8:{s:3:"sha";s:40:"14d1ebf62707e2943d7c97dc9e3cc31b5c09d37a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Bugfixes - here and there and everywhere";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 09:25:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:397;a:8:{s:3:"sha";s:40:"90cca1998f51d96983c9909b60efb9b30be38547";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added and organized UnitTests";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 08:11:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:398;a:8:{s:3:"sha";s:40:"33ca18115c1672523b25d56f27cd1111a9ac8e92";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed MethodCall - CornerCases in ";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-18 13:40:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:399;a:8:{s:3:"sha";s:40:"a6f40e6a67d18ff84e2fd6d62d2cda15a5838a7e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Test for NumberCodeGeneration";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 21:53:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:400;a:8:{s:3:"sha";s:40:"8f39dd782a584800c8eddf3cb145cb3d675583b4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Automatic Testing to BefunGenTest";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 21:17:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:401;a:8:{s:3:"sha";s:40:"435e3eaae8dcf1e37ac0d467e8f238044b7e6a01";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"Drastically improved efficiency of NumberCodeFactory_Stringify";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 18:13:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:402;a:8:{s:3:"sha";s:40:"bb95e45956ec4b102bb898b231b18e8dba44d753";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Started tagging & Added Tags to CodePiece.toString()";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 15:06:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:403;a:8:{s:3:"sha";s:40:"d60215c3dd9444da85e68d5caaea3e65d0d60bf0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Cleaned up UnitTestProject";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 11:39:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:404;a:8:{s:3:"sha";s:40:"823e6b74e9467f3e32259aeb1f22d0723a04bffb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Finished for Arrays";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 21:49:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:405;a:8:{s:3:"sha";s:40:"e0ea3aa7eaad210a1d6e7bd49b59b68165c1bab3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Fixed StatementList with empty statements";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 16:14:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:406;a:8:{s:3:"sha";s:40:"78c443d97fee69e04c4a952945b62e5f496846c9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"Redid Codegen for (now more efficient - better maintenance)";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 15:55:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:407;a:8:{s:3:"sha";s:40:"255d8c48a07eb6288ac6d29165a50dca6cbb0f78";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:97:"Added ELSIF Syntax to grammar (and while,repeat etc Now wnat a StmtList instead of a single Stmt)";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 23:32:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:408;a:8:{s:3:"sha";s:40:"31305048fbd009f34efd4a6aa97d1fc32d9c8303";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Control Character (\r \n etc etc)";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 20:54:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:409;a:8:{s:3:"sha";s:40:"2e6a051ab2416815aaea9ae8ad6fec65d75386d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Added CodeGenAdded CodeGen to ";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 20:00:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:410;a:8:{s:3:"sha";s:40:"c85f33b5ea602f0bea26486548e15fbc317a8930";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added CodeGen to ";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 15:13:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:411;a:8:{s:3:"sha";s:40:"54baec989cad34661a572fe1dbb9b28bb1c80a31";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:91:"Updated BefungExec Raster +Fixed Compare-Expressions +Added Codegen ";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-28 20:22:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:412;a:8:{s:3:"sha";s:40:"709915ae3c63faef9b33dc7af1a01a6093d6988a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Fixed CodePiece on neg. Values +Added Unit Tests";s:10:"repository";a:13:{s:2:"id";i:28591377;s:4:"name";s:12:"BefunGenTest";s:9:"full_name";s:22:"Mikescher/BefunGenTest";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/BefunGenTest";s:8:"language";s:2:"C#";s:8:"creation";r:115;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/BefunGenTest/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-09 17:32:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:413;a:8:{s:3:"sha";s:40:"c899b0a48cd6a3ebe69a522e20e23013a334bc29";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Create README.md";s:10:"repository";a:13:{s:2:"id";i:28590807;s:4:"name";s:14:"BefunHighlight";s:9:"full_name";s:24:"Mikescher/BefunHighlight";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:43:"https://github.com/Mikescher/BefunHighlight";s:8:"language";s:2:"C#";s:8:"creation";r:132;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:61:"https://api.github.com/repos/Mikescher/BefunHighlight/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 13:14:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:414;a:8:{s:3:"sha";s:40:"a2aa5abcf4ad3bb6dfbe8b26197531c40aa127a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Updated .gitignore";s:10:"repository";a:13:{s:2:"id";i:28590807;s:4:"name";s:14:"BefunHighlight";s:9:"full_name";s:24:"Mikescher/BefunHighlight";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:43:"https://github.com/Mikescher/BefunHighlight";s:8:"language";s:2:"C#";s:8:"creation";r:132;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:61:"https://api.github.com/repos/Mikescher/BefunHighlight/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:09:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:415;a:8:{s:3:"sha";s:40:"66878e0daa161a3259983c9f87c50a9effe7b4b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"[BefunExec] Improved Graph display again (for jumps)";s:10:"repository";a:13:{s:2:"id";i:28590807;s:4:"name";s:14:"BefunHighlight";s:9:"full_name";s:24:"Mikescher/BefunHighlight";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:43:"https://github.com/Mikescher/BefunHighlight";s:8:"language";s:2:"C#";s:8:"creation";r:132;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:61:"https://api.github.com/repos/Mikescher/BefunHighlight/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-10 01:56:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:416;a:8:{s:3:"sha";s:40:"94003e52968da47991d52a04cf65cb9ccadf0c3c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"[BefunExec] Added BefunHighlight graph rendering to DebugView (TAB)";s:10:"repository";a:13:{s:2:"id";i:28590807;s:4:"name";s:14:"BefunHighlight";s:9:"full_name";s:24:"Mikescher/BefunHighlight";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:43:"https://github.com/Mikescher/BefunHighlight";s:8:"language";s:2:"C#";s:8:"creation";r:132;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:61:"https://api.github.com/repos/Mikescher/BefunHighlight/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-10 01:14:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:417;a:8:{s:3:"sha";s:40:"49d88e0f916556836470facadaecb3dcc518f8cb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"[BefunExec] Added effective (from BefunHighlight) Width/Height";s:10:"repository";a:13:{s:2:"id";i:28590807;s:4:"name";s:14:"BefunHighlight";s:9:"full_name";s:24:"Mikescher/BefunHighlight";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:43:"https://github.com/Mikescher/BefunHighlight";s:8:"language";s:2:"C#";s:8:"creation";r:132;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:61:"https://api.github.com/repos/Mikescher/BefunHighlight/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 18:55:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:418;a:8:{s:3:"sha";s:40:"8fd5d922ed455fdbfe300df550654e2eaf7116dc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"[ALL] Changed Ouputpath to a common one";s:10:"repository";a:13:{s:2:"id";i:28590807;s:4:"name";s:14:"BefunHighlight";s:9:"full_name";s:24:"Mikescher/BefunHighlight";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:43:"https://github.com/Mikescher/BefunHighlight";s:8:"language";s:2:"C#";s:8:"creation";r:132;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:61:"https://api.github.com/repos/Mikescher/BefunHighlight/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:56:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:419;a:8:{s:3:"sha";s:40:"7938ff9b6c7b47baea85bb1e3d89c8becd6080ab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunExec] changed internals from int32 to int64 (long)";s:10:"repository";a:13:{s:2:"id";i:28590807;s:4:"name";s:14:"BefunHighlight";s:9:"full_name";s:24:"Mikescher/BefunHighlight";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:43:"https://github.com/Mikescher/BefunHighlight";s:8:"language";s:2:"C#";s:8:"creation";r:132;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:61:"https://api.github.com/repos/Mikescher/BefunHighlight/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 17:18:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:420;a:8:{s:3:"sha";s:40:"46ab458ccdbd903f40fc4c32b493a9d275cd672d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"[BefunExec] Improved BefunHighlight performance & added SH update";s:10:"repository";a:13:{s:2:"id";i:28590807;s:4:"name";s:14:"BefunHighlight";s:9:"full_name";s:24:"Mikescher/BefunHighlight";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:43:"https://github.com/Mikescher/BefunHighlight";s:8:"language";s:2:"C#";s:8:"creation";r:132;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:61:"https://api.github.com/repos/Mikescher/BefunHighlight/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 16:07:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:421;a:8:{s:3:"sha";s:40:"cea3d2df53bc777f46671731a39781775ff590a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"[BefunExec] Added BefunHighlight to BefunExec";s:10:"repository";a:13:{s:2:"id";i:28590807;s:4:"name";s:14:"BefunHighlight";s:9:"full_name";s:24:"Mikescher/BefunHighlight";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:43:"https://github.com/Mikescher/BefunHighlight";s:8:"language";s:2:"C#";s:8:"creation";r:132;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:61:"https://api.github.com/repos/Mikescher/BefunHighlight/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 16:01:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:422;a:8:{s:3:"sha";s:40:"dc467a3ec829175c67912c8c2d15f7de9e4dd95b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Finished basig BefunHighlighter code";s:10:"repository";a:13:{s:2:"id";i:28590807;s:4:"name";s:14:"BefunHighlight";s:9:"full_name";s:24:"Mikescher/BefunHighlight";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:43:"https://github.com/Mikescher/BefunHighlight";s:8:"language";s:2:"C#";s:8:"creation";r:132;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:61:"https://api.github.com/repos/Mikescher/BefunHighlight/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 22:28:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:423;a:8:{s:3:"sha";s:40:"f4671c6e618f52e11feb98a14d8377200641befc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Finished core construct of BefunHighlight";s:10:"repository";a:13:{s:2:"id";i:28590807;s:4:"name";s:14:"BefunHighlight";s:9:"full_name";s:24:"Mikescher/BefunHighlight";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:43:"https://github.com/Mikescher/BefunHighlight";s:8:"language";s:2:"C#";s:8:"creation";r:132;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:61:"https://api.github.com/repos/Mikescher/BefunHighlight/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 18:09:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:424;a:8:{s:3:"sha";s:40:"072373db9c54f7b667f077ae7391403bfa18d67a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added new Project BefunHighlight";s:10:"repository";a:13:{s:2:"id";i:28590807;s:4:"name";s:14:"BefunHighlight";s:9:"full_name";s:24:"Mikescher/BefunHighlight";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:43:"https://github.com/Mikescher/BefunHighlight";s:8:"language";s:2:"C#";s:8:"creation";r:132;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:61:"https://api.github.com/repos/Mikescher/BefunHighlight/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 16:06:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:425;a:8:{s:3:"sha";s:40:"89746537c1de10958b0caf4eafd7f70fec46b640";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Create README.md";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 13:15:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:426;a:8:{s:3:"sha";s:40:"f2533d83bf9d534c1fea127b370ceb6315f2a161";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Updated .gitignore";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:10:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:427;a:8:{s:3:"sha";s:40:"4cc1cfda4fd3cc2dbcefdc83922efc35129e4f12";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"[BefunRep] VERSION 1.0 && Updated Help";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-08 10:32:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:428;a:8:{s:3:"sha";s:40:"31e541b9d4662c2bbcaf8ff1a5488a8bdbe8db3d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"[BefunRep] Improved "CharMultAlgorithm" Performance (x15)";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-07 15:25:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:429;a:8:{s:3:"sha";s:40:"9b40ab516e7f9ab828a91ab894552d5f7e02c58a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"[BefunRep] Added more statistics";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-07 13:35:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:430;a:8:{s:3:"sha";s:40:"bd978719a178b0d05971a793f644cc1cce4dadda";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"[BefunRep] Formatting and Output Improvements";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-06 21:35:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:431;a:8:{s:3:"sha";s:40:"1972e9bfbe13f2c5a32d463b5cf389d0331909a6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"[BefunRep] Added "CharMultAlgorithm"";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-06 17:05:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:432;a:8:{s:3:"sha";s:40:"a963aec7f3a19ff5d81afe068638202992112ed1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"[BefunRep] Added "DigitMultAlgorithm"";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-06 15:50:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:433;a:8:{s:3:"sha";s:40:"083e8c1914a769758d1385b43fcd8690a4f942ea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"[BefunRep] Added "SimpleNegativeAlgorithm"";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-06 14:41:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:434;a:8:{s:3:"sha";s:40:"b4c5aa3f6b9f3c1479c12ea72a478357d2fd8843";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"[BefunRep] Added "DigitAddAlgorithm"";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-06 14:05:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:435;a:8:{s:3:"sha";s:40:"4e2f1767f5bce33e8f6859c57e49041acb036ec9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"[BefunRep] Added -quiet option";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 14:29:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:436;a:8:{s:3:"sha";s:40:"ee71ef76c87c53420b08956c0a821a7b0b77a9c7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"[BefunRep] Added Algorithm "PowerAlgorithm"";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 14:24:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:437;a:8:{s:3:"sha";s:40:"c43a543cd4307c4d65d3d4502a0ea8a90be018bf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"[BefunRep] Upgrade CPTester to int64";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 13:43:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:438;a:8:{s:3:"sha";s:40:"e6c4fb78c18c91d01161f9b48d51a4f46ad610e8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"[BefunRep] Added Statistics";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 13:27:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:439;a:8:{s:3:"sha";s:40:"cea012615d0de54934461b767c6888960f3e2084";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"[BefunRep] Added AlgorithmID field to safes and outputs";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 12:45:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:440;a:8:{s:3:"sha";s:40:"28936631c6b1a3aa6f9e843731793df6a6075003";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added wercker.yml";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 11:49:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:441;a:8:{s:3:"sha";s:40:"3382f31add99344d160f13c127cfec7d8d188a56";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"[BefunRep] Added "base [N] algorithm"";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 01:44:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:442;a:8:{s:3:"sha";s:40:"0cbf9a84ffeb9a1c4f8cdbb625d08237b975a3dc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"Added more CLI options (help) (auto-limit-discovery) (logo)";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 00:56:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:443;a:8:{s:3:"sha";s:40:"3a365997baa9d84aed98791afb748e8c356f795b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"upper and lower limit are now int64";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 00:33:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:444;a:8:{s:3:"sha";s:40:"d2c67aeabf5997dca9a319ad578675734555d212";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added BefunRep icon";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-04 23:57:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:445;a:8:{s:3:"sha";s:40:"2fc11592a4f554ce1ca40804672f808994f6149a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"[BefunRep] Added Output option";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 15:59:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:446;a:8:{s:3:"sha";s:40:"e93a4bad9eedaac7494925eff571204f6dc14fa0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"[BefunRep] Added binary safe format";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 15:58:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:447;a:8:{s:3:"sha";s:40:"e07259611fd2659c1cf9651ae54695d3a5d2f4ad";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"[BefunRep] Added automatic testing";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 12:16:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:448;a:8:{s:3:"sha";s:40:"b3e474710000677150154d1064b7f28a3b2b19c5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"[BefunRep] Added Stringify Algorithm";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 11:12:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:449;a:8:{s:3:"sha";s:40:"10d6bdb5ecd5a57a75f1ac6860cc53a562613c73";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"[BefunRep] Added Factorization Algorithm";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 10:54:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:450;a:8:{s:3:"sha";s:40:"6d178af44e91d966760aa66eb066686014f97521";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"[BefunRep] Added Char Algorithm";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 10:32:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:451;a:8:{s:3:"sha";s:40:"213bc5e8ec521d38e5ac2ab2f11dfb3f6509f38e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"[BefunRep] Added Base9 Algorithm";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 10:13:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:452;a:8:{s:3:"sha";s:40:"7fa9468a7a6d492d36ba5f06ec29e328f859f0fc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"[BefunRep] Created new subproject "BefunRep"";s:10:"repository";a:13:{s:2:"id";i:28590809;s:4:"name";s:8:"BefunRep";s:9:"full_name";s:18:"Mikescher/BefunRep";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/BefunRep";s:8:"language";s:2:"C#";s:8:"creation";r:149;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/BefunRep/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 10:12:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:453;a:8:{s:3:"sha";s:40:"a7e74d8e3d498a00a887dcfb2a9ced168a71bbe1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Renamed to BefunUtils";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 15:12:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:454;a:8:{s:3:"sha";s:40:"85893d7fb2feb0ccff34b9616383ebf278ba7ae2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 13:10:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:455;a:8:{s:3:"sha";s:40:"bbe2a2869b15eac0aa74e52029dce81893b77e0d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 13:03:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:456;a:8:{s:3:"sha";s:40:"38c298b8f9b235b4ac71e63db2ca7bedfa7d4c0e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:53:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:457;a:8:{s:3:"sha";s:40:"0f878a54815e924f2780a47b7845f124849ce3e3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added ESH-Graph example image";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:50:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:458;a:8:{s:3:"sha";s:40:"b8930fb8132b5946f46d3351f228d6610f024bdf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:38:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:459;a:8:{s:3:"sha";s:40:"e14e91f8d9056e1615ac558eda1e0330f7d9313b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:38:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:460;a:8:{s:3:"sha";s:40:"6c3a3caf925451acb44953f5550bd6cbda645796";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:36:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:461;a:8:{s:3:"sha";s:40:"0e7c61f0bc1fb64844f05658b00993a1c986db14";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:35:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:462;a:8:{s:3:"sha";s:40:"89eb2a14dd0e79707755fe8ef8a0aa1a91f00d1d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Removed Subprojects (will be moved to own repos)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 11:53:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:463;a:8:{s:3:"sha";s:40:"9f73f45eee9a8803d5e8990f560256282968878a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"[BefunExec] Improved Graph display again (for jumps)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-10 01:56:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:464;a:8:{s:3:"sha";s:40:"bb84242ee7a1e0efdb30c4f61c23fc0180f0a800";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"[BefunExec] Added BefunHighlight graph rendering to DebugView (TAB)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-10 01:14:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:465;a:8:{s:3:"sha";s:40:"e4508db70464f57b981ceb5617307ba66fc426d2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"[BefunRep] VERSION 1.0 && Updated Help";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-08 10:32:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:466;a:8:{s:3:"sha";s:40:"d8050a4e0141c7ef0389940774935b48df08a3d8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-08 09:57:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:467;a:8:{s:3:"sha";s:40:"3a4274287c5424c46f5ead3971032c1c37570eb4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-08 09:54:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:468;a:8:{s:3:"sha";s:40:"b4be5ba2f812683c94b4e1528ac357587f0f1c22";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added more screenshots to README-FILES";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-08 09:52:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:469;a:8:{s:3:"sha";s:40:"4c4024e6b838c4fb49c9f505a2fd3731feb14c0b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-08 09:42:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:470;a:8:{s:3:"sha";s:40:"4feab0459076c0b6483c423be684ab90d811ffd5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-08 09:39:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:471;a:8:{s:3:"sha";s:40:"4609c7e1c56d920804b0d80fbaf25a3603b2ba96";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added Screenshots to README-FILES";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-08 09:36:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:472;a:8:{s:3:"sha";s:40:"ca6be41cea1602e434e984849982ca91edea8b82";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Examples to README-FILES";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-08 09:10:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:473;a:8:{s:3:"sha";s:40:"767fda135f1f93679d39657ee6b7ca0f81fa0506";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added icon for BefunHighlight";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-08 09:03:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:474;a:8:{s:3:"sha";s:40:"71bf1139806c8f3206f07ad7befd579a12d37ca9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added images to README-FILES";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-08 08:48:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:475;a:8:{s:3:"sha";s:40:"690e9016f8ba3faf45379580b8b3a0e344c517f2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"[BefunRep] Improved "CharMultAlgorithm" Performance (x15)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-07 15:25:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:476;a:8:{s:3:"sha";s:40:"bec55b4675d41e3d96dcdadf04bc43e957a24c70";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"[BefunRep] Added more statistics";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-07 13:35:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:477;a:8:{s:3:"sha";s:40:"0fa694fecdca3111f90dbba668898ef253a69cef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"[BefunRep] Formatting and Output Improvements";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-06 21:35:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:478;a:8:{s:3:"sha";s:40:"88609720d320ef46c89de79c9384bb97a02afb7f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"[BefunRep] Added "CharMultAlgorithm"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-06 17:05:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:479;a:8:{s:3:"sha";s:40:"576fa8b91524376bd1ae6d582fed016a95c5f8ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"[BefunRep] Added "DigitMultAlgorithm"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-06 15:50:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:480;a:8:{s:3:"sha";s:40:"803f6508969cf79e5973997270c017666edc33c5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"[BefunRep] Added "SimpleNegativeAlgorithm"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-06 14:41:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:481;a:8:{s:3:"sha";s:40:"520659419b9e3bc65654aa46ac182639eae62484";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"[BefunRep] Added "DigitAddAlgorithm"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-06 14:05:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:482;a:8:{s:3:"sha";s:40:"6a8aa56af721c51e14dd7a0d37369c70fd5c2a0e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"[BefunRep] Added -quiet option";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 14:29:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:483;a:8:{s:3:"sha";s:40:"a0ba66fae593e7f8256fcdef5906f6d6a8b3295c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"[BefunRep] Added Algorithm "PowerAlgorithm"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 14:24:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:484;a:8:{s:3:"sha";s:40:"702ee21c77e74eef168cd7dcf1cd2d024df73868";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"[BefunRep] Upgrade CPTester to int64";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 13:43:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:485;a:8:{s:3:"sha";s:40:"bec4170b1e68c7ade791f5c8e1b05cf6f90fd1f5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"[BefunRep] Added Statistics";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 13:27:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:486;a:8:{s:3:"sha";s:40:"4345a52f0b7f877037e06d1f8409cea051f0bb7b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"[BefunRep] Added AlgorithmID field to safes and outputs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 12:45:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:487;a:8:{s:3:"sha";s:40:"c8b803f65926363772f368afb522b350528b9131";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Removed wercker.yml";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 11:57:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:488;a:8:{s:3:"sha";s:40:"76db76f90d493a3235d549711f537dd7e40fdb24";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Fixed wercker.yml";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 11:55:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:489;a:8:{s:3:"sha";s:40:"f53fe82ed276cdbda241cc130246d7553d054029";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added wercker.yml";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 11:49:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:490;a:8:{s:3:"sha";s:40:"968bba69e4e13cdc3c546388ba8b76c04052832f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"[BefunRep] Added "base [N] algorithm"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 01:44:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:491;a:8:{s:3:"sha";s:40:"59a273e4198ebd1900f948d247a9b407668312a6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"Added more CLI options (help) (auto-limit-discovery) (logo)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 00:56:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:492;a:8:{s:3:"sha";s:40:"14b038816683ed0861b3152c2f6282abb5429fb9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"upper and lower limit are now int64";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-05 00:33:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:493;a:8:{s:3:"sha";s:40:"9a986732ee5bfea3246c0ba6cbb24608cdbd6a0b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added BefunRep icon";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-04 23:57:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:494;a:8:{s:3:"sha";s:40:"2519190770fd4e56f11214bd24fa3fad401e05e4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"[BefunRep] Added Output option";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 15:59:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:495;a:8:{s:3:"sha";s:40:"62bf0ca865f332628fe58cfbd0203473fa327f9b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"[BefunRep] Added binary safe format";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 15:58:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:496;a:8:{s:3:"sha";s:40:"a35dbd865d6766b2da5b1dbf737733bb90780fa5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"[BefunRep] Added automatic testing";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 12:16:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:497;a:8:{s:3:"sha";s:40:"9c3634e89194cb7077cf973b06919b179f07ef1c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"[BefunRep] Added Stringify Algorithm";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 11:12:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:498;a:8:{s:3:"sha";s:40:"a47d612b51de8db9860df29536e7c0ff3647daf5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"[BefunRep] Added Factorization Algorithm";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 10:54:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:499;a:8:{s:3:"sha";s:40:"273f5b0ca2d87e7d41eec57b3fa3d033e6761d63";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"[BefunRep] Added Char Algorithm";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 10:32:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:500;a:8:{s:3:"sha";s:40:"4b13f5c095d2f044f3ab9f98b1308ba1b3694153";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"[BefunRep] Added Base9 Algorithm";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 10:13:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:501;a:8:{s:3:"sha";s:40:"9d7cb833d9cbf8a85a1c91009128569b8f232835";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"[BefunRep] Created new subproject "BefunRep"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-28 10:12:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:502;a:8:{s:3:"sha";s:40:"0d3a7d8a6e2f52a5e6ed5799f0f3f9c0cd8021b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"[BefunExec] Tried fixing non-closing after exiting main-window";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 09:02:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:503;a:8:{s:3:"sha";s:40:"43a65401ca32089435b4a79aecf77992b35b65d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"[BefunExec] Fixed Reload when opening file in-program";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 13:44:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:504;a:8:{s:3:"sha";s:40:"3d9e0dd2411e85f48189e869e2eae5f4bd20bb23";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-08 07:22:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:505;a:8:{s:3:"sha";s:40:"bb278ec44312b4fa122a7a8bee28a10693c7da1f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-07 09:18:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:506;a:8:{s:3:"sha";s:40:"a769ca624125ceb8c8ee18afbeecd264ff900ba4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-07 09:16:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:507;a:8:{s:3:"sha";s:40:"feb68961fd28ff1f38caeee7d00b3391794b6cf9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"[BefunDebug] Added Tools Tab";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-23 20:10:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:508;a:8:{s:3:"sha";s:40:"74fc14379b389f2f5055786fdeb92e121aa4f17b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"[BEfunExec] Added Statusbar";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 20:20:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:509;a:8:{s:3:"sha";s:40:"8bcc16f158e8b411432dc02cb449bc5277f7a962";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"[BefunExec] Added effective (from BefunHighlight) Width/Height";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 18:55:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:510;a:8:{s:3:"sha";s:40:"499acd09567bbcc3f622ce7cd8be0a201bf1b4b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"[BefunExec] Added Option to create FullRes Screenshot";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 17:11:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:511;a:8:{s:3:"sha";s:40:"903b7cd0edaf766ff788111da471fd21f518fca2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Fixed AV when loading big file";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 18:16:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:512;a:8:{s:3:"sha";s:40:"3a15bfa935a0f5fd2fc1afb4e8a6e67e569e4024";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"### Fixes ### + - Fixed MASSIVE MemoryLeak on low FPS + - Added Befunge version display";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 17:35:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:513;a:8:{s:3:"sha";s:40:"91971d51684dac9319b5d67a80c2fae8755fcb6a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added Timer to BefunExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 17:03:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:514;a:8:{s:3:"sha";s:40:"4489e65f0c262cdea5ce82cf8575cee498f936e7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Updated examples to use new SH selector";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-17 09:12:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:515;a:8:{s:3:"sha";s:40:"e20e199376b6fb15b0e5e459dddd4ef7a735df4d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"[BefunWrite] Fixed typo in PI_Calc.tf";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-16 12:36:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:516;a:8:{s:3:"sha";s:40:"699ddf0d8b64e2ee283f1e42e925fa5159c38407";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:86:"[BefunGen] **Major** code compression by vertically expanding Callframe I/O operations";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-10 17:10:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:517;a:8:{s:3:"sha";s:40:"7f69f47fdaa8f889f6a65616ce3c8105e4cf6c7a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"[BefunWrite] Updated Example "Square It"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-10 17:10:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:518;a:8:{s:3:"sha";s:40:"33666a194372b48ac6039854dda02d3b06a8a9cb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"[BefunExec & BefunGen] Added Todo's";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 20:57:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:519;a:8:{s:3:"sha";s:40:"8952ba449aa04d12663c01e045c35f1a69f6d38b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"[ALL] Changed Ouputpath to a common one";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:56:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:520;a:8:{s:3:"sha";s:40:"4a8e1509ed1cf096a51be97eadf7fcf7bba2bb17";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"[BefunExec] Added Option to hide "Input char"-message && append input on enter method";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:47:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:521;a:8:{s:3:"sha";s:40:"e4e7eff9eb692f4d571d8cff6583537d1b118206";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"[BefunWrite] Added new example: "Square It"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:35:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:522;a:8:{s:3:"sha";s:40:"b09d24e04e31f1c1f5a40636b648c8127a1012bf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefunGen] Fixed wrong Re-Entry adresses when using a RepeatUntil-Stmt";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:33:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:523;a:8:{s:3:"sha";s:40:"582e9051c76d78ef8f5023183a688aa9bd9990b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunExec] Fixed **massive** lag when turning decay off";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:33:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:524;a:8:{s:3:"sha";s:40:"9f254abfa4e0319183d3d711944f6dde85f1947a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:105:"[BefunGen] Fixed possible unexpected behaviour in Stmt_Switch (and it confused my syntax highlighter ...)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 17:50:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:525;a:8:{s:3:"sha";s:40:"6e2fab6ebed17cd0a60dafc09d99e42351ae2975";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunGen] Optimized Stmt_Out_CharArr for short literals";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:58:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:526;a:8:{s:3:"sha";s:40:"d8fc4c5f852566a326378599996cf34dcf3e32ec";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:120:"[BefunWrite] Fixed calling Interpreter from different working directory +[BefunGen] Added watermark to generated programs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:31:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:527;a:8:{s:3:"sha";s:40:"57745c0f8c5be764c79289189f5012e1294ca7d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:141:"[BefunWrite] Fixes: + +[BefunWrite] Fixed Typos +[BefunWrite] Fixed Tail setting not working +[BefunWrite] Fixed Syntaxhighlighting not tri-state";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:30:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:528;a:8:{s:3:"sha";s:40:"cac900aa231f23e54e0a10dba21afce6701d653a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"Changed Assemblyname of BefunDebug - Fixed old refernces of BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:28:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:529;a:8:{s:3:"sha";s:40:"441052d4e4bb75bb8498ebce9d7ca0266d8f37d9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefunExec] Changed Stepcounter to ulong (should never overflow again)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:27:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:530;a:8:{s:3:"sha";s:40:"87203804ef80b75d6fc5710789588a871313ec5a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Removed unused projects and files";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 01:17:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:531;a:8:{s:3:"sha";s:40:"930640b18d8a3eba8dfe3a1587deeb16d69827b5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Commited missing changrs from yesterday";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-05 09:01:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:532;a:8:{s:3:"sha";s:40:"95e07368001038270376bc055f282ee0ee873dba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"[BefunExec] Added LQ SH_EXTENDED ( who would use that ?? )";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 18:48:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:533;a:8:{s:3:"sha";s:40:"15be09d8529e9ec91f96d70e1259c64b53c65f54";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"[BefunGen] changed NumberRep-internals from int32 to int64 (long)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 18:08:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:534;a:8:{s:3:"sha";s:40:"1b53aff2d9a67d81f4b970a8084244b9a39b2642";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunExec] changed internals from int32 to int64 (long)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 17:18:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:535;a:8:{s:3:"sha";s:40:"3bf28fb7c3d70f00f50e1ed9b5893ae486bae8d2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"[BefunExec] Added reload from file command";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 16:21:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:536;a:8:{s:3:"sha";s:40:"d7185a570af14524b1bcc65c717e4611b377f903";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunExec] automatically use SH_EXTENDED on small progs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 15:33:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:537;a:8:{s:3:"sha";s:40:"9de8755e7d6a683857fe668ce95684ca6fcf61fc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"[BefunExec] Changed namespaces & assembly names to BefunExec (from BefungExec)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 15:20:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:538;a:8:{s:3:"sha";s:40:"ce88746523756282328ef4302c5cda5dee0fe87c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"[BefunExec] Added Todo's";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-04 06:25:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:539;a:8:{s:3:"sha";s:40:"ac9d2f13d9bdd553f5d88c64551f6ad6c7e5cdd1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"[BefunExec] Improved BefunHighlight performance & added SH update";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 16:07:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:540;a:8:{s:3:"sha";s:40:"94d95a0b1fead591dd6d681e68c0377c41956746";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"[BefunExec] Added BefunHighlight to BefunExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 16:01:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:541;a:8:{s:3:"sha";s:40:"d471c1711c1fe59d44ca71818ce15f08c00a08fe";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Changed License to MIT (BefunWrite + BefunExec)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-30 15:28:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:542;a:8:{s:3:"sha";s:40:"324363a6a00a45190d5961b4401c854c5f67c5a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Removed duplicate files from renaming BefunExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 22:29:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:543;a:8:{s:3:"sha";s:40:"2f8df8f65e9bb0bfb3f0977170dd7155f781734c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Finished basig BefunHighlighter code";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 22:28:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:544;a:8:{s:3:"sha";s:40:"6e65128ac8d69c525d8246a93d17ee2511e07724";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Finished core construct of BefunHighlight";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 18:09:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:545;a:8:{s:3:"sha";s:40:"01df5a50a356e8e7a6dad4d7b53ea470c594c605";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added new Project BefunHighlight";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 16:06:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:546;a:8:{s:3:"sha";s:40:"dec852f031d76b708873ace467d8fe1c7c4505fa";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"Renamed BefungExex to BefunExec fo a matter of consistency";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 16:06:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:547;a:8:{s:3:"sha";s:40:"f4fb7dde1fb6c541d4a833299e1b682f973f805b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"[BefunExec] Added GIF Export Functionality";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 11:47:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:548;a:8:{s:3:"sha";s:40:"cf90757d8eb2084d929f0a035324f34db00cea1c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"[BefunWrite] Bugfix: Fixed crash when opending AboutWindow";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 12:48:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:549;a:8:{s:3:"sha";s:40:"7c1cbd0d10ebc3d53b70f29f3c4c326a870b1f6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:79:"[BefungExec] Bugfix: Fixed Wrong (LQ) Rendering with a lot of identical symbols";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 12:42:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:550;a:8:{s:3:"sha";s:40:"1a0f2c128a4327f33b2f1e1a38cfc6973e48d97a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"[BefunWrite] Added new Example: GOL";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 12:35:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:551;a:8:{s:3:"sha";s:40:"bfd65da0aae7f83af7971861c9e2ad533e9be932";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Set Grammarbug ("4-4") to "WON'T FIX"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 11:49:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:552;a:8:{s:3:"sha";s:40:"363688c8a03a9f6aea046b45be53328bee54afb7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"[BefunDebug] Added field for NumberRep Size";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-11 19:31:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:553;a:8:{s:3:"sha";s:40:"554a70bd1f0238e666cc50c7216a4f1304692142";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"[BefunExec] Fixed Dup Operator on empty stack (now results in [0|0])";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-11 13:52:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:554;a:8:{s:3:"sha";s:40:"02a9db581bbb10d5c46eacd32b7b87f5fad1ddd0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:5:"+TODO";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:06:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:555;a:8:{s:3:"sha";s:40:"3d5381148304e067baeac24d5a6b1f0133efd357";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"[BefunWrite] Added Output :)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 13:08:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:556;a:8:{s:3:"sha";s:40:"b35781cdffa1cfbd62fb16ad8995d1b14b8cec43";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"[BefunWrite] Fixed RunConfigurations (chars not saved correctly)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 11:29:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:557;a:8:{s:3:"sha";s:40:"a1439ac622b23ecec686beaf434ce0dd01e1883d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Updated Examples with new shorthand VarDecl";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 16:16:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:558;a:8:{s:3:"sha";s:40:"bb2b6701607f90ab7418b79304a967ed243f98c3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"[BefunGen] Added Shorthand VarDecl to Grammar and Parser";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 16:06:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:559;a:8:{s:3:"sha";s:40:"a72872dd771098251f2ffe16f548b09f6d77439a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Added checks for duplicate Identifier";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 16:05:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:560;a:8:{s:3:"sha";s:40:"59d742568e70f651d1ac3ecd46e158e995517211";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"Small things";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:39:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:561;a:8:{s:3:"sha";s:40:"a54aad8a08a0ac02d2077796b561ea7f203db84e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added new Example: Sieve of Eratosthenes";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:24:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:562;a:8:{s:3:"sha";s:40:"88b571a3b0f1c573d35c6eb35b0f8fed34efc9c1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"[Bugfix] Constants in Valuepointer not inlined";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:24:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:563;a:8:{s:3:"sha";s:40:"7f217fa830829bdf21a06766c9b19c1addb02334";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Added new Def-Constant "DISPLAY_SIZE"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:23:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:564;a:8:{s:3:"sha";s:40:"5222a62658499dc0eee1b80b63bf92e16fa73dd7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added 2 more Unit Tests (Outf, goto)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 13:39:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:565;a:8:{s:3:"sha";s:40:"d483e8ea894a4f96b0ab13f4a213c6ad1d966beb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefunGen] Added Optimization (Flatten and CleanUp StmtList Hierachie)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 13:30:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:566;a:8:{s:3:"sha";s:40:"743ca0823c731e91123a087598f771882d2137e3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Added new (Makro-)Command ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 12:41:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:567;a:8:{s:3:"sha";s:40:"8b130110c6c1415157f1a71abe545976464374d8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added more Examples";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:25:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:568;a:8:{s:3:"sha";s:40:"141994af268e9b9f3f63813f9e1ac1cc1f46f01b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"[BefunWrite] Added "Build All" Cmd";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:25:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:569;a:8:{s:3:"sha";s:40:"c0e21733a6b39eb6f1dcbc0eec8a75cdb0c1b138";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"[BefunWrite] Fixed SaveAs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:00:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:570;a:8:{s:3:"sha";s:40:"46039e2d42621aa268508b90c9232261e0593896";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Bugfixes and PICalc Example";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 21:29:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:571;a:8:{s:3:"sha";s:40:"b8897212d33db58af99fd8545c3a0c999c2ebb10";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added BefunWrite Examples";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 20:22:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:572;a:8:{s:3:"sha";s:40:"3dfeaa3afde9665ad7a89f4065bcdd683721edee";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"FIxed a few minor Bugs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 20:22:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:573;a:8:{s:3:"sha";s:40:"857ce1c8b74ab8e5e6d80635cf590c7fbc0a75a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"Added Explorer Integration (open File from commandline)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 19:42:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:574;a:8:{s:3:"sha";s:40:"b096b295d44dd1f52a929b25c179e8dab0b5ee20";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"[BefungExec & BefunWrite] Added Cursor Follow Mode";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 09:44:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:575;a:8:{s:3:"sha";s:40:"29d79d5a88052c220970b6d8e7b1c51a95fe4de9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"[OPTIMIZE] Optimized multiple MethodCalls in one line +--> use only one exit lane";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 08:35:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:576;a:8:{s:3:"sha";s:40:"43d54118c324eb1a8e0bb7122fa7792c58e0aafa";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added more UnitTests";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 08:21:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:577;a:8:{s:3:"sha";s:40:"4675d5a8673f3becf6bf48bdda6e4bea7e96be43";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"[BUGFIX] Fixed recursive Methodcalls like push(peek());";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 07:57:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:578;a:8:{s:3:"sha";s:40:"96594d36b34222e04b000f3f1e15c98f03a302ef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added fatal //TODO";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 14:00:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:579;a:8:{s:3:"sha";s:40:"933c54b61c39cda4a28e42e9e2c97c9d1fc9db17";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Fixed Reversed Switch Statement with long children";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 14:00:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:580;a:8:{s:3:"sha";s:40:"419c6e701fee92a0853ebeaafb407961497a5f02";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Various Bugfixes && UserExceptions";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 12:41:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:581;a:8:{s:3:"sha";s:40:"641cfd6c0056651d404f53509438f77ac385fbea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Simplified BefunWrite Example";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 12:40:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:582;a:8:{s:3:"sha";s:40:"bd3f74421da2c6875ccdd31368c0c39289333d4f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Fixed AV when zooming out in BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 12:40:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:583;a:8:{s:3:"sha";s:40:"bf4e3745b5186e4cd11a5f202d95b9381f82a75e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added RemoveUnusedMethods Optimization";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 10:45:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:584;a:8:{s:3:"sha";s:40:"b99647d0474a9fb5ddf7b602e4c1f7baef8720af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Added (Optimize Static Expressions)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 09:55:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:585;a:8:{s:3:"sha";s:40:"3376274f4d02acfc57034872bc0006a36897aa10";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added Check for RETURN Statement in Mainmethod";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 08:33:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:586;a:8:{s:3:"sha";s:40:"55c722e21147c78ce12c02f78052bbe75a2d850e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed Output not updating on Reset in BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 08:13:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:587;a:8:{s:3:"sha";s:40:"42d129a8d09f2f1042ab6d7913324a1ad735c65f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added Default_Display_Value to BefunGen and BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 08:08:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:588;a:8:{s:3:"sha";s:40:"810a0d03cacb2849f8bb930e0f53c386aa5bdc5d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Added Icons (BefunExec, BefunGen, BefunDebug, BefunWrite)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 13:12:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:589;a:8:{s:3:"sha";s:40:"9a5f57b7d8d1fc2b69005067a65cf3dce02ddcd0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Renamed BefunGenStudio to BefunDebug";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 13:04:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:590;a:8:{s:3:"sha";s:40:"259b5116050fa2d19fafded3a441237149c8aec3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Menu + About-Dialog to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 12:06:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:591;a:8:{s:3:"sha";s:40:"49bbdbd63eaf660926130381e28c937d7eb73509";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"Fixed no error when declaring a variable with a wrong-typed Literal";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 09:20:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:592;a:8:{s:3:"sha";s:40:"675cd3a06dea85a409090ac8cbdc06dcfadeb704";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added MouseWheel Zooming";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-21 18:29:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:593;a:8:{s:3:"sha";s:40:"99da466b833bb7acbfe85db9439fcf690189aaa8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Fixed (BR->TL) Zooming";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-21 15:46:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:594;a:8:{s:3:"sha";s:40:"56937902317d04de8063641141e354de39dfbc45";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added About Screen to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-21 14:59:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:595;a:8:{s:3:"sha";s:40:"85f65b9f7eca8b4453386a3fe4b525aa3dc3b3c9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Reset DemoProg to previous version";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-20 12:19:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:596;a:8:{s:3:"sha";s:40:"ab9c5f58998a02fd797d94da21a88b7ac677c174";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"Added Input Queque && Fixed KeyEvents when glProgView not focused";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-20 12:16:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:597;a:8:{s:3:"sha";s:40:"0b01bff202b7f60589fd78418050de082497fd6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Fields for In/Output to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-20 11:19:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:598;a:8:{s:3:"sha";s:40:"1d8a3ef675dabd43dd26368077b7ea7600a2e188";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"Fixed New Save not correctly registering sourcecodefile";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-19 16:09:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:599;a:8:{s:3:"sha";s:40:"488b454994b51f7b9724eaf6d216cd33016849b2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Fixed CharSpinner Events not correctly registered";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-19 14:11:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:600;a:8:{s:3:"sha";s:40:"fccef901db8c5a41b4bca03e3e7122081f05b2ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added Run to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 14:14:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:601;a:8:{s:3:"sha";s:40:"203053f85abb5d09b6c10a798519acc166128549";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Improved ToolbarButtonTheme";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 11:27:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:602;a:8:{s:3:"sha";s:40:"fa3c5a34f2a5015b0ea9f6c1349d1831684f00ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Building to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 10:27:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:603;a:8:{s:3:"sha";s:40:"b8979f3f7354b6e46f18eb7ae8e48d0914a0a66e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"Removed FailMessage from TextFungeParser (=> now throws Exceptions)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 10:18:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:604;a:8:{s:3:"sha";s:40:"ed604335a6e0207e5da21a92ff94fa431e3f6faf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Fixed BefunGenTests with new CodeGenOptions Handling";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 10:18:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:605;a:8:{s:3:"sha";s:40:"5fe8b679b382083cd2b4ec180c187f9e8192838b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added StepCounter to BefunExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 09:35:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:606;a:8:{s:3:"sha";s:40:"af8690d94cf6f4b67f137f39156309c4f54b6a2c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added ErrorList to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 20:32:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:607;a:8:{s:3:"sha";s:40:"33b3f098b589906cbbb16bdbe4ab499b92b84fc5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added ProgrammExplorer to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 20:21:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:608;a:8:{s:3:"sha";s:40:"b25ae763775729272d0782142d188146cde5ad58";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added Display of Error Line in BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 13:54:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:609;a:8:{s:3:"sha";s:40:"9e1bb772ad3de49b4b8f8d484ceff5f20d15d2f4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added RunConfiguration Dialog";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 12:21:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:610;a:8:{s:3:"sha";s:40:"4901bc8b8b42e8dadf1b45118201f90b04ef6d40";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added greyable ToolbarButtons";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 11:57:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:611;a:8:{s:3:"sha";s:40:"84d4f89dad290eddefaf080e7008cec24e819998";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Cleaned up GUI & WPF Commands";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 09:17:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:612;a:8:{s:3:"sha";s:40:"1e202b75f6581b9495464b85e586eca0767bedbf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Added Loading/Saving/Creating to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 16:58:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:613;a:8:{s:3:"sha";s:40:"2e3c77e2615a7e30fb22fc1dccaf97b8077b711b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Finished Mockup of BefunWrite (Menu/Dock/Edit ...)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 12:54:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:614;a:8:{s:3:"sha";s:40:"5065818e7222854389e43bfa577ff2c9ab46b618";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:86:"Added new Project: BefunWrite + - Added AvalonEdit Control + - Added AvalonDockControl";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 10:39:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:615;a:8:{s:3:"sha";s:40:"7e3b9fda04cf7d00314b7f3b4ea396dec4efc239";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Made CodeGenOptions to a non-static class";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 09:35:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:616;a:8:{s:3:"sha";s:40:"841f9e05a6157a86ca9af61386b572e0506b3822";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added SudoGen example";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 09:26:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:617;a:8:{s:3:"sha";s:40:"f4c118ed0348cab27f3dc2f478685035bf34b2b6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Maze-Solver to example";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-29 16:37:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:618;a:8:{s:3:"sha";s:40:"8b4f82be1e8583ba279ca51d69543c757eb51376";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added pretty formatted ClassDiagram";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 23:33:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:619;a:8:{s:3:"sha";s:40:"fd1de7d27652d06d0540f0a85c307d7b91148a1d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added CodeGen to (4x)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 22:57:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:620;a:8:{s:3:"sha";s:40:"529057e60c27e7d03001abe1466c61b69efe90ab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 18:36:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:621;a:8:{s:3:"sha";s:40:"b8ac48f4554388ce4961a0715fa481a8a318b182";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:77:"Added Class for Statement_Switch / More Tests / Fixed Bug in GOTO_Lbl Finding";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-28 12:16:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:622;a:8:{s:3:"sha";s:40:"ca01b1f683385f361d3ecf8d3727532fcf5b1889";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Codegen to Base-4 Random";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 18:50:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:623;a:8:{s:3:"sha";s:40:"50ccab5db8c239b76efa3a59d444b4d5a5649aa9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Implemented Augmented Assignments (x8)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 17:41:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:624;a:8:{s:3:"sha";s:40:"65d7205b0ced7a5b39ad3bcaadf7ecc829be1979";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:157:"Added more LanguageFeatures (for now only to grammar) + - switch + - Post/Prefix Expressions + - Base-4 Random + - Augmented Assignments (+= , -= , %= , ...)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 16:58:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:625;a:8:{s:3:"sha";s:40:"5c5bafe3ff58c85ca9802f112c346f13891a0322";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"Performance ... BAAM +-> Hashing Tags in Codepiece -> >> 7x Codegen speed <<";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-27 11:40:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:626;a:8:{s:3:"sha";s:40:"a46aa64816af785a530471f145139f616e962172";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Finalized BefungExec + - Reverted Demoprog + - Fixed Menu->Run";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 19:48:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:627;a:8:{s:3:"sha";s:40:"fcf5f650bc5fbc12b20948f5b070559f10ccbcd4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:">>Massive<< Performance Boost in BefungExec ( 8FPS -> 87FPS )";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 17:33:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:628;a:8:{s:3:"sha";s:40:"021f1af93507651c8d402859064ff2f0500dd3f5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Fixed Pause-Unpause AV";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 15:50:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:629;a:8:{s:3:"sha";s:40:"ec4aa4db696fe80a0f0e2a8d7fb003c21e1dd842";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"Added a load of features to BefungExec (Control via WinForms Controls)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 15:31:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:630;a:8:{s:3:"sha";s:40:"35628fee8f78c582949d34efc85633f74a908098";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Ported BefungExec to a GLControl-based WinForms App";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-26 12:23:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:631;a:8:{s:3:"sha";s:40:"90779a5ffd0f5750a03068c9df914a2b5d0aef9b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Reverted a few temporary settings";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 13:25:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:632;a:8:{s:3:"sha";s:40:"deda399ee99cdb66b71df2105f446e139effe8ba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"ლ,ᔑ•ﺪ͟͠•ᔐ.ლ IT'S HAPENNING - !! MAZE_GEN !!";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 13:12:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:633;a:8:{s:3:"sha";s:40:"f4c52c254a08aeab4bdb8a6a4bdbc18f89596aa3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:116:"Multiple small things: +Fixed DisplaySize=0 +Using Optimized CharLiteralOut-Code +Added Tests for For-Loop (and others)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 10:51:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:634;a:8:{s:3:"sha";s:40:"b1ae1f83ff41dc85ac36b58ba165a3c084d5dcca";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 10:29:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:635;a:8:{s:3:"sha";s:40:"105df3dfda9f6a559625e305ee0d68494c473f3a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added Codegen to ModuloRangeLimiter()";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-21 09:10:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:636;a:8:{s:3:"sha";s:40:"4585bd20714543516930737fcd061467378c8fd8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added CodeGen for Display (to the Prog Header)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 17:07:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:637;a:8:{s:3:"sha";s:40:"4fc23e09bedc53ac69bb129241d0b294210ab550";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Cleaned up Codegen for - Added possibility for Display";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 15:05:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:638;a:8:{s:3:"sha";s:40:"a02d81c3324900fd8f4e04b3d166a41f80deb90c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Constants";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 12:44:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:639;a:8:{s:3:"sha";s:40:"2171d02b320b87981ba2b676a90dcd5c99915f8f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Global Variables";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 12:04:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:640;a:8:{s:3:"sha";s:40:"59f23dfc2c5574a6c5c9cfcd396f9610892b9ae1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Added For-Loop";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-20 11:33:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:641;a:8:{s:3:"sha";s:40:"c1ab259d11b1fd9379a0e9ca3c58be402cbf52d7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:79:"Implemented new Grammar Features into GrammarTableMap +//TODO Implement Features";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 18:46:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:642;a:8:{s:3:"sha";s:40:"d16a1dcd111ea6747e1af66a7641bd6d115e91b7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"Updated Plain-Grammar-File (Display, Underscore_Identifier, For-Loop)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 14:18:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:643;a:8:{s:3:"sha";s:40:"931b9d35a20038c5ad35db1dbdde3bd2e3a2895c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added CodeGen to and ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 10:39:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:644;a:8:{s:3:"sha";s:40:"fffa5a50d91b31e9b05365244d13a4cbb6cb878e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added ArrayHandling in Return Values";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 10:18:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:645;a:8:{s:3:"sha";s:40:"d455d29d933cfe94a586e81458a819de932c1e8e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Bugfixes - here and there and everywhere";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 09:25:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:646;a:8:{s:3:"sha";s:40:"4b5f21a60fc5eea51c51e8f90251195bb3f4b4ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added and organized UnitTests";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-19 08:11:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:647;a:8:{s:3:"sha";s:40:"daf1636ed3514bce0c0ec6ec0b5288dde3705880";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Fixed many Bugs related to MethodCalls ( like ... many )";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-18 14:52:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:648;a:8:{s:3:"sha";s:40:"7d9388935ba4bcf93caf9e09f92b7ee768698376";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed MethodCall - CornerCases in ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-18 13:40:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:649;a:8:{s:3:"sha";s:40:"4378c5775cc948488f9c989d8c4049ff838d011a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:103:"ᕙ༼ຈل͜ຈ༽ᕗ Method Calls are working - The Lanes are under heavy load ᕙ༼ຈل͜ຈ༽ᕗ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-18 12:33:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:650;a:8:{s:3:"sha";s:40:"8c7c18541d073f6c59806bb11e00aab2c0142261";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"-.- Missed a "few" files in the last commit";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 20:24:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:651;a:8:{s:3:"sha";s:40:"dedf337936e2ef6b657b35e9606826f9cb99f422";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:303:"Many things: +Added better Codegen for Default Array Initializer +Added DefaultValues for TempField nad TempResultField +Added Codegen Button to BGStudio +Added ArrayTooSmall Test +Fixed visual Things on BGStudio Form +Fixed Initial LeftLane Entry Point (was one off) +Updated exapmle_00 (Commented goto's out)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 20:23:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:652;a:8:{s:3:"sha";s:40:"19ceceeb96d2fffc5cf7c4b301eff1ed89c92ddc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:92:"Removed unused Path from Body -> (and Added TempField for Results)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 15:13:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:653;a:8:{s:3:"sha";s:40:"80442895654a6fcd5e767c7dab604f80d7081738";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added Space for Temp-Buffering of Result-Values";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 14:35:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:654;a:8:{s:3:"sha";s:40:"15c116c7924d1da9d96fd5e6c040d064e384baaf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added CodeGen for Lanes to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 13:32:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:655;a:8:{s:3:"sha";s:40:"cef8b3ad379ec013c53f85b3fe5373e0aad8d559";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Cleaned up Exceptions --> One File To Rule Them All";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 09:57:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:656;a:8:{s:3:"sha";s:40:"b63265e8e8435458a4c0496d195ab063467d540c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"Added Test if all Paths lead to a or ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-17 08:31:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:657;a:8:{s:3:"sha";s:40:"b2616d0bbcacd8ef41ea2f7f7f843dd1e9241a29";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:136:"Force CodeTags & MC-Tags: +Forces BefungeCommandTags to be of Type CodeTag +Added Horizontal MC-Tag Extension to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-16 17:12:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:658;a:8:{s:3:"sha";s:40:"b41a9c2ed96f279ac1371908eee86d6cb84a50b3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Test for NumberCodeGeneration";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 21:53:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:659;a:8:{s:3:"sha";s:40:"2a7d02782446cbb1a7cd5ff21d7b50e43d5be666";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Automatic Testing to BefunGenTest";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 21:17:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:660;a:8:{s:3:"sha";s:40:"b76111a24ce184913c2438d12d659db2ab8deb3f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Fixed Bug in ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 21:16:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:661;a:8:{s:3:"sha";s:40:"add26873cd1e8ba94eebe59bb67884648d3280c8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"Drastically improved efficiency of NumberCodeFactory_Stringify";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 18:13:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:662;a:8:{s:3:"sha";s:40:"b76aa3526c6fe41eabbe7068ecced9157b7389eb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added missing files to index";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 14:32:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:663;a:8:{s:3:"sha";s:40:"162c011cf649d89048ee247019386cd4d548cc11";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:148:"Redone NumberCodes: +Added NumberCodeFactory_Boolean +Added NumberCodeFactory_Stringify +Fixed NumberCodeFactory_Stringmode +Redone NumberCode Benchmark";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-14 14:26:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:664;a:8:{s:3:"sha";s:40:"a4df9ed130beb0615fdf10e0ae9f49a5e0a2bef5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:134:"Started Code for MethodCalls : +Added unique CodePointAddress and MethodAdress +Added Code for ENtry Exit Poits in StatementListElements";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 20:41:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:665;a:8:{s:3:"sha";s:40:"b78c09f304c3fd34f2626c39eac10307a3826de9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Started tagging & Added Tags to CodePiece.toString()";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 15:06:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:666;a:8:{s:3:"sha";s:40:"e6c6f7136008e6f2d35a3c5f5829235de7db7a9d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"Added Codegen to (for now only for testing - nothing real)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 14:23:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:667;a:8:{s:3:"sha";s:40:"1305113e565bfef020ea60c1640d1b07b43e7c16";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added more planning comments";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 12:36:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:668;a:8:{s:3:"sha";s:40:"a729dbc86ebdc3ff7056d0aabc35bc15fe17af1c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Cleaned up UnitTestProject";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 11:39:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:669;a:8:{s:3:"sha";s:40:"aeb2366a311e4ccd7a6b4a98db0855a47483d677";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Added Codegen to for Int_Array and Char_Array";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-13 11:31:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:670;a:8:{s:3:"sha";s:40:"6527dd3a61799d153a8b8f1f897bb96e60755a24";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"[BefungExec] Added ASCII Display";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 21:53:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:671;a:8:{s:3:"sha";s:40:"c97f7de628bbaf3604e8ca48a19a218f7267aaed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Finished for Arrays";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 21:49:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:672;a:8:{s:3:"sha";s:40:"a099dd857e43feadff31e3ac5d4f3aee844f9b80";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"[BefungExec] Recognize Fileparameter from Windows Explorer";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 18:12:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:673;a:8:{s:3:"sha";s:40:"a223d9264f3bb86fcf669780195dea13b4b06242";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:140:"Added special Array Treatment: +GenerateCode for with Arrays +GenerateCode for with Arrays (unfinished)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-12 14:41:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:674;a:8:{s:3:"sha";s:40:"249fdbb1e3d2d77c6635bebcaeab9adf55f875a7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"Fixed UTF-8";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 17:01:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:675;a:8:{s:3:"sha";s:40:"cbd030e7ad124c5d418e5dc5bece3e6c426bfe71";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"Using StatementList where possible +Adding (debug) union-BType";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 16:44:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:676;a:8:{s:3:"sha";s:40:"699c295fdb48dc6a15f8dd6602acc4fb06b95243";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Added MethodCallExtraction to more Constructs";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 14:23:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:677;a:8:{s:3:"sha";s:40:"280e84fd6712a277af6808a39678defd7afcd2f2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Simple MethodCallExtraction is Working";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 13:58:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:678;a:8:{s:3:"sha";s:40:"e6bf42f218ec9307fa5304aeddd85dca7265ad87";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"[BefungExec] Fixed AV on char/int input";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-04 11:48:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:679;a:8:{s:3:"sha";s:40:"92b21ff83481d8d4e36c7bdf90b18348abd97133";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added CodeGen for ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 17:33:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:680;a:8:{s:3:"sha";s:40:"5e78255e2e36abb9889400ae2f4c393c63b21e73";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Drastically simplifier ExtendedBoolCast";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 16:54:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:681;a:8:{s:3:"sha";s:40:"51a2b9ac95a84e5b80c539fa09340d17bd2359da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Fixed StatementList with empty statements";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 16:14:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:682;a:8:{s:3:"sha";s:40:"6907e0b44172a86b143a04d6bd42005828c6de0a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"Redid Codegen for (now more efficient - better maintenance)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 15:55:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:683;a:8:{s:3:"sha";s:40:"56a9fa5fde961a4f016d934a5b59bf3999c98e6c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Option to ExtendedBoolCasting";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 13:44:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:684;a:8:{s:3:"sha";s:40:"5e70895610e1783889a7dc92f91836f6095a46bb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Added NumberRep.Best (Always choose best Representation)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 13:15:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:685;a:8:{s:3:"sha";s:40:"ae03e8fcaa8af3ce8f102fafa81197b9448916b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"[BefungExec] Added better SyntaxHighlighting (Black-Font when breakpoint/cursor)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 11:07:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:686;a:8:{s:3:"sha";s:40:"2a3c173704daf944f603adf039d916ae0ebc2a60";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"[BefungExec] Fixed Selection and Breakpoints not offsetted when zoomed";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-03 10:45:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:687;a:8:{s:3:"sha";s:40:"75854cd2bcc8972ac37040474b08072eaf17c6bf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:97:"Added ELSIF Syntax to grammar (and while,repeat etc Now wnat a StmtList instead of a single Stmt)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 23:32:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:688;a:8:{s:3:"sha";s:40:"e2420040967659002f7524d56b36fe7292714585";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Control Character (\r \n etc etc)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 20:54:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:689;a:8:{s:3:"sha";s:40:"2efd88cd706c47e4ea4b99b58fbe72d3195364df";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Added CodeGenAdded CodeGen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 20:00:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:690;a:8:{s:3:"sha";s:40:"cfa548784e960ccf211558d993d2fb204e092ea1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Clear all Breakpoints command";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 15:13:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:691;a:8:{s:3:"sha";s:40:"70fc86c6a8dc56e7d0f1a442fa425b068bdda342";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added CodeGen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 15:13:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:692;a:8:{s:3:"sha";s:40:"e0d852ace9cbc339a2ed234dee9f9094709d5e56";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Fixed ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-02 15:13:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:693;a:8:{s:3:"sha";s:40:"05daf095644c3d03c30039b0860901ed236eec6c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:119:"Overhaul BefungExec + - More / better Ouput + - More CMD Params + - Debugmode + - NOP - Skipping + - Bug Fixing + - Resetting";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-01 18:17:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:694;a:8:{s:3:"sha";s:40:"e46f1edad47b53c8063ce04af3a932ff02d0ba4d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Updated Raster";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-01 15:14:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:695;a:8:{s:3:"sha";s:40:"c638c71d46ffb10a20f282c240b729a1d6c64de7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-01 15:12:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:696;a:8:{s:3:"sha";s:40:"639ba5ac27a6d7aea696dd27eaf6732ecdd58cd3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"Updated BefungExec (Hertz-Display, Syntax-Highlighting, Parameter ...)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-01 12:38:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:697;a:8:{s:3:"sha";s:40:"f71c9fe9c6ec78f9507166ee62b8b7620ed103eb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:91:"Updated BefungExec Raster +Fixed Compare-Expressions +Added Codegen ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-28 20:22:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:698;a:8:{s:3:"sha";s:40:"a9bac077de67412dc2c1ba7cd03c59789c664bf6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"Codegen for and tested and working";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 20:43:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:699;a:8:{s:3:"sha";s:40:"0232dd20984b41d716751aa2a2e8699c8723ca38";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Fixes and Changes ... here and there";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 14:13:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:700;a:8:{s:3:"sha";s:40:"619dfb12e4094388a2cbfcdc43c5555cba42f0bc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"Improved Array Assignment Performance, Fixed Inc/Dec leaving stack non-empty";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 12:58:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:701;a:8:{s:3:"sha";s:40:"fb7811f2cc49a9997d97ab201aa759b3ba417dd7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Added Codegen to and ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 12:14:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:702;a:8:{s:3:"sha";s:40:"d9d268c4a11b71db05ca77f403a85a6c0f34be04";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 12:02:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:703;a:8:{s:3:"sha";s:40:"882c4ff464c13c41dc33446c00a35d668c66f708";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:83:"Added Codegen to and ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 10:59:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:704;a:8:{s:3:"sha";s:40:"8c49ffd80da9f01b8d51455169d5ea159666182b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 10:46:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:705;a:8:{s:3:"sha";s:40:"e9898ba41d5a01ba0297e96ff8d01d1e57d41cb2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"Added Codegen to and ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 09:26:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:706;a:8:{s:3:"sha";s:40:"0f303d99af439b74fee654b2b47726ccb356241e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 09:17:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:707;a:8:{s:3:"sha";s:40:"86169db8e40584e3e6169636655e441072b197b5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added reverse Codegen to all Expressions";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 09:02:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:708;a:8:{s:3:"sha";s:40:"9b6d903a08df0e8998afa3f9e7481597b6d1971b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added Codegen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 07:41:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:709;a:8:{s:3:"sha";s:40:"9c4adf93dc82ddf6ad93f58b3eee3ee3d218df47";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Changed getting of VarDeclPos to Field of VarDeclaration";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-26 17:20:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:710;a:8:{s:3:"sha";s:40:"36464b4b5302f2c9a46f368fa58b23120ff9d2b0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Updated ToDos and added "future plans"";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-26 14:37:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:711;a:8:{s:3:"sha";s:40:"053c2982a4b014f92f2babb3471eaddc565a96a3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:148:"Finished CodeGen vor VarDeclaration +Added negative Dec-Literals to Grammar +Added Vertical Compression +Fixed numerous Bugs with Reverse PC-Generation";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-25 19:53:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:712;a:8:{s:3:"sha";s:40:"650935a0fd1f84d4c782d888bdb209837c970233";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Added Codegen for ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-25 13:48:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:713;a:8:{s:3:"sha";s:40:"a2239274fb3e08227dffbcb96827e4373d4dcc2a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Codegen for ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-25 10:26:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:714;a:8:{s:3:"sha";s:40:"39cf3f82a6990c202ec37780bee3eb1c21c29973";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added Optimization: ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 14:43:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:715;a:8:{s:3:"sha";s:40:"8f982de0d6842e75de34b8223a7d8f3fe96bc6c4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added distinction between empty and unused commands";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 13:48:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:716;a:8:{s:3:"sha";s:40:"91c3b59c42e62f95dcac5991518931fbc8b1c555";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Codepiece-Tagging to BefunGen";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 10:04:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:717;a:8:{s:3:"sha";s:40:"fbd76816f04994386a7c56b94786f275e225bc31";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Fixed Decay && Added Zoom-Param";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-24 09:00:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:718;a:8:{s:3:"sha";s:40:"88dd360b925aa960547a0bcc999172a70bdef4de";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added Execution of Generated prog to BefunGenStudio";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-23 17:14:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:719;a:8:{s:3:"sha";s:40:"b058c7257d4ff4dcee78c6d422a4086d76c54eb6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Added Zooming and Breakpoints to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-23 16:42:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:720;a:8:{s:3:"sha";s:40:"4b34b52e800e55af60ba6ff17fc54db3ee042d2d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Commit Added Demo to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-23 00:07:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:721;a:8:{s:3:"sha";s:40:"b8b70cfe76e9a6759cae3db29d9c0823c351bae5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added integer input to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-22 15:21:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:722;a:8:{s:3:"sha";s:40:"3498a7d04dfec2775eb8cc12fdb856aea4d08184";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added Stack Display to BefungExec";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-22 14:12:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:723;a:8:{s:3:"sha";s:40:"f69946206758c834ca4e69e5243bf26d1b19c67d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added Fast (and easy) Befunge Interpreter (OGL)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-21 23:22:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:724;a:8:{s:3:"sha";s:40:"c8a908f78daaf426c2b97ed87d9202203b8445f5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"More Todos ... this could be a jClipCorn-Commit ^^";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-20 18:29:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:725;a:8:{s:3:"sha";s:40:"9dff0d5d83c6b0c6224fd9892e4514288b54f60a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"More Debugging, Updated Doku, Method rumpfs, Todos, and other useless things";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-20 17:39:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:726;a:8:{s:3:"sha";s:40:"35195a1a515810d568f99a0bfa0d452038f4464d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:163:"Added codegen to: (6x) +, +, +, +, +, +";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-19 21:15:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:727;a:8:{s:3:"sha";s:40:"2a7caa8b0ebe39a7056207189b0c12ea8050d3ff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:106:"Codegen for +Better debug method for evaluating expressions";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-18 19:41:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:728;a:8:{s:3:"sha";s:40:"ae9300df86ed5bb1c01518e64b7a784eb47329a7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:107:"Added Literal-Gen Method: Factorization +Fixed Escape Bug on int == '"' +Fixed negatve int Literals in Base-9";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-17 18:15:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:729;a:8:{s:3:"sha";s:40:"015e2a2b348202b95012a78a4af64f23bb4f675d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Add more optimization";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-17 15:22:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:730;a:8:{s:3:"sha";s:40:"d00223ad9581126a0a7a9c119275202296f2f959";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added CodeGen to (+ other Bugfixes)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-17 14:53:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:731;a:8:{s:3:"sha";s:40:"d60fce3b1680e7b4dbb6011f42b32f63d82074e3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:115:"Added a little bit of CodeGen to +Added CodeGenOptions Class +Added option to display Literals in Base-9";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 21:21:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:732;a:8:{s:3:"sha";s:40:"723ae02efa2f01292218afcde0da58960570223c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added CodeGen to ";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 16:54:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:733;a:8:{s:3:"sha";s:40:"22c56671a866bbac71bced87c51581ef1877a10c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Added Label linking +Added Case-Insensitivity";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 14:53:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:734;a:8:{s:3:"sha";s:40:"ea0bddf5e15a155892a71bbc535d7a02c7796fc4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:82:"Added new Elements to AST (Call, Boolsche Op's ..) +Fixed Call-Statement in Grammar";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 14:29:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:735;a:8:{s:3:"sha";s:40:"c3cb50a02c6f2e9a7ca41c5c383743ea849c17ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Updated Grammar and Skeleton";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-13 17:13:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:736;a:8:{s:3:"sha";s:40:"335513724983959fa6d7cd1f0d91116f84e83638";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Removed ParseTreeCSharp Project";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-13 16:02:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:737;a:8:{s:3:"sha";s:40:"96360cf6c2d24161e24a32165546b72942cd9a18";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Fixed Grammar not loading";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 19:41:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:738;a:8:{s:3:"sha";s:40:"f34a4e7a7b40f6c7c9c28546b8b5bfba1f6d097a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Cleaning and Fixing ... too lazy too write commits";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 19:11:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:739;a:8:{s:3:"sha";s:40:"ba5d697c410a44bfd85bc40fcd533060e97b18e2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Fixed code highlighting and so ...";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 18:33:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:740;a:8:{s:3:"sha";s:40:"ef4d01bb119896d509b69053f6bff9e90bfa1d39";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Moved parsing to second thread";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-12 14:32:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:741;a:8:{s:3:"sha";s:40:"c3a9e10aa8731d6e9d4ff8cf7e461d30b69268ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"Updated example to be more logical and to include unfinished work";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 21:25:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:742;a:8:{s:3:"sha";s:40:"b75a9face6af6a689debbc85d166a0e6b5abc14b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:71:"Finished Linking (Variables, Methods & Expressions) +More AST-Validating";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 19:58:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:743;a:8:{s:3:"sha";s:40:"4ec11059c555fb7351a6fe8ca24928f875f42612";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Started implementing ResultType linking";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 15:25:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:744;a:8:{s:3:"sha";s:40:"8af1146266031f8d6df84ecd9f2f677e757c310c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added position to Objects and Exceptions";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 13:09:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:745;a:8:{s:3:"sha";s:40:"716d97b33f327f79cfba6765f7c9a6bd7719e6a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Improved and fixed various things";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-11 11:48:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:746;a:8:{s:3:"sha";s:40:"c3c2c78701b18dae2c5d38ead06aa6512b6ca389";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Fixed AV when egt is not found";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 20:59:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:747;a:8:{s:3:"sha";s:40:"c4c69eabb2335d336061400abdc030121fc77810";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added linking of Variables";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 20:00:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:748;a:8:{s:3:"sha";s:40:"2731ad161f05f5dc72b7f8d591fe611dc69c9bb9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added Exceptions, BefungeCommandHelper, DemoParser etc";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 16:21:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:749;a:8:{s:3:"sha";s:40:"9674e40ed7bb0f6df1fc63a7eccb33739d7644f2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Updated Highlight file";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 14:14:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:750;a:8:{s:3:"sha";s:40:"5392594e48dfd6fadc41747da8d6fcbc7358b065";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Fixed Statements not showing correctly in AST-Debug";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 10:25:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:751;a:8:{s:3:"sha";s:40:"a8db2f27557339f98585ab5188889e83c6c2a86f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:84:"Git&Code Clean Up + +Moved Skeleton to extra File +Added egt to repo +Updated example_00";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-10 09:02:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:752;a:8:{s:3:"sha";s:40:"b45b2bb8e27aa18d20ef6a7605cdd202976b620e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Fixed CodePiece on neg. Values +Added Unit Tests";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-09 17:32:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:753;a:8:{s:3:"sha";s:40:"a64b8da883aa1265a2cb457e42ab64a6402a3b80";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Cleaned up code";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-09 16:47:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:754;a:8:{s:3:"sha";s:40:"f86746ce3b74b50709f0c815117a482135840b6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Moved Parser to BefunGen-Project +Added CodePiece-Class";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-09 16:46:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:755;a:8:{s:3:"sha";s:40:"d6edfdc9700987fd3ef9ce0a0f1c5e767f8d0bd9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Added Output for AST (ASCII-Tree Representation)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 23:49:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:756;a:8:{s:3:"sha";s:40:"0a9b24b5cf1b952f15aa427ea1eb93b743e6f888";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added better Components to ParseTreeC#";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 22:44:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:757;a:8:{s:3:"sha";s:40:"ada76d124f05f6977e0d6375155f55ead1537b17";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Finished AST +Fixed a few grammar errors";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 21:13:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:758;a:8:{s:3:"sha";s:40:"bc873ab9c6db2ecbd000d7ae5d2beedf8b996b2d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added Literals to AST";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 13:24:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:759;a:8:{s:3:"sha";s:40:"5ba80d5030919baaeefa300ac5eb339dc69e9b9a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added Skeleton for AST-Generation";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 11:47:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:760;a:8:{s:3:"sha";s:40:"dc23a3090c25fa8081f92837bfaa989321b8aca2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added example program";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 11:47:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:761;a:8:{s:3:"sha";s:40:"ee234a9cc1895d7ead99c1053bad6313c3e6b4bb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Improved Tree-Display (Messages, Linenumbers etc)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 11:46:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:762;a:8:{s:3:"sha";s:40:"bd3e9d6325633366d0e6840c88e6bd9bf47bff6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Updated Grammar";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-07 11:46:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:763;a:8:{s:3:"sha";s:40:"8042f76a0590efbe45a6163135ed9cdd68f933e3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed unnecessary Linevreaks from Grammatik";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:14:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:764;a:8:{s:3:"sha";s:40:"bac4ce4b9bab801db7ed31fffa7382b4dc62f1be";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"Added Grammatic-Definition for Language "TextFunge" with GOLD";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:12:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:765;a:8:{s:3:"sha";s:40:"962198eff3fad64b72120871e83e22a88cf53132";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Updated *.gitignore";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:12:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:766;a:8:{s:3:"sha";s:40:"cd30ae867b6c0e387e1b677352d2311d7684ee9f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Stub for BefunGen Prog";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:11:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:767;a:8:{s:3:"sha";s:40:"775edc5d97d1cf4c040c2a27d574c5312e997752";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added GOLD-Parser Generator (for parsing TextFunge)";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:11:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:768;a:8:{s:3:"sha";s:40:"c69bbb57cc3e2cca87eb96f218b5a153a6f40ed9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added Tree-Display Project for ParserGenerator Gold";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:11:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:769;a:8:{s:3:"sha";s:40:"35ab135903b6bb4f0fd800d3711e6980bb6f35b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Updated *.gitignore";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:09:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:770;a:8:{s:3:"sha";s:40:"b9f77068ba425216e7533fb48533c03fb0f386d2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Updated Readme";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 20:01:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:771;a:8:{s:3:"sha";s:40:"fe43883e48c827a6cd4b6a9b0308b5c68a859b06";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"name";s:10:"BefunUtils";s:9:"full_name";s:20:"Mikescher/BefunUtils";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunUtils";s:8:"language";N;s:8:"creation";r:166;s:4:"size";i:2684;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunUtils/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 19:54:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:772;a:8:{s:3:"sha";s:40:"0a245a8d3c7996104eb5cd74d5e1f3d860dbd376";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Create README.md";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 13:15:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:773;a:8:{s:3:"sha";s:40:"a48df0863890f5cdeb316a9b9ef3f1615fac6bdc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Updated .gitignore";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:10:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:774;a:8:{s:3:"sha";s:40:"9e9eea710a3d74029434abbce14b8a78c64bfa2d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Updated examples to use new SH selector";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-17 09:12:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:775;a:8:{s:3:"sha";s:40:"fa57b56d2fdce16aac6a22b432d64f06ecc4521b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"[BefunWrite] Fixed typo in PI_Calc.tf";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-16 12:36:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:776;a:8:{s:3:"sha";s:40:"45b75aa75fc2965ec4eba93b2bf75dd2fadd0f85";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"[BefunWrite] Updated Example "Square It"";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-10 17:10:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:777;a:8:{s:3:"sha";s:40:"e48ed957cfacfea2efb8ed1ea37cfdc09322f041";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"[ALL] Changed Ouputpath to a common one";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:56:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:778;a:8:{s:3:"sha";s:40:"998c9bc91427a5c4c71030076023106d51f7708f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"[BefunWrite] Added new example: "Square It"";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 19:35:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:779;a:8:{s:3:"sha";s:40:"8f496d2c9438de4e468ce7bde035397a49412307";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:120:"[BefunWrite] Fixed calling Interpreter from different working directory +[BefunGen] Added watermark to generated programs";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:31:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:780;a:8:{s:3:"sha";s:40:"78097e479531dcfda8877686f41d8a2da7c51843";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:141:"[BefunWrite] Fixes: + +[BefunWrite] Fixed Typos +[BefunWrite] Fixed Tail setting not working +[BefunWrite] Fixed Syntaxhighlighting not tri-state";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:30:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:781;a:8:{s:3:"sha";s:40:"a6cf9228c11e6e8d5f7802bb54f4980458befd73";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:70:"Changed Assemblyname of BefunDebug - Fixed old refernces of BefungExec";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-09 16:28:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:782;a:8:{s:3:"sha";s:40:"6ab87dac631debc9babecf39aea3811056b3ef99";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Commited missing changrs from yesterday";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-05 09:01:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:783;a:8:{s:3:"sha";s:40:"525f14c201986d9d18bda7df82f178d27b8f9c33";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Changed License to MIT (BefunWrite + BefunExec)";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-30 15:28:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:784;a:8:{s:3:"sha";s:40:"9e20e51dbf6cda6e43a925d7852aa610e979d499";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Finished basig BefunHighlighter code";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 22:28:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:785;a:8:{s:3:"sha";s:40:"89761639dbe7aaa67c1f8a2c996cdb7a9191d303";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"Renamed BefungExex to BefunExec fo a matter of consistency";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 16:06:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:786;a:8:{s:3:"sha";s:40:"b26ea18090a34505d0f72159a275d32b5132b955";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"[BefunWrite] Bugfix: Fixed crash when opending AboutWindow";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 12:48:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:787;a:8:{s:3:"sha";s:40:"50bc3d26ea3ced92a10c2565e9b0f99c32ee26ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"[BefunWrite] Added new Example: GOL";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 12:35:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:788;a:8:{s:3:"sha";s:40:"00cc1383423f7001dfc9b54051e13e061c8491e1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"[BefunWrite] Added Output :)";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 13:08:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:789;a:8:{s:3:"sha";s:40:"27dbf4b2e2eb321c4d610bc063dedd5086727b05";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"[BefunWrite] Fixed RunConfigurations (chars not saved correctly)";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 11:29:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:790;a:8:{s:3:"sha";s:40:"a7fc1a9b30f23fafa969e47ea524dec73a6db2da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Updated Examples with new shorthand VarDecl";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 16:16:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:791;a:8:{s:3:"sha";s:40:"0bcf6b71b76ea53f5f470299c6d92b5057e8c39a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added new Example: Sieve of Eratosthenes";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:24:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:792;a:8:{s:3:"sha";s:40:"11e291688a583ff9c131e84fd65a791e8571c312";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"[Bugfix] Constants in Valuepointer not inlined";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 14:24:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:793;a:8:{s:3:"sha";s:40:"1e170a76def9aaac59eceadddaa0fdea0435b2f0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"[BefunGen] Added new (Makro-)Command ";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 12:41:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:794;a:8:{s:3:"sha";s:40:"3f6783891e9b977c6d7c5b7aaf30ef913ddfa0f0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added more Examples";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:25:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:795;a:8:{s:3:"sha";s:40:"ee6a2e774c524cabe1b0af7d331d80e6dbc2c85c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"[BefunWrite] Added "Build All" Cmd";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:25:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:796;a:8:{s:3:"sha";s:40:"497becbbd5e2150520bc4af6313c34e027ec2cac";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"[BefunWrite] Fixed SaveAs";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-26 10:00:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:797;a:8:{s:3:"sha";s:40:"b1ccd508339cb54de504eec92e99df4671b6b623";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Bugfixes and PICalc Example";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 21:29:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:798;a:8:{s:3:"sha";s:40:"717456e34df84f76c7811fb5d540578755a0ff54";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added BefunWrite Examples";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 20:22:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:799;a:8:{s:3:"sha";s:40:"b39ee1a16c6f8c38b511ab4ad46413ca1717f4d7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"FIxed a few minor Bugs";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 20:22:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:800;a:8:{s:3:"sha";s:40:"9d368dbec8110a6b63de117ea3ade5ffe8145c5c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"Added Explorer Integration (open File from commandline)";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 19:42:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:801;a:8:{s:3:"sha";s:40:"b89b022cefae102d1ca7c8ccb8277b2de8624b3d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"[BefungExec & BefunWrite] Added Cursor Follow Mode";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-25 09:44:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:802;a:8:{s:3:"sha";s:40:"8099bb7186b94bf5b62f383c357887a441719f75";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Various Bugfixes && UserExceptions";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 12:41:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:803;a:8:{s:3:"sha";s:40:"1515c10af1daae3979a957515a709fd82a3f4c41";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Simplified BefunWrite Example";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 12:40:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:804;a:8:{s:3:"sha";s:40:"492d360e83d7e977dab4b3e85695f41921df418d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added RemoveUnusedMethods Optimization";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 10:45:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:805;a:8:{s:3:"sha";s:40:"a6e2bdc9400c7d1971600a690361657fdf81ba5d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Added (Optimize Static Expressions)";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 09:55:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:806;a:8:{s:3:"sha";s:40:"e82773c42560c0f90cda419677d3a1c3a48f24f1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added Check for RETURN Statement in Mainmethod";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 08:33:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:807;a:8:{s:3:"sha";s:40:"d40009ccb43d94b2514d29bf86261278cf2199a8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed Output not updating on Reset in BefungExec";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 08:13:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:808;a:8:{s:3:"sha";s:40:"c3813493a27e0b82c5e5130de201236dc32ab0b3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added Default_Display_Value to BefunGen and BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-23 08:08:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:809;a:8:{s:3:"sha";s:40:"b46120d868f9b5c3d58c418dd60d0fd09f788eb0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Added Icons (BefunExec, BefunGen, BefunDebug, BefunWrite)";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 13:12:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:810;a:8:{s:3:"sha";s:40:"7f499ab49d9f8d8b2a1e0c2fdc14db09b0e1d4ff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Menu + About-Dialog to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 12:06:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:811;a:8:{s:3:"sha";s:40:"9baaae05b04161817b8d8563dbe6281522a631bb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"Fixed New Save not correctly registering sourcecodefile";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-19 16:09:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:812;a:8:{s:3:"sha";s:40:"70cbd12f6bf4b8df642c8b36dbf61c4d7ebf65e2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Fixed CharSpinner Events not correctly registered";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-19 14:11:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:813;a:8:{s:3:"sha";s:40:"19196ff89b77f487ee525274adcd0ff2bc373cad";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added Run to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 14:14:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:814;a:8:{s:3:"sha";s:40:"4a41a15a27d04beef6d5138abe3ba137a61cfa93";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Improved ToolbarButtonTheme";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 11:27:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:815;a:8:{s:3:"sha";s:40:"d58c64af49258851ef15468e8bd56c73650a858f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Building to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 10:27:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:816;a:8:{s:3:"sha";s:40:"9259b26cf3d012909ea5547b7b9d22394ff00d56";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added ErrorList to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 20:32:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:817;a:8:{s:3:"sha";s:40:"50fc2f5894c115bf87d1ade61943b28bd42aaa76";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added ProgrammExplorer to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 20:21:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:818;a:8:{s:3:"sha";s:40:"93dabc5fd98935a81d333b38df7d1048e1eb573f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added Display of Error Line in BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 13:54:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:819;a:8:{s:3:"sha";s:40:"0dfecd7ef379f52912c88aab0aa50d939ada7261";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added RunConfiguration Dialog";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 12:21:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:820;a:8:{s:3:"sha";s:40:"b2a85a302bee2d8fc037eddd9fa6d28e4cad4389";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added greyable ToolbarButtons";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 11:57:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:821;a:8:{s:3:"sha";s:40:"48c7caf8d5f71ed61890660a5c4ce5a1da88ca7b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Cleaned up GUI & WPF Commands";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 09:17:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:822;a:8:{s:3:"sha";s:40:"02823c9a0d02a5678c47043eeda8ec2852a2ed28";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Added Loading/Saving/Creating to BefunWrite";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 16:58:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:823;a:8:{s:3:"sha";s:40:"ac1989c374446f5ec508a78487aa17f4379945e3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Finished Mockup of BefunWrite (Menu/Dock/Edit ...)";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 12:54:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:824;a:8:{s:3:"sha";s:40:"9dab2bb7e5c6d05458cd1a12ad1d3c508b632f7f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:86:"Added new Project: BefunWrite + - Added AvalonEdit Control + - Added AvalonDockControl";s:10:"repository";a:13:{s:2:"id";i:28590812;s:4:"name";s:10:"BefunWrite";s:9:"full_name";s:20:"Mikescher/BefunWrite";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/BefunWrite";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/BefunWrite/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 10:39:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:825;a:8:{s:3:"sha";s:40:"b05dc03b2d2899b8ad81cf64fd1eb11ed0c8c316";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated gitignore";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 19:55:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:826;a:8:{s:3:"sha";s:40:"26e64cd663fee40fb9c571039f37580b8625e583";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Added Fancy Stuff (Animations, Logo, Effects)";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 19:51:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:827;a:8:{s:3:"sha";s:40:"3c3a5af6c7ce91c2506dce6e5119877688eb3ced";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Aufgabe 2) Wechselspiel";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 16:16:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:828;a:8:{s:3:"sha";s:40:"f8a24e8d1757408b50168d5fe49ebb81ecbf6138";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Aufgabe 1) Farbenspiel";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 14:49:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:829;a:8:{s:3:"sha";s:40:"6035fc34ca6d95713d20a86ba7ded3a9c76fb088";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Initial Commit - Slick2d";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 11:58:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:830;a:8:{s:3:"sha";s:40:"a6e2bc371b7bb8a20e89d53a79eeb082cdcb5529";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:14202146;s:4:"name";s:9:"ColorGame";s:9:"full_name";s:19:"Mikescher/ColorGame";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/ColorGame";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:3044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/ColorGame/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 11:37:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:831;a:8:{s:3:"sha";s:40:"e26db02fcd54582566d59774563be191d01ef112";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Finished section "jUnit tests"";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-30 16:40:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:832;a:8:{s:3:"sha";s:40:"eba7f3467c84c8f9cf0f9cc16b5ca34bebdbcd40";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Korrekturlesen fertig +(Armins Kapitel asugenommen)";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-29 21:20:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:833;a:8:{s:3:"sha";s:40:"4c21010e6f06af95c8191d890115a3c4cb888cee";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:83:"Korrekturlesen bis (einschließlich) Kapitel {TileMap} (Armins Kapitel asugenommen)";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-27 19:35:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:834;a:8:{s:3:"sha";s:40:"4053fc0b1ea552c22e288d9c533f14720a161129";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Finished paragraph {Bewegung mit Kollisionen}";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-27 17:41:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:835;a:8:{s:3:"sha";s:40:"e1f695d82e61848fdfb1bdf0eb78d84fee47d147";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added Project files for TeXnicCenter";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-27 15:28:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:836;a:8:{s:3:"sha";s:40:"3c696a2477016b8f96f4cc08782bfe5be92e4e0e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Finsihed CollisionGeometry paragraph";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-27 15:27:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:837;a:8:{s:3:"sha";s:40:"15c214dc8aa33501466a91d682cbddfbde66fb44";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"Updated "collisondetection" with canMoveCollide changes";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-17 20:00:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:838;a:8:{s:3:"sha";s:40:"e76efb92b38fa7cb88958bfe482f47b9fa445be5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"section "collisiondetection" finished (except tile collisions)";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-17 16:05:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:839;a:8:{s:3:"sha";s:40:"8f403a61002c63a86dd097eaf1e5051091927297";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"section "collisiondetection" -> "movement"";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-17 15:31:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:840;a:8:{s:3:"sha";s:40:"db72ca22f0a6bbe26321a5f7481bb6f9bbe10b43";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"section "collisiondetection" -> "collisionmap"";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-17 10:57:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:841;a:8:{s:3:"sha";s:40:"065c36c124a766d9b6036933cc32d9e319798be4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"section "collisiondetection" ff";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-16 17:10:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:842;a:8:{s:3:"sha";s:40:"59e15440054b5862f87b0a9dca1a36d4bb4e60ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"section "collisiondetection"";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-16 16:37:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:843;a:8:{s:3:"sha";s:40:"bbf6b847333b698134c5cf196c3220623a58cd9d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added writing plan for section "collisiondetection"";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-14 11:15:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:844;a:8:{s:3:"sha";s:40:"c1019e9d7669c0fdc93bfef127d977229a4ed33e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"change encoding to utf8";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-13 18:32:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:845;a:8:{s:3:"sha";s:40:"6263758fb9546e3e6e1d03c07258d1ceed9cb6eb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"TOC changes";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-12 22:01:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:846;a:8:{s:3:"sha";s:40:"62c7250e6b8da70e9b53ddc1eff2fa71136c8f33";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Merge remote-tracking branch 'origin/master'";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-12 17:36:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:847;a:8:{s:3:"sha";s:40:"cd7cb91f582691b481c65d0d1a700355af5aa5ea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"todo commit";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-12 17:34:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:848;a:8:{s:3:"sha";s:40:"4341e66370ea66e12b3f872fc53c7d8461910ca8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:""Krossplattform" is a strange german word ....";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-11 08:23:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:849;a:8:{s:3:"sha";s:40:"e72d8ce10198c56e99c7e29b49912acb8669d4c0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Write section 'Dependent Properties'";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-10 16:24:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:850;a:8:{s:3:"sha";s:40:"bc0c455b40816c08162f3dba6ebd5c72e52f01fc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Write section 'Tiled Map'";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-09 17:22:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:851;a:8:{s:3:"sha";s:40:"8464a98f83bdd9dc4c4344ddbcdf7eed2420c454";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added graphics to 'git'";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-09 17:21:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:852;a:8:{s:3:"sha";s:40:"f5142d6e84c1c591e0ecfd907d737b510ce22a75";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Finshed 'gradle'";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-09 12:47:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:853;a:8:{s:3:"sha";s:40:"adb51bfd1b033c6c470196c38462222aeb6d02f5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Halfway through gradle";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-07 19:18:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:854;a:8:{s:3:"sha";s:40:"d9f3e446831e85c4066e0a4086ea97ceb5ac24f3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"Kapitel: git";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-07 12:30:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:855;a:8:{s:3:"sha";s:40:"ffebe0acfbbcb118f7bfd50d0d1c374cd3bc721f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Organized content / added files for sections";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-07 11:54:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:856;a:8:{s:3:"sha";s:40:"e41cc3e7d67b3b25e4209732329afa309352db14";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Vorwort :/";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-07 11:31:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:857;a:8:{s:3:"sha";s:40:"b15b5d44ca7cde6f98f94ab802824b50071ac1ba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added 4th level sections (=> paragraphs)";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-07 10:39:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:858;a:8:{s:3:"sha";s:40:"bfddb32e9607a1a731a488bd6ae18e8dbb691927";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Added title ""Entity Liste"";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-05 10:15:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:859;a:8:{s:3:"sha";s:40:"ed5fb1a31f5829e6a2f42ca76ff9d6dd7a5a293c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Added title: "Framerate independent movement"";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-05 10:13:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:860;a:8:{s:3:"sha";s:40:"09653b41614771685158857854389938fda7b7e6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:3:"add";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-02 19:59:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:861;a:8:{s:3:"sha";s:40:"9c98d5969a146ec0d8e1af94c500cf59672cc370";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added sub points to sections";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-30 20:45:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:862;a:8:{s:3:"sha";s:40:"bf834814ec64f78bdb269a434a5670dffb820de3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Fixed title -> section";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-30 19:56:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:863;a:8:{s:3:"sha";s:40:"e829c7bf5eb6911894668ff8616c65c3a6326dc4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"More Titles - no actual content (II)";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-30 18:30:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:864;a:8:{s:3:"sha";s:40:"4f32182607db033074fdf3ea13432b0af632ec96";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"More Titles - no actual content";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-28 09:15:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:865;a:8:{s:3:"sha";s:40:"f54dd71d19ffbe09c7e8da55f49329258cf7b378";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added a little overview of future work";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-24 11:31:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:866;a:8:{s:3:"sha";s:40:"c3cd4576ff2106765fe5638ce9643fcc602fff46";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added Latex sceleton";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-22 19:02:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:867;a:8:{s:3:"sha";s:40:"3355767ef68120d7fac09cd56870b0dd61e58c1d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:25597394;s:4:"name";s:25:"DHBW-Studienarbeit-absGDX";s:9:"full_name";s:35:"Mikescher/DHBW-Studienarbeit-absGDX";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:54:"https://github.com/Mikescher/DHBW-Studienarbeit-absGDX";s:8:"language";s:3:"TeX";s:8:"creation";r:234;s:4:"size";i:1168;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:72:"https://api.github.com/repos/Mikescher/DHBW-Studienarbeit-absGDX/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-22 18:30:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:868;a:8:{s:3:"sha";s:40:"21901611350f89391ec8b56b004203aa9b8f99ea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Removed unused References";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:251;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-25 19:23:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:869;a:8:{s:3:"sha";s:40:"6f9577c067d1e33c4539c9779554e52dd5a42885";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added En/De-crypt PGP";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:251;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 20:36:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:870;a:8:{s:3:"sha";s:40:"7b124a7a3f1d7eb9ab83f8ff507fdfcf38b3d84b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added Decrypt_Tab";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:251;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 18:14:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:871;a:8:{s:3:"sha";s:40:"12ffba37e0a0de9086b844c2fb439a0fbd51ab3c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added Encrypt_Tab";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:251;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 18:14:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:872;a:8:{s:3:"sha";s:40:"8734316075c324f552f415d1752f0387ed768fec";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added Generate_Tab";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:251;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 16:12:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:873;a:8:{s:3:"sha";s:40:"db3ec75ec0f558c562a74ff8737677ce39e0c2a6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Initial Structure Commit";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:251;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 14:44:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:874;a:8:{s:3:"sha";s:40:"83fcce298fdde3168ffd2c9b79e448dc1cd91066";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:20131600;s:4:"name";s:8:"DirtyPGP";s:9:"full_name";s:18:"Mikescher/DirtyPGP";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/DirtyPGP";s:8:"language";s:2:"C#";s:8:"creation";r:251;s:4:"size";i:160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/DirtyPGP/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 14:40:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:875;a:8:{s:3:"sha";s:40:"76d3cf2b9d95659b2f2f3f89a8209b6a69c022a2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Create README.md";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:268;s:4:"size";i:448;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-12 12:32:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:876;a:8:{s:3:"sha";s:40:"0a0d5a4fb36a4cc122d852f33465aad9c150a441";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added README-DATA";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:268;s:4:"size";i:448;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-12 12:11:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:877;a:8:{s:3:"sha";s:40:"45988dd5c8b69858d8227e88d1809558d930accc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Fixed Session errors & added exception catching to getJSON()";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:268;s:4:"size";i:448;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-15 09:30:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:878;a:8:{s:3:"sha";s:40:"e8e279706c34731fad3361701634d9791e271a22";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:90:"Added: + Ajax Refresh + Organizations + Foreign Repos + Better Output + Bugfixes";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:268;s:4:"size";i:448;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 20:00:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:879;a:8:{s:3:"sha";s:40:"08f36bc5d76808d4884e147dc6f59dcd43c10ea2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"Added more Meta-data + Fixed a few bugs + Improved Performance +(All in one ^^)";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:268;s:4:"size";i:448;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-08 13:30:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:880;a:8:{s:3:"sha";s:40:"465b0b767d2c58cb673976018947740d7c75f79c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Removed unsued files";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:268;s:4:"size";i:448;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 17:12:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:881;a:8:{s:3:"sha";s:40:"be2419219fed2fedcbdc71eed78d41a6bde685b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Finished Styling etc";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:268;s:4:"size";i:448;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 17:09:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:882;a:8:{s:3:"sha";s:40:"a275445690a80a76514c4e7af5f68e7fe78fa6f8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"added working template";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:268;s:4:"size";i:448;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 15:37:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:883;a:8:{s:3:"sha";s:40:"500d56f6a54898ace3db8087563028fd6c4519c1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added full parsing / data-export / data-import";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:268;s:4:"size";i:448;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 13:45:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:884;a:8:{s:3:"sha";s:40:"794fca0f6615625da1566e53fb029cad1aa60657";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Initial work - enumerating commits";s:10:"repository";a:13:{s:2:"id";i:20598131;s:4:"name";s:16:"extendedGitGraph";s:9:"full_name";s:26:"Mikescher/extendedGitGraph";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/extendedGitGraph";s:8:"language";s:3:"PHP";s:8:"creation";r:268;s:4:"size";i:448;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/extendedGitGraph/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-06 22:21:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:885;a:8:{s:3:"sha";s:40:"3f2f935880a9d42831bffba1ec45e4146cb0a959";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Fixed Code Warnings -> more refactoring";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:52:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:886;a:8:{s:3:"sha";s:40:"fa3b79df8d67daa1c04e83d61fa3ee89333938b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Înfer Generic Type Arguments";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:49:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:887;a:8:{s:3:"sha";s:40:"9cf49516d2b6f098d2c86c469c93aa543338fd06";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:73:"Moved Pricelogic to Price (NewReleasePrice, RegularPrice, ChildrensPrice)";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:48:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:888;a:8:{s:3:"sha";s:40:"d23bb039315f0849fcc1b5ebbe47b7d310d245cd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Moved double getCharge(int daysRented) to Movie.java";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:27:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:889;a:8:{s:3:"sha";s:40:"02aa53b646c8803e8cb56cc2d2a41237f3924e1d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added htmlStatement class";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:24:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:890;a:8:{s:3:"sha";s:40:"2f84cd26d0fab02ca80406ddda1ea95d9140c997";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Codef formatting (Ctrl+SHift+O/F/S)";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:19:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:891;a:8:{s:3:"sha";s:40:"efeb24e9d963bb1dfee2f6b6253ef7893c6093f2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"Moved temp Variables to getTotalCharge() and getTotalFrequentRenderPoints()";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:18:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:892;a:8:{s:3:"sha";s:40:"c1d7da7d388e09da0fda45f96b6a1d0887b09515";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Moved "getFrequentRenterPoints" to Rental.java";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:06:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:893;a:8:{s:3:"sha";s:40:"2329f055280ace9f48ad218dadcb4964969f92d3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Inline Variable "temp"";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:03:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:894;a:8:{s:3:"sha";s:40:"0bb486ab8338f9152b513bc5339b345c915ad5ea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Removed amountFor Method";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:02:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:895;a:8:{s:3:"sha";s:40:"d9526cdf6e59d8578d050c22231bfa709398fc7a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Moved "amountFor" from Movie to Rental";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 11:00:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:896;a:8:{s:3:"sha";s:40:"93b8c9951f3c4535e0f7f07438b25af116e05b6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Moved Code to seperate Method "amountFor"";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 10:55:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:897;a:8:{s:3:"sha";s:40:"488566a641ec49348b7bde7f1fe16be7d2bc641d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"INITIAL (No Refactoring)";s:10:"repository";a:13:{s:2:"id";i:19815692;s:4:"name";s:28:"Fowler-Refactoring-Chapter_1";s:9:"full_name";s:38:"Mikescher/Fowler-Refactoring-Chapter_1";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:57:"https://github.com/Mikescher/Fowler-Refactoring-Chapter_1";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:296;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:75:"https://api.github.com/repos/Mikescher/Fowler-Refactoring-Chapter_1/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 10:46:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:898;a:8:{s:3:"sha";s:40:"943fa932acdfac142967e160a7ee915a0a87afeb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"1.9.3 Bugfix: Fixed AV in CCDate.isValidate()";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-17 17:23:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:899;a:8:{s:3:"sha";s:40:"6c5704a12e85f5d8f76e34162dec265bbae763f0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"1.9.3 Bugfix: Fixed jCoverChooser reset when viewing Episode";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-04 20:56:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:900;a:8:{s:3:"sha";s:40:"4a6f6d7f9bb41b4391f6ce0a0fe054639a7c1cf5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.9.2 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 19:06:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:901;a:8:{s:3:"sha";s:40:"c67ed12e0a643e4bf23a4dd94d9dce9e75369971";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"1.9.2 Task: Reverted CharChooser to old behaviour of non-substance LnF's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-08 15:04:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:902;a:8:{s:3:"sha";s:40:"ffe0fed3769b21baf69a1c28ee04ef033fbb4a29";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"1.9.2 Feature: Added (PLAIN | JSON | XML) export function";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-07 19:08:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:903;a:8:{s:3:"sha";s:40:"40bc62e74aadf3a7e437eb317930ef37ace50e73";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:73:"1.9.2 Feature: Added One-Click metadata calculation to "AddEpisodesFrame"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-07 10:27:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:904;a:8:{s:3:"sha";s:40:"d6e430f91888ad24d01b791a6dafa267a8f02c51";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Late night todo commit";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-29 21:09:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:905;a:8:{s:3:"sha";s:40:"5b303e50b0eeca82e15808563d955f41a43a811f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"1.9.2 Task: Added a minimum scrollbar height on the windows L'n'F";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-05 23:36:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:906;a:8:{s:3:"sha";s:40:"ef671d5bb9cdfa492ed4f870057b683bc6bc5595";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:104:"1.9.2 Task: Improved Performance when throwing a massive amount of exceptions (collecting them together)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 21:08:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:907;a:8:{s:3:"sha";s:40:"c9ba1c1ffd432826917e607bd36e5f738a74fecb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"1.9.2 Feature: Added ResetTags Option to ImportDialog(s)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 20:58:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:908;a:8:{s:3:"sha";s:40:"50cda8545e80d4d5c58d926ac46b12a39d3b2518";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:102:"1.9.2 Task: Changed IMDB-Parse Method to [jSoup-Library] + (source of a few bugs & better Maintenance)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 19:44:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:909;a:8:{s:3:"sha";s:40:"be815cddb8a4b50b03db7be1e05eef7b99d997a6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"1.9.2 Task: Only allow CreateFolderStructure after successful tests";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 15:14:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:910;a:8:{s:3:"sha";s:40:"ab31955ff3573b42ad58dbaa4efd32ede090fdbf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"1.9.2 Bugfix: Fixed AV when selecting Theme "Autumn"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 14:24:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:911;a:8:{s:3:"sha";s:40:"29708bec9953babedbfcb857429c600ec88a6b6e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"1.9.2 Bugfix: Fixed List-UI with "Windows"-Theme";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 14:14:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:912;a:8:{s:3:"sha";s:40:"c70964ee29260021d9cae8464bc1aa8f6a5d94a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:104:"1.9.2 Bugfix: Fixed ValidateDatabase->CheckFolderStructure for Folder with different Lowercase/Uppercase";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 12:35:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:913;a:8:{s:3:"sha";s:40:"b9b30be588828c2e15ae5f9434964658260377c7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:96:"1.9.2 Bugfix: Fixed Filename-creation for Elements ending with a dot (caused various other bugs)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-01 12:29:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:914;a:8:{s:3:"sha";s:40:"0a7ad9491bd9bf962638d542365323ad1d702056";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"1.9.2 Bugfix: Wrong Movie-Filesize when having more than 2 Parts (+ TODO's)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-24 11:24:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:915;a:8:{s:3:"sha";s:40:"ec703d44ec1f12d8737764424ebd9261ee5316ff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"1.9.2 Task: Live update PreviewSeriesFrame (while open)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-18 14:55:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:916;a:8:{s:3:"sha";s:40:"92395e252eee20767deb7c504766696020468310";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"1.9.2 Bugfix: ParseWatchDataFrame: Update Date even when no change in viewed";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 21:10:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:917;a:8:{s:3:"sha";s:40:"2e47c6353470bc83e58ea69d650e00576a4d4d1b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"1.9.2 Beta Release (for internal use only)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 20:50:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:918;a:8:{s:3:"sha";s:40:"9770c7e691d4968a6fff83b9982e68c55274e76a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:58:"Fixed ParseWatchData not setting episodes to correct value";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 20:48:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:919;a:8:{s:3:"sha";s:40:"4992b0df622f26b706e7e69b103dc13769c0a3a7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Fixed typo";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-11 19:32:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:920;a:8:{s:3:"sha";s:40:"69af72979f7d4ee61f7a1bec1ba3f48916c97b2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:71:"1.9.2 Feature: Added new Syntax to ParseWatchDataFrame (Episode ranges)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-10 21:18:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:921;a:8:{s:3:"sha";s:40:"64aec23dfd510325af8dcdafecd685feb9cff4c8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:66:"1.9.2 Feature: Added new Database Error: "INVALID_SERIESSTRUCTURE"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-09 19:30:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:922;a:8:{s:3:"sha";s:40:"b3a2f8bc1614dfcf9f822a4487637021de49d47d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"1.9.2 Feature: Added clickable Score to ClipTable";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-30 10:37:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:923;a:8:{s:3:"sha";s:40:"bca7dfca244995cd2726f97dee494f293abe3853";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"1.9.2 Bugfix: Fixed TextEncoding when loading Filter from File";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-30 10:26:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:924;a:8:{s:3:"sha";s:40:"a11fe2443b49242eb6a04560663917c4d16bc3a7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"1.9.2 Feature: Added 'pasteURL' && 'pasteImage' to EditCoverComponent";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-30 10:20:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:925;a:8:{s:3:"sha";s:40:"e5cf2f82b615ebe25050830b375b2888f74db41a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"1.9.2 Feature: Only show SeriesOverlay when optin selected (do not modify files)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 11:45:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:926;a:8:{s:3:"sha";s:40:"3f6e8a9feb8cbcfd0cfb8f57e8c99954377245cc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:144:"1.9.2 Feature: Added proper EditCoverControl -> AddMovieFrame -> AddSeasonFrame -> AddSeriesFrame -> EditMovieFrame - -> EditSeriesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 11:34:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:354;a:8:{s:3:"sha";s:40:"1ce05c581a985fb8145058143d3119b8db39af61";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"1.9.2 Bugfix: Fixed Zyklus-Click not working";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 08:59:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:355;a:8:{s:3:"sha";s:40:"22f425329e5fa7339e303907dfda8b9776994fa1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"1.9.2 Bugfix: Fixed various Exceptions when MovieList is empty";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 14:10:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:356;a:8:{s:3:"sha";s:40:"d7b5c8a48347cbc3797c5358056681c97fbe5364";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"1.9.2 Bugfix: Fixed Creating new Database (Schema was too old)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 14:06:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:357;a:8:{s:3:"sha";s:40:"a2ca3b97ed482ac807dec33dbf49b229c2f077d8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"1.9.2 Bugfix: Fixed Exception when sorting by ViewState";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:43:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:358;a:8:{s:3:"sha";s:40:"103d3e931c59d30b34b2e9c0839793ffae5f4e04";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"1.9.2 Task: Disabled Column Dragging in Table (caused weird things)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:37:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:359;a:8:{s:3:"sha";s:40:"82d08b01150e6896da9477a6d4f964c3d518316b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"1.9.2 Bugfix: Fixed Exception in AddEpisodesFrame when ignoring Warnings";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:35:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:360;a:8:{s:3:"sha";s:40:"1d7ac5181d90fe8d4a762bcdd2be3f30d8aee36b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added a few (2) Bugs in Todo-List";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 12:27:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:361;a:8:{s:3:"sha";s:40:"97eaba42f153b3f5ffa98131c22ab6e2e257b8bc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"C-C-C-Combo-TODO-Commit";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-16 17:11:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:362;a:8:{s:3:"sha";s:40:"a001c6bd6d325972e81b0c2472dea766cdec6db8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:7:"Tododos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 22:07:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:363;a:8:{s:3:"sha";s:40:"eb7cb1421ac703a7f8a2a1a36a3ead77268efbef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Bug-Report-Todos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-09 21:42:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:364;a:8:{s:3:"sha";s:40:"6a89200014df6f9ddc12194249008be534fec0ee";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"1.9.2 Bugfix: Fixed Column-Resizing when deleting whole Series";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 16:11:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:365;a:8:{s:3:"sha";s:40:"44ece9ae692edc3c9a663c84656e1813b1b90cd0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:77:"1.9.2 Bugfix: Fixed missing locale: "ExportHelper.dialogs.resetScore_caption"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 15:47:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:366;a:8:{s:3:"sha";s:40:"06d08e5f74276590e1ec060bab572b7b9d674f24";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"1.9.2 Bugfix: Fixed Format==null when Extension is not recognized";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 15:30:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:367;a:8:{s:3:"sha";s:40:"b1ea8c4c28b684be6d28bb4ff996ce2eb769f0f3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"1.9.2 Bugfix: Fixed Onlinescore can't be 10";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 15:13:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:368;a:8:{s:3:"sha";s:40:"738a77d8b9aa466923a9d31147d9ec94a6d6cb31";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Feature ToDos and a TODO for a critical Bug";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-26 22:53:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:369;a:8:{s:3:"sha";s:40:"65ad1289c026447d3bd95c7be30830b241c53c9c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"More Todo's ... as always";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-18 21:34:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:370;a:8:{s:3:"sha";s:40:"dee60aa9389323194faedd97afe0af1158879c96";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:199:"1.9.2 Bugfixes + -> EditSeriesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 11:34:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:927;a:8:{s:3:"sha";s:40:"1ce05c581a985fb8145058143d3119b8db39af61";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"1.9.2 Bugfix: Fixed Zyklus-Click not working";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 08:59:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:928;a:8:{s:3:"sha";s:40:"22f425329e5fa7339e303907dfda8b9776994fa1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"1.9.2 Bugfix: Fixed various Exceptions when MovieList is empty";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 14:10:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:929;a:8:{s:3:"sha";s:40:"d7b5c8a48347cbc3797c5358056681c97fbe5364";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"1.9.2 Bugfix: Fixed Creating new Database (Schema was too old)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 14:06:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:930;a:8:{s:3:"sha";s:40:"a2ca3b97ed482ac807dec33dbf49b229c2f077d8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"1.9.2 Bugfix: Fixed Exception when sorting by ViewState";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:43:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:931;a:8:{s:3:"sha";s:40:"103d3e931c59d30b34b2e9c0839793ffae5f4e04";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"1.9.2 Task: Disabled Column Dragging in Table (caused weird things)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:37:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:932;a:8:{s:3:"sha";s:40:"82d08b01150e6896da9477a6d4f964c3d518316b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"1.9.2 Bugfix: Fixed Exception in AddEpisodesFrame when ignoring Warnings";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:35:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:933;a:8:{s:3:"sha";s:40:"1d7ac5181d90fe8d4a762bcdd2be3f30d8aee36b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added a few (2) Bugs in Todo-List";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 12:27:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:934;a:8:{s:3:"sha";s:40:"97eaba42f153b3f5ffa98131c22ab6e2e257b8bc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"C-C-C-Combo-TODO-Commit";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-16 17:11:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:935;a:8:{s:3:"sha";s:40:"a001c6bd6d325972e81b0c2472dea766cdec6db8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:7:"Tododos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-11 22:07:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:936;a:8:{s:3:"sha";s:40:"eb7cb1421ac703a7f8a2a1a36a3ead77268efbef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Bug-Report-Todos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-09 21:42:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:937;a:8:{s:3:"sha";s:40:"6a89200014df6f9ddc12194249008be534fec0ee";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"1.9.2 Bugfix: Fixed Column-Resizing when deleting whole Series";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 16:11:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:938;a:8:{s:3:"sha";s:40:"44ece9ae692edc3c9a663c84656e1813b1b90cd0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:77:"1.9.2 Bugfix: Fixed missing locale: "ExportHelper.dialogs.resetScore_caption"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 15:47:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:939;a:8:{s:3:"sha";s:40:"06d08e5f74276590e1ec060bab572b7b9d674f24";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"1.9.2 Bugfix: Fixed Format==null when Extension is not recognized";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 15:30:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:940;a:8:{s:3:"sha";s:40:"b1ea8c4c28b684be6d28bb4ff996ce2eb769f0f3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"1.9.2 Bugfix: Fixed Onlinescore can't be 10";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-27 15:13:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:941;a:8:{s:3:"sha";s:40:"738a77d8b9aa466923a9d31147d9ec94a6d6cb31";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Feature ToDos and a TODO for a critical Bug";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-26 22:53:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:942;a:8:{s:3:"sha";s:40:"65ad1289c026447d3bd95c7be30830b241c53c9c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"More Todo's ... as always";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-18 21:34:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:943;a:8:{s:3:"sha";s:40:"dee60aa9389323194faedd97afe0af1158879c96";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:199:"1.9.2 Bugfixes - Fixed OpenLastPlöayedSeries not really selecting last played Episode - Fixed ImDB-Parsing not recognizing images -- Fixed CustomOnlineSCoreFilter interpreting No-Score as valid score";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 12:14:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:371;a:8:{s:3:"sha";s:40:"2ad61c3c6189d015a51d3e5da0b4dd5a993d66ea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added critical ToDo";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-15 22:52:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:372;a:8:{s:3:"sha";s:40:"536a7aec3abcf2ae95b0f4fe73a475e0b922831c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"ToDo (Singular ...)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 19:57:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:373;a:8:{s:3:"sha";s:40:"d47215eddbf77bef28a4822610fe08b6795a2296";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"You know the deal ... more ToDo's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-01 23:14:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:374;a:8:{s:3:"sha";s:40:"5991488fde8d2e7056a6d321792de15183b3153b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-26 00:04:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:375;a:8:{s:3:"sha";s:40:"bcc978d05d3813a777bf9591544de0d608162a8a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.9.1 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 23:57:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:376;a:8:{s:3:"sha";s:40:"de8de6bb198d888f4424eb5bb69845a947315c92";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:157:"1.9.1 Feature +- Fixed CustomOnlineSCoreFilter interpreting No-Score as valid score";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-16 12:14:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:944;a:8:{s:3:"sha";s:40:"2ad61c3c6189d015a51d3e5da0b4dd5a993d66ea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added critical ToDo";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-15 22:52:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:945;a:8:{s:3:"sha";s:40:"536a7aec3abcf2ae95b0f4fe73a475e0b922831c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"ToDo (Singular ...)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-06 19:57:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:946;a:8:{s:3:"sha";s:40:"d47215eddbf77bef28a4822610fe08b6795a2296";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"You know the deal ... more ToDo's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-01 23:14:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:947;a:8:{s:3:"sha";s:40:"5991488fde8d2e7056a6d321792de15183b3153b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-26 00:04:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:948;a:8:{s:3:"sha";s:40:"bcc978d05d3813a777bf9591544de0d608162a8a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.9.1 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 23:57:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:949;a:8:{s:3:"sha";s:40:"de8de6bb198d888f4424eb5bb69845a947315c92";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:157:"1.9.1 Feature Improved loadTime: Added Cache for Substance-Look'n'Feels ( ~200ms ) - Removed unnecessary InvokeAndWait on busy Dispatcher ( ~3000ms )";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 23:12:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:377;a:8:{s:3:"sha";s:40:"34716f452116625ca9c63f648ed9e8f801b54b34";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"1.9.1 Feature - Added Action: "Open Last played Series"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 22:19:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:378;a:8:{s:3:"sha";s:40:"3b7aab12fdc63b71795d51937a4add78709005b3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"1.9.1 Feature - Added progressive Viewed-Icon on PreviewSeriesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 21:42:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:379;a:8:{s:3:"sha";s:40:"281c1951cbd88a5d0df58ab8a67270032b82da86";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:520:"1.9.1 Feature & Bugfixes + Removed unnecessary InvokeAndWait on busy Dispatcher ( ~3000ms )";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 23:12:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:950;a:8:{s:3:"sha";s:40:"34716f452116625ca9c63f648ed9e8f801b54b34";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:55:"1.9.1 Feature + Added Action: "Open Last played Series"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 22:19:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:951;a:8:{s:3:"sha";s:40:"3b7aab12fdc63b71795d51937a4add78709005b3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"1.9.1 Feature + Added progressive Viewed-Icon on PreviewSeriesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 21:42:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:952;a:8:{s:3:"sha";s:40:"281c1951cbd88a5d0df58ab8a67270032b82da86";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:520:"1.9.1 Feature & Bugfixes Added Way to save Filter Fixed FilterTree Bug when it wouldn't update Fixed FilterTree Bug when it wouldn't collapse @@ -94,19 +180,19 @@ Fixed a few grammar errors";s:10:"repository";a:13:{s:2:"id";i:16591627;s:4:"nam Fixed CustomViewedFilter AV (was not using new Tribool viewed-state) Fixed Bug where DIalog-FInish-Listener was called more than one time => cause of many strange behaviours - Updated .gitignore for *.flst files";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 16:22:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:380;a:8:{s:3:"sha";s:40:"7b83f112f44643dcd682f639f19e1dc735eaecce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"1.9.1 Feature - Added Option to reset Score when Importing Movies/Series";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-24 20:36:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:381;a:8:{s:3:"sha";s:40:"9df04bc124d519551a702fad02d40d919f8d8ee8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"1.9.1 Feature - Added new Statistics: "Viewed (Episodes)"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-24 19:44:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:382;a:8:{s:3:"sha";s:40:"87250ddc69dea7caac50f146ff20066887623b2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:176:"1.9.1 Feature + Updated .gitignore for *.flst files";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-25 16:22:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:953;a:8:{s:3:"sha";s:40:"7b83f112f44643dcd682f639f19e1dc735eaecce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"1.9.1 Feature + Added Option to reset Score when Importing Movies/Series";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-24 20:36:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:954;a:8:{s:3:"sha";s:40:"9df04bc124d519551a702fad02d40d919f8d8ee8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"1.9.1 Feature + Added new Statistics: "Viewed (Episodes)"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-24 19:44:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:955;a:8:{s:3:"sha";s:40:"87250ddc69dea7caac50f146ff20066887623b2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:176:"1.9.1 Feature Added new DatabaseError: LastViewed is before 1.6.1900 (practically impossible) - Added "Fix Multiple DatabaseErrors At Once"-Feature (You can now multi select)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-24 19:43:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:383;a:8:{s:3:"sha";s:40:"fc94a4c9bfe46d00dee3d195a00c01dfd778d92a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:228:"1.9.1 Feature & Bugfixes + Added "Fix Multiple DatabaseErrors At Once"-Feature (You can now multi select)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-24 19:43:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:956;a:8:{s:3:"sha";s:40:"fc94a4c9bfe46d00dee3d195a00c01dfd778d92a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:228:"1.9.1 Feature & Bugfixes Added Display for WatchLater in "Viewed"-Column Added OPtion to automatically update "WatchLater"-Tag Added DatabaseError "IMPOSSIBLE_WATCHLATER" - Fixed Dispatch-Thread Error in CheckDatabaseFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-21 20:49:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:384;a:8:{s:3:"sha";s:40:"0f699d60ee17df44d04a65bd4f47cfc0637c2a9a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:99:"1.9.1 Feature + Fixed Dispatch-Thread Error in CheckDatabaseFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-21 20:49:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:957;a:8:{s:3:"sha";s:40:"0f699d60ee17df44d04a65bd4f47cfc0637c2a9a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:99:"1.9.1 Feature Added better ClickArea for Zyklus-Clicking - Added Hover-Cursor for Zyklus-Clicking";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-20 20:12:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:385;a:8:{s:3:"sha";s:40:"60813ae9c7c5b0bd3bc4865fba383c38f62c439a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"ToDos because i have no time for actual coding ...";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-27 19:42:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:386;a:8:{s:3:"sha";s:40:"9cf3654e7aa1c70db93fd6e02e6c72833cde12b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"1.9.1 Beta Release (for internal use only)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-10 20:33:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:387;a:8:{s:3:"sha";s:40:"16090937bebcc978abe5b6fabf6d792ef585f2e0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:87:"1.9.1 Feature + Added Hover-Cursor for Zyklus-Clicking";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-01-20 20:12:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:958;a:8:{s:3:"sha";s:40:"60813ae9c7c5b0bd3bc4865fba383c38f62c439a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"ToDos because i have no time for actual coding ...";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-27 19:42:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:959;a:8:{s:3:"sha";s:40:"9cf3654e7aa1c70db93fd6e02e6c72833cde12b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"1.9.1 Beta Release (for internal use only)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-10 20:33:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:960;a:8:{s:3:"sha";s:40:"16090937bebcc978abe5b6fabf6d792ef585f2e0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:87:"1.9.1 Feature Added parseWatchDataFrame - -> Parses Watched Series/Movies from plainText";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-10 20:28:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:388;a:8:{s:3:"sha";s:40:"d52309fe1728e253fb027aa67fe5668b2dd68219";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:486:"1.9.1 Big Feature (and Bugfixes) + -> Parses Watched Series/Movies from plainText";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-10 20:28:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:961;a:8:{s:3:"sha";s:40:"d52309fe1728e253fb027aa67fe5668b2dd68219";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:486:"1.9.1 Big Feature (and Bugfixes) Added CoverCropDialog(crop & edit covers) Added ImageCropper to AddMovieFrame Added ImageCropper to AddSasonFrame @@ -116,74 +202,74 @@ Added ImageCropper to EditSeriesFrame Fixed Bug when accessing a halfsize version of the standard cover Fixed Wrong Border Dimensions around partial tranparent cover in FindCoverDialog -Fixed rendering Tags on actual DB-Cover when "RenderTagsOnCover" is set to true";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-27 13:50:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:389;a:8:{s:3:"sha";s:40:"eda3da9cd967e6727858c92762f15c8bb2922054";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:282:"1.9.1 Bugfixes +Fixed rendering Tags on actual DB-Cover when "RenderTagsOnCover" is set to true";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-27 13:50:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:962;a:8:{s:3:"sha";s:40:"eda3da9cd967e6727858c92762f15c8bb2922054";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:282:"1.9.1 Bugfixes Fixed AV when removing the last Element in Table (that is also selected) Fixed PreviewSeriesFrame VertScrollbar staying bottom when switching Season Improved internal handling of readonly-prohibited operations -Fixed CoverChooser Border on partially transparent covers";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-26 11:14:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:390;a:8:{s:3:"sha";s:40:"8addc3e036d281400b5ae066f323ef541031c9ea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"All hail my ToDo Commits";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 11:59:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:391;a:8:{s:3:"sha";s:40:"04ee5711fb417ed45eb1bfb5a56c6972836fcb25";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"And even more ToDos :D";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-15 20:26:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:392;a:8:{s:3:"sha";s:40:"fbf88c561255bf5e55520f52831c979daf236095";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"Added ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-15 19:48:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:393;a:8:{s:3:"sha";s:40:"42335931c88ad7b321cbf7f101c4ea3f66967001";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:120:"1.9.1 Bugfixes +Fixed CoverChooser Border on partially transparent covers";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-26 11:14:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:963;a:8:{s:3:"sha";s:40:"8addc3e036d281400b5ae066f323ef541031c9ea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"All hail my ToDo Commits";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 11:59:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:964;a:8:{s:3:"sha";s:40:"04ee5711fb417ed45eb1bfb5a56c6972836fcb25";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"And even more ToDos :D";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-15 20:26:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:965;a:8:{s:3:"sha";s:40:"fbf88c561255bf5e55520f52831c979daf236095";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"Added ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-15 19:48:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:966;a:8:{s:3:"sha";s:40:"42335931c88ad7b321cbf7f101c4ea3f66967001";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:120:"1.9.1 Bugfixes Fixed too late Backup deletion (1 day late) -Fixed Omniparer not recognizing Counter with variable lengths";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 18:20:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:394;a:8:{s:3:"sha";s:40:"00ba934d321e0a419a2342afb4dbd11299ffc703";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 15:27:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:395;a:8:{s:3:"sha";s:40:"b8bc48e9b88128893d9146a757611994293a189e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"1.9 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 15:18:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:396;a:8:{s:3:"sha";s:40:"adfe33ec35a219a00d8f1b88e93429272d50d310";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:105:"1.9 Features +Fixed Omniparer not recognizing Counter with variable lengths";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 18:20:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:967;a:8:{s:3:"sha";s:40:"00ba934d321e0a419a2342afb4dbd11299ffc703";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 15:27:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:968;a:8:{s:3:"sha";s:40:"b8bc48e9b88128893d9146a757611994293a189e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"1.9 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 15:18:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:969;a:8:{s:3:"sha";s:40:"adfe33ec35a219a00d8f1b88e93429272d50d310";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:105:"1.9 Features Added Tag-Display to Cover on MainFrame -Added Big (blinking) Error Warning when Error occurs";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 14:16:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:397;a:8:{s:3:"sha";s:40:"11f671af62e4f1bd5317b2d8e291953ac22ac75a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:317:"1.9 Features +Added Big (blinking) Error Warning when Error occurs";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 14:16:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:970;a:8:{s:3:"sha";s:40:"11f671af62e4f1bd5317b2d8e291953ac22ac75a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:317:"1.9 Features Added Icons for CustomFilter & BackupManager Database shuts now correctly down onClose Added Option for Quick (and dirty) closing Finished BackupManager (You can restore from old Backups) Added Info-Panel to Backupmanager (Shows Backup-Settings) -Fixed JClipCorn not correctly shutting down on Fatal Error";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 12:08:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:398;a:8:{s:3:"sha";s:40:"da0e3c86a97165a2cb8cd08aba6ee71329ad3e0b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:159:"1.9 Features +Fixed JClipCorn not correctly shutting down on Fatal Error";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-25 12:08:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:971;a:8:{s:3:"sha";s:40:"da0e3c86a97165a2cb8cd08aba6ee71329ad3e0b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:159:"1.9 Features Added a functionality to a few Buttons in BackupsManagerFrame Fixed unclosed Filehandle in CCProperties -Fixed unclosed Filehandle in BackupManager";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-24 13:03:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:399;a:8:{s:3:"sha";s:40:"f507c0da29e0e6263ed70d7cfbdb2354bedb5ba6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:126:"1.9 Features +Fixed unclosed Filehandle in BackupManager";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-24 13:03:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:972;a:8:{s:3:"sha";s:40:"f507c0da29e0e6263ed70d7cfbdb2354bedb5ba6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:126:"1.9 Features Semi-Finished BackupManager (the visuas work, no Button-Functionality) -Fixed Auto-Delete Bug in new Backup-System";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-24 11:47:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:400;a:8:{s:3:"sha";s:40:"ed078f5cc486d9dc6edccfe5a487b23fe683ed4c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:89:"1.9 Features +Fixed Auto-Delete Bug in new Backup-System";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-24 11:47:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:973;a:8:{s:3:"sha";s:40:"ed078f5cc486d9dc6edccfe5a487b23fe683ed4c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:89:"1.9 Features Implemented new Backup Functionality -STarted BackupManagerFrame (unfinished)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-23 19:37:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:401;a:8:{s:3:"sha";s:40:"8885d0c7daba4846ffcc1ef958e81a503d9c4e94";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:111:"1.9 Features +STarted BackupManagerFrame (unfinished)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-23 19:37:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:974;a:8:{s:3:"sha";s:40:"8885d0c7daba4846ffcc1ef958e81a503d9c4e94";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:111:"1.9 Features Added More Info on FATAL-ERROR Message -Addedd initial check for Write-Permissions (-> FATAL ERROR)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-23 11:38:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:402;a:8:{s:3:"sha";s:40:"2dce002026cffd3f3e5b5f86b78b2eb43db3d69a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:123:"1.9 Bugfixes +Addedd initial check for Write-Permissions (-> FATAL ERROR)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-23 11:38:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:975;a:8:{s:3:"sha";s:40:"2dce002026cffd3f3e5b5f86b78b2eb43db3d69a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:123:"1.9 Bugfixes Fixed Bug with wrong Filechooser-direction in EditSeriesFrame -Fixed Bug where you can close an ProgressMonitor";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-23 10:55:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:403;a:8:{s:3:"sha";s:40:"4f4fd0dd16ac39deb1a86ffbc77116c7325a0ebb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:153:"1.9 Bugfixes +Fixed Bug where you can close an ProgressMonitor";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-23 10:55:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:976;a:8:{s:3:"sha";s:40:"4f4fd0dd16ac39deb1a86ffbc77116c7325a0ebb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:153:"1.9 Bugfixes Fixed Load-AV when Season has 0 Episodes -Fixed getCommonPathStart()-Bug when there is an empty series/ empty season / uninitialized episode";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 20:07:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:404;a:8:{s:3:"sha";s:40:"14e92ee68fe37f9c80497a613fa4a2d468204033";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:82:"1.9 Feature -Added additional integrity Check when finally closing AddEpisodesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 19:52:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:405;a:8:{s:3:"sha";s:40:"db6ac2aaf296f8df93b5a5aecf2ff12b923f1106";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"1.9 Bugfix -Fixed Omniparser-Bug where the Lines are not trimmed";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 19:26:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:406;a:8:{s:3:"sha";s:40:"7573ec620300f09431bf736ec2703cbfb17dea59";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:109:"1.9 Features +Fixed getCommonPathStart()-Bug when there is an empty series/ empty season / uninitialized episode";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 20:07:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:977;a:8:{s:3:"sha";s:40:"14e92ee68fe37f9c80497a613fa4a2d468204033";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:82:"1.9 Feature +Added additional integrity Check when finally closing AddEpisodesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 19:52:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:978;a:8:{s:3:"sha";s:40:"db6ac2aaf296f8df93b5a5aecf2ff12b923f1106";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"1.9 Bugfix +Fixed Omniparser-Bug where the Lines are not trimmed";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 19:26:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:979;a:8:{s:3:"sha";s:40:"7573ec620300f09431bf736ec2703cbfb17dea59";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:109:"1.9 Features Added "Play without changing Episode-State"-Feature -Added Debug-Feature to print TranslationTree";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 17:14:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:407;a:8:{s:3:"sha";s:40:"d8cb35ca818c5eb8632ca55aa9d93d433b5bb2c1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:124:"1.9 Tasks +Added Debug-Feature to print TranslationTree";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 17:14:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:980;a:8:{s:3:"sha";s:40:"d8cb35ca818c5eb8632ca55aa9d93d433b5bb2c1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:124:"1.9 Tasks Immproved Information-Output in CouldNotParseFSK Warning Added USA:"approved" to AgeRatingParser -Updated ToDo List";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 13:21:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:408;a:8:{s:3:"sha";s:40:"7dcbbbe11ff15966d7fece7021d2c438c98be89a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:87:"1.9 Bugfixes -Fixed Problem when re-importing Movies with NON-ASCII Chars (Encoding ...)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 12:53:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:409;a:8:{s:3:"sha";s:40:"50d1a7439a4fd15d2c9380b2d1291b9a5387b7a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"1.9 Bugfixes -Fixed CompareDatabase Bug wehre the selection was not correct registered";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-21 14:23:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:410;a:8:{s:3:"sha";s:40:"1ff06b49994b052ef378768cbd973a86c424cc6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:100:"1.9 Features +Updated ToDo List";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 13:21:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:981;a:8:{s:3:"sha";s:40:"7dcbbbe11ff15966d7fece7021d2c438c98be89a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:87:"1.9 Bugfixes +Fixed Problem when re-importing Movies with NON-ASCII Chars (Encoding ...)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-22 12:53:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:982;a:8:{s:3:"sha";s:40:"50d1a7439a4fd15d2c9380b2d1291b9a5387b7a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"1.9 Bugfixes +Fixed CompareDatabase Bug wehre the selection was not correct registered";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-21 14:23:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:983;a:8:{s:3:"sha";s:40:"1ff06b49994b052ef378768cbd973a86c424cc6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:100:"1.9 Features Finished Custom Filter Added Import / Export to Filter -Fixed Bug in Genre / Year Filter";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-21 13:34:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:411;a:8:{s:3:"sha";s:40:"bcb9c4878661dedf0803b3d3cb73f35f34be799c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"1.9 Features -Started Exporting / Importing of Custom Filter (unfinished)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-20 18:57:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:412;a:8:{s:3:"sha";s:40:"09bf88b8563a43508c210bbab5bdd64d40b0d141";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:133:"1.9 Features +Fixed Bug in Genre / Year Filter";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-21 13:34:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:984;a:8:{s:3:"sha";s:40:"bcb9c4878661dedf0803b3d3cb73f35f34be799c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"1.9 Features +Started Exporting / Importing of Custom Filter (unfinished)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-20 18:57:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:985;a:8:{s:3:"sha";s:40:"09bf88b8563a43508c210bbab5bdd64d40b0d141";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:133:"1.9 Features Added Custom-Table Filter Added CustomFilter for every TableField -Added AND / OR / NAND / NOR Operators for CustomFilter";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-20 16:26:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:413;a:8:{s:3:"sha";s:40:"2592d684b497aeb30896d1630f5f7dd326a54048";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:81:"1.9 Features +Added AND / OR / NAND / NOR Operators for CustomFilter";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-20 16:26:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:986;a:8:{s:3:"sha";s:40:"2592d684b497aeb30896d1630f5f7dd326a54048";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:81:"1.9 Features Finished Omniparser -Added VerticalScrollBarSynchronizer Helper Class";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-19 12:47:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:414;a:8:{s:3:"sha";s:40:"766443f64f626bdef9bb2b07123f0781f482713d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:164:"1.9 Features +Added VerticalScrollBarSynchronizer Helper Class";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-19 12:47:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:987;a:8:{s:3:"sha";s:40:"766443f64f626bdef9bb2b07123f0781f482713d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:164:"1.9 Features Added Big OmniParser Feature Reorganized Util-Classses (Changes in the imports in many classes [!] ) -Fixed Null-Pointer when displaying an empty series";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-16 20:42:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:415;a:8:{s:3:"sha";s:40:"fe5b8be3a6493cce42db746297aa82a3c54506e9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added even more 1.9 ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 19:19:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:416;a:8:{s:3:"sha";s:40:"275f4e5ffa5eb85278ed32e2423f71f076ec0132";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Imma gonna do alot of commits today (4. Try)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:59:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:417;a:8:{s:3:"sha";s:40:"28bd091706f070f5c9b59bbdb13bc4b576507df7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Third Try, wish me luck";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:58:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:418;a:8:{s:3:"sha";s:40:"a4b4c8047f07b25c609f88165b9bfff5df4cc630";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Second try 4 README";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:54:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:419;a:8:{s:3:"sha";s:40:"5a8fcc53aebc82c5e9d6fc57271579e249947ec4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:""Improved" Readme";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:50:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:420;a:8:{s:3:"sha";s:40:"478c87ca4254a948c0cb4159b9b8a670ff98ff77";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Addde more 1.9 ToDos -(I should start do REAL programming)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:42:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:421;a:8:{s:3:"sha";s:40:"c27c259d74b74c28842f92a29c9cc9fae9198ca9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added ToDos (Perhaps 1.9)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-18 13:22:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:422;a:8:{s:3:"sha";s:40:"5a17f1517ef043934ba2d9470d21ca6b5f05841a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.8.3 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-07 12:10:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:423;a:8:{s:3:"sha";s:40:"d4da5690109e4369690ea25ad591757f3a9d26d0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:273:"1.8.3 Bugfixes and Features +Fixed Null-Pointer when displaying an empty series";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-16 20:42:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:988;a:8:{s:3:"sha";s:40:"fe5b8be3a6493cce42db746297aa82a3c54506e9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added even more 1.9 ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 19:19:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:989;a:8:{s:3:"sha";s:40:"275f4e5ffa5eb85278ed32e2423f71f076ec0132";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Imma gonna do alot of commits today (4. Try)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:59:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:990;a:8:{s:3:"sha";s:40:"28bd091706f070f5c9b59bbdb13bc4b576507df7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Third Try, wish me luck";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:58:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:991;a:8:{s:3:"sha";s:40:"a4b4c8047f07b25c609f88165b9bfff5df4cc630";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Second try 4 README";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:54:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:992;a:8:{s:3:"sha";s:40:"5a8fcc53aebc82c5e9d6fc57271579e249947ec4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:""Improved" Readme";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:50:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:993;a:8:{s:3:"sha";s:40:"478c87ca4254a948c0cb4159b9b8a670ff98ff77";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Addde more 1.9 ToDos +(I should start do REAL programming)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-26 07:42:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:994;a:8:{s:3:"sha";s:40:"c27c259d74b74c28842f92a29c9cc9fae9198ca9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added ToDos (Perhaps 1.9)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-18 13:22:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:995;a:8:{s:3:"sha";s:40:"5a17f1517ef043934ba2d9470d21ca6b5f05841a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.8.3 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-07 12:10:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:996;a:8:{s:3:"sha";s:40:"d4da5690109e4369690ea25ad591757f3a9d26d0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:273:"1.8.3 Bugfixes and Features Added Error Handling for broken Coverfiles Added Error Handling in Large MD5 Calculator Added Possibility to fix single Databaseerror Added Information Monitor when backuping -Fixed wrong Seasonnumber for unsorted Seasons in CreateFolderStructure";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-04 17:12:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:424;a:8:{s:3:"sha";s:40:"78dafea58691e8a3af9fd3ceba1ba28c513535a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"1.8.3 Bugfixes -Hopefully finally fixed CCDateSpinner -.-";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-30 15:19:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:425;a:8:{s:3:"sha";s:40:"00642fe13ec884afd0ff80676ae528106def1f3f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"1.8.3 Features -Added possibility for public (or private) beta builds";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-22 21:37:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:426;a:8:{s:3:"sha";s:40:"915cb7df2ec91f9faa2c83fed07cef2a6e2921b0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:170:"1.8.3 Bugfixes +Fixed wrong Seasonnumber for unsorted Seasons in CreateFolderStructure";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-04 17:12:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:997;a:8:{s:3:"sha";s:40:"78dafea58691e8a3af9fd3ceba1ba28c513535a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"1.8.3 Bugfixes +Hopefully finally fixed CCDateSpinner -.-";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-30 15:19:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:998;a:8:{s:3:"sha";s:40:"00642fe13ec884afd0ff80676ae528106def1f3f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"1.8.3 Features +Added possibility for public (or private) beta builds";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-22 21:37:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:999;a:8:{s:3:"sha";s:40:"915cb7df2ec91f9faa2c83fed07cef2a6e2921b0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:170:"1.8.3 Bugfixes Fixed Overriding in CCDateSpinner Added Big "Continue Watching" Button to PreviewSeriesFRame -CCDate is now an immutable Object (possible root for new bugs)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-22 16:57:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:427;a:8:{s:3:"sha";s:40:"e54ab3ed3634fb9bd669bed7b78422d86aebdf2d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Added ToDo";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 15:47:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:428;a:8:{s:3:"sha";s:40:"39838d7af31b6cd24ca5b8ac0452429b408c865b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Updated Changelog + ToDo + gitCommands";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 08:35:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:429;a:8:{s:3:"sha";s:40:"f4604ba821de8d362624a8e5353ca331ff8e6271";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.8.2 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 20:58:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:430;a:8:{s:3:"sha";s:40:"db437eade4ee8fdcc4765633ce906aa54a6b6226";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:116:"1.8.2 Bugfixes +CCDate is now an immutable Object (possible root for new bugs)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-22 16:57:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1000;a:8:{s:3:"sha";s:40:"e54ab3ed3634fb9bd669bed7b78422d86aebdf2d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Added ToDo";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 15:47:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1001;a:8:{s:3:"sha";s:40:"39838d7af31b6cd24ca5b8ac0452429b408c865b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Updated Changelog + ToDo + gitCommands";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 08:35:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1002;a:8:{s:3:"sha";s:40:"f4604ba821de8d362624a8e5353ca331ff8e6271";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.8.2 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 20:58:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1003;a:8:{s:3:"sha";s:40:"db437eade4ee8fdcc4765633ce906aa54a6b6226";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:116:"1.8.2 Bugfixes Fixed getRelativePath for non absolute Paths -Improved Error Managment in CreateSeriesFolderStructure";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 12:47:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:431;a:8:{s:3:"sha";s:40:"8f8eaa1a01b16d2b4e746a20a88329cd40131648";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Removed already done ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 10:42:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:432;a:8:{s:3:"sha";s:40:"624b5c6497fecc7e251e9c592a0ba19d5a7ec867";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:174:"1.8.2 Bugfixes + Features +Improved Error Managment in CreateSeriesFolderStructure";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 12:47:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1004;a:8:{s:3:"sha";s:40:"8f8eaa1a01b16d2b4e746a20a88329cd40131648";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Removed already done ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 10:42:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1005;a:8:{s:3:"sha";s:40:"624b5c6497fecc7e251e9c592a0ba19d5a7ec867";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:174:"1.8.2 Bugfixes + Features Added Read Only Mode Added additional VLC Paths Fixed unused ACtionELements in SHortcut Settings -Improved ActionELement Naming in Shortcut Settings";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 10:38:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:433;a:8:{s:3:"sha";s:40:"2807074eedf484e47821466965f2446bf95f586b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:334:"1.8.2 Bugfixes +Improved ActionELement Naming in Shortcut Settings";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 10:38:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1006;a:8:{s:3:"sha";s:40:"2807074eedf484e47821466965f2446bf95f586b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:334:"1.8.2 Bugfixes Fixed Series->openInFoder: Opening wrong path Fixed CCDate Spinner not regitering manually inserted CCDates @@ -191,19 +277,19 @@ Added Recognizing of short years ('95) to CCDate Parser Fixed getCommonFolderPath resulting in an endless loop for empty input values Added CheckForUpdates CCAction -Added Case for No Update found in UpdateFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-03 14:51:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:434;a:8:{s:3:"sha";s:40:"dce0da228ff935f453996e141742afe960711523";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:128:"1.8.2 Bugfixes +Added Case for No Update found in UpdateFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-03 14:51:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1007;a:8:{s:3:"sha";s:40:"dce0da228ff935f453996e141742afe960711523";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:128:"1.8.2 Bugfixes AddEpisodesFrame: Fixed Wrong Spinner for Sidebarbutton -EditSeriesFrame: Update List after Changing Episodetitle";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-02 14:08:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:435;a:8:{s:3:"sha";s:40:"adf08e64b156a77860a4a050a7feecf88a62104e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:122:"1.8.1 RELEASE +EditSeriesFrame: Update List after Changing Episodetitle";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-02 14:08:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1008;a:8:{s:3:"sha";s:40:"adf08e64b156a77860a4a050a7feecf88a62104e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:122:"1.8.1 RELEASE Fixed AV when Autofixing wrong Quality of an Episode -createSTructureFrame closes after successful operation";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-01 19:25:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:436;a:8:{s:3:"sha";s:40:"f2044482b4bc307ba5fa1e05897c1a4c315b03a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"1.8 RELEASE +createSTructureFrame closes after successful operation";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-01 19:25:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1009;a:8:{s:3:"sha";s:40:"f2044482b4bc307ba5fa1e05897c1a4c315b03a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"1.8 RELEASE -Updated Version to 1.8";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-01 15:54:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:437;a:8:{s:3:"sha";s:40:"5e75587e01c9f67182af4d24e4c0e14c7ba17dbc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:145:"1.8 Features +Updated Version to 1.8";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-01 15:54:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1010;a:8:{s:3:"sha";s:40:"5e75587e01c9f67182af4d24e4c0e14c7ba17dbc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:145:"1.8 Features Fixed various AV's when doing Action with an unfinished DriveMap Showing the Translationcount as Debugmessage -Added Statistics-Icon";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-01 12:25:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:438;a:8:{s:3:"sha";s:40:"310f185a2f5b5ae505b5a65cd0a87c347748e30a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:309:"1.8 Features (StatisticsFrame completed) +Added Statistics-Icon";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-01 12:25:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1011;a:8:{s:3:"sha";s:40:"310f185a2f5b5ae505b5a65cd0a87c347748e30a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:309:"1.8 Features (StatisticsFrame completed) Finished StatisticsFrame: Added Userscore-Chart @@ -214,7 +300,7 @@ Added Tags-Chart Added Hours/Date-Chart (Movies, Series, both) Added Size/Date-Chart Added Hidden Option for Interactive Charts (Default-off) -Fixed Sort-per-Year AV";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-01 11:33:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:439;a:8:{s:3:"sha";s:40:"ececcfeca1db62f8987b146fb92a8f5fef8c8be6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:211:"1.8 Features (StatisticsFrame) +Fixed Sort-per-Year AV";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-01 11:33:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1012;a:8:{s:3:"sha";s:40:"ececcfeca1db62f8987b146fb92a8f5fef8c8be6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:211:"1.8 Features (StatisticsFrame) Added StatisticsFrame Added Statistics Sidebar @@ -224,38 +310,38 @@ Added Length-Chart Added Score-Chart Added Quality-Chart Added Viewed-Chart -Added Year-Chart";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-31 22:40:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:440;a:8:{s:3:"sha";s:40:"e30e87483827afa7e9167ff80cc2529b9343a31b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:282:"1.8 Features (PreviewSeriesFrame) +Added Year-Chart";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-31 22:40:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1013;a:8:{s:3:"sha";s:40:"e30e87483827afa7e9167ff80cc2529b9343a31b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:282:"1.8 Features (PreviewSeriesFrame) JCoverChooser only reacts to left MouseButton Added RightClickMenu to Cover Added all the Options to SeriesMenu, SeasonMenu, ExtrasMenu and PopupMenu in PreviewSeriesFrame Added getInstance to MainFrame (IntermediateBlocking without direct -access)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-30 21:00:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:441;a:8:{s:3:"sha";s:40:"4bb6cf01f0aaa75b0e8d9a14d84d747c2884e4db";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:99:"1.8 Bugfixes +access)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-30 21:00:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1014;a:8:{s:3:"sha";s:40:"4bb6cf01f0aaa75b0e8d9a14d84d747c2884e4db";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:99:"1.8 Bugfixes Added CalcQuality-Button to EditSeriesFrame -Added forceDBUpdate Funktion to MovieList";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-30 15:21:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:442;a:8:{s:3:"sha";s:40:"04318fb57e9e4651f68a5b72ee6f65b1db06a0c0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:100:"1.8 Features (createSeriesFolderStructure) +Added forceDBUpdate Funktion to MovieList";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-30 15:21:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1015;a:8:{s:3:"sha";s:40:"04318fb57e9e4651f68a5b72ee6f65b1db06a0c0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:100:"1.8 Features (createSeriesFolderStructure) Finished cSFS-Functionality -Added ActionElement for this";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-30 14:10:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:443;a:8:{s:3:"sha";s:40:"ae255516920182b284fcacc191073e07c4dc1d2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:101:"1.8 Features (createSeriesFolderStructure) +Added ActionElement for this";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-30 14:10:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1016;a:8:{s:3:"sha";s:40:"ae255516920182b284fcacc191073e07c4dc1d2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:101:"1.8 Features (createSeriesFolderStructure) started Series-cFS-Dialog -createdGUI for Series-cFS-Frame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-29 18:32:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:444;a:8:{s:3:"sha";s:40:"a3e9c3f679a20916fa1892e264ca3006eccf150d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:165:"1.8 Features (MoveSeriesDialog) +createdGUI for Series-cFS-Frame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-29 18:32:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1017;a:8:{s:3:"sha";s:40:"a3e9c3f679a20916fa1892e264ca3006eccf150d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:165:"1.8 Features (MoveSeriesDialog) Resizable MoveSeriesDialog Visual Feedback if Operation is possible in MoveSeriesDialog -Preview before executing in MoveSeriesDialog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-29 14:02:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:445;a:8:{s:3:"sha";s:40:"9411456ad09406859c0e7f1d5f995bfbe45dff0f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:212:"1.8 Features (CheckDatabaseFrame) +Preview before executing in MoveSeriesDialog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-29 14:02:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1018;a:8:{s:3:"sha";s:40:"9411456ad09406859c0e7f1d5f995bfbe45dff0f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:212:"1.8 Features (CheckDatabaseFrame) Added CategoryList to CheckDatabaseFrame Added ErrorType to DatabaseError Added visualization of Autofixable to List in CheckDatabaseFrame -Added Translations to Error-Categories";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-29 11:52:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:446;a:8:{s:3:"sha";s:40:"94dd03d09b91559f70505cae1982275c810f98db";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:143:"1.8 Features (Tag System completed) +Added Translations to Error-Categories";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-29 11:52:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1019;a:8:{s:3:"sha";s:40:"94dd03d09b91559f70505cae1982275c810f98db";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:143:"1.8 Features (Tag System completed) New and better Tag-Icons (but not perfect ...) No duplicate Icons in Resources -Better Tag Display in Table";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-27 13:10:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:447;a:8:{s:3:"sha";s:40:"6dd606caa515a50c6fb77de3d3f10ba02d5809da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"1.8 Features +Better Tag Display in Table";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-27 13:10:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1020;a:8:{s:3:"sha";s:40:"6dd606caa515a50c6fb77de3d3f10ba02d5809da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"1.8 Features -Updated the DB-Version, for real this time";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-26 19:38:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:448;a:8:{s:3:"sha";s:40:"8d5be075c215697b99c27a9ecbc9c33c180b8f7c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:345:"1.8 Features (Tag-System) +Updated the DB-Version, for real this time";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-26 19:38:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1021;a:8:{s:3:"sha";s:40:"8d5be075c215697b99c27a9ecbc9c33c180b8f7c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:345:"1.8 Features (Tag-System) Added, Removed and changed Ions Removed MagicNumbers in PreviewSeriesTable @@ -264,58 +350,58 @@ Added Tags to Movies and Episodes Added TagPanel to Display Tags of an Element Updated Database structure to 1.6 Updated Locales (Removed a few Inconsistencies) -Fatal Error on wrong Database structure";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-26 19:36:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:449;a:8:{s:3:"sha";s:40:"456e483d0bd082b8981e2a07a0cdc038e0e58080";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.7.3 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-25 13:23:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:450;a:8:{s:3:"sha";s:40:"6ff55b0ff9c2d6d7485e01a7c4a90a02c1899751";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:279:"1.7.3 Fixes and Tasks +Fatal Error on wrong Database structure";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-26 19:36:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1022;a:8:{s:3:"sha";s:40:"456e483d0bd082b8981e2a07a0cdc038e0e58080";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"1.7.3 RELEASE";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-25 13:23:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1023;a:8:{s:3:"sha";s:40:"6ff55b0ff9c2d6d7485e01a7c4a90a02c1899751";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:279:"1.7.3 Fixes and Tasks New empty Seasons now have the name New empty Episodes now have the name SeasonList gets updated in EditSeriesFrame when updating a Seasontitle Changed Quality to be dependent on Length -Added CalcQuality Button to Add/Edit -MovieFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-25 13:10:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:451;a:8:{s:3:"sha";s:40:"db20a957f945bcd4a1b7c2e3436848089d164fef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"1.7.3 ToDOs +Added CalcQuality Button to Add/Edit -MovieFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-25 13:10:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1024;a:8:{s:3:"sha";s:40:"db20a957f945bcd4a1b7c2e3436848089d164fef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"1.7.3 ToDOs -I should start coding - ToDos dont help";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-24 19:11:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:452;a:8:{s:3:"sha";s:40:"c5b1e4dda3634129d68df551d940c9f98f0d97af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"1.7.3 Updated ToDos +I should start coding - ToDos dont help";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-24 19:11:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1025;a:8:{s:3:"sha";s:40:"c5b1e4dda3634129d68df551d940c9f98f0d97af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"1.7.3 Updated ToDos -And the ToDo List is growing and growing";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-22 17:40:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:453;a:8:{s:3:"sha";s:40:"6c17133706cf9be4d8e192ac93469caa8fa6870b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"1.7.3 ToDos Update +And the ToDo List is growing and growing";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-22 17:40:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1026;a:8:{s:3:"sha";s:40:"6c17133706cf9be4d8e192ac93469caa8fa6870b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"1.7.3 ToDos Update -Added Requests/Bugs from Benjamin";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-21 19:49:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:454;a:8:{s:3:"sha";s:40:"b64a6c2a80a1594f77372cc62d65518d6dfa5c47";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"1.7.3 Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-21 07:24:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:455;a:8:{s:3:"sha";s:40:"4bf643bbe17e7010861c5b4d9dcdd3f6f789d537";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"1.7.2 RELEASE +Added Requests/Bugs from Benjamin";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-21 19:49:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1027;a:8:{s:3:"sha";s:40:"b64a6c2a80a1594f77372cc62d65518d6dfa5c47";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"1.7.3 Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-21 07:24:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1028;a:8:{s:3:"sha";s:40:"4bf643bbe17e7010861c5b4d9dcdd3f6f789d537";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"1.7.2 RELEASE -Bugfix Release";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-18 12:58:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:456;a:8:{s:3:"sha";s:40:"edc45b6f07439f7b47f50b5cffdc7093c4a28646";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"1.7.2 Code Cleanup +Bugfix Release";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-18 12:58:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1029;a:8:{s:3:"sha";s:40:"edc45b6f07439f7b47f50b5cffdc7093c4a28646";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"1.7.2 Code Cleanup -Removed "Magic Numbers" for Column-Indizies";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-18 12:53:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:457;a:8:{s:3:"sha";s:40:"4b0f216091ce531e26d7f9a0b6243df48e634bcc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"1.7.2 Bugfix +Removed "Magic Numbers" for Column-Indizies";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-18 12:53:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1030;a:8:{s:3:"sha";s:40:"4b0f216091ce531e26d7f9a0b6243df48e634bcc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"1.7.2 Bugfix -Fixed Wrong renaming for English/France or Muted Movies";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-18 11:46:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:458;a:8:{s:3:"sha";s:40:"82bf886fce39e2215b803fd60db48e5ee7aa0106";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"1.7.1 RELEASE +Fixed Wrong renaming for English/France or Muted Movies";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-18 11:46:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1031;a:8:{s:3:"sha";s:40:"82bf886fce39e2215b803fd60db48e5ee7aa0106";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"1.7.1 RELEASE -Bugfix Release";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-09 17:17:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:459;a:8:{s:3:"sha";s:40:"b266409a5d2505c5af0894b2047887450cbf1cc4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:150:"1.7.1 Bugfixes +Bugfix Release";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-09 17:17:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1032;a:8:{s:3:"sha";s:40:"b266409a5d2505c5af0894b2047887450cbf1cc4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:150:"1.7.1 Bugfixes Fixed Null-Cover Bug Fixed Element-Changed-Listener resetting TableSelection -Fixed jCoverChooser drawing an null-Image (i hope so ...)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-09 17:06:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:460;a:8:{s:3:"sha";s:40:"9a6639b79eea7774d2fb96f8090907e096bea92b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"1.7.1 Bugfixes +Fixed jCoverChooser drawing an null-Image (i hope so ...)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-09 17:06:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1033;a:8:{s:3:"sha";s:40:"9a6639b79eea7774d2fb96f8090907e096bea92b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"1.7.1 Bugfixes Fixed Translations -Fixed Button Enablation in CheckDatabaseFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-01 15:28:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:461;a:8:{s:3:"sha";s:40:"1af8dfbf95e7eb1ac9efb4517139f8abd9412976";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"1.7 Changelog +Fixed Button Enablation in CheckDatabaseFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-01 15:28:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1034;a:8:{s:3:"sha";s:40:"1af8dfbf95e7eb1ac9efb4517139f8abd9412976";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"1.7 Changelog -Updated Changelog for 1.7";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 16:56:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:462;a:8:{s:3:"sha";s:40:"c86ec584d82f06f6c36866740b91d1c2f2e65849";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"1.7 RELEASE +Updated Changelog for 1.7";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 16:56:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1035;a:8:{s:3:"sha";s:40:"c86ec584d82f06f6c36866740b91d1c2f2e65849";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"1.7 RELEASE -Updated Version to "1.7"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 16:54:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:463;a:8:{s:3:"sha";s:40:"da33e77059cf1e1a5056de552793f36045a406e0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"1.7 Fixes +Updated Version to "1.7"";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 16:54:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1036;a:8:{s:3:"sha";s:40:"da33e77059cf1e1a5056de552793f36045a406e0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"1.7 Fixes Fixed Translation Fixed a few Bugs -Oragnized ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 16:53:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:464;a:8:{s:3:"sha";s:40:"59a00b33eccea2f1b44ee2f3cd20f9d1a7afd26d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"1.7 Features +Oragnized ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 16:53:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1037;a:8:{s:3:"sha";s:40:"59a00b33eccea2f1b44ee2f3cd20f9d1a7afd26d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"1.7 Features -Added Option for Clickable Zyklus";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 16:41:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:465;a:8:{s:3:"sha";s:40:"a53c38631b464fa0290613a7d7e08dd424545b78";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:149:"1.7 Features +Added Option for Clickable Zyklus";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 16:41:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1038;a:8:{s:3:"sha";s:40:"a53c38631b464fa0290613a7d7e08dd424545b78";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:149:"1.7 Features Improved the Search in PreviewSeriesFrame Added Settings for displaying Columns in Statusbar -Added the RabdomMovieFrame ("Filmtrommel")";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 08:17:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:466;a:8:{s:3:"sha";s:40:"208f9f7a065bc0c1ec388631a7ff45b95b063d9d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:167:"1.7 Features+Bugfix +Added the RabdomMovieFrame ("Filmtrommel")";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-29 08:17:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1039;a:8:{s:3:"sha";s:40:"208f9f7a065bc0c1ec388631a7ff45b95b063d9d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:167:"1.7 Features+Bugfix Fixed Zero-Height Lines in JList (on empty elements) Fixed Layout (Wrong Widths) of Lists in editToolbarFrame -Added Non-Linked-Cover DatabaseError";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-27 14:17:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:467;a:8:{s:3:"sha";s:40:"1c8c24810c49b277936e3a5e5cec3b0f38c0617c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:162:"1.7 Features +Added Non-Linked-Cover DatabaseError";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-27 14:17:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1040;a:8:{s:3:"sha";s:40:"1c8c24810c49b277936e3a5e5cec3b0f38c0617c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:162:"1.7 Features Added Option for Add-Date Calculation-Method in Settings Added Missing Icons Added 16x16 Icons (now there should no Icons get down-sized in -runtime)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-27 13:29:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:468;a:8:{s:3:"sha";s:40:"2d5e45472409810c07a9ba2b72abd4d92d7bb1bb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:549:"1.7 Bugfixes +runtime)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-27 13:29:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1041;a:8:{s:3:"sha";s:40:"2d5e45472409810c07a9ba2b72abd4d92d7bb1bb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:549:"1.7 Bugfixes Fixed too small seperator in editToolbarFrame Fixed Nullpointer when adding/previewing/deleting season @@ -326,56 +412,56 @@ Added UserDataProblem "Untrimmed" to CCSeries Added UserDataProblem "Untrimmed" to CCSeason Added UserDataProblem "Untrimmed" to CCEpisode Fixed Color of CaptionedPanel in addMultipleEpisodesFrame -Fixed Backgroundcolor of PathEdit in addMultipleEpisodesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 21:40:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:469;a:8:{s:3:"sha";s:40:"55768ea43e30f0046b78e963468d704a98a63602";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"1.7 Libraryfix +Fixed Backgroundcolor of PathEdit in addMultipleEpisodesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 21:40:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1042;a:8:{s:3:"sha";s:40:"55768ea43e30f0046b78e963468d704a98a63602";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:80:"1.7 Libraryfix Fixed BeanUtils Library (again) -- Removed duplicate files in jar";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 17:47:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:470;a:8:{s:3:"sha";s:40:"8a126b25a55c343af936f80e5c62a86b7ae01003";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:183:"1.7 Bugfix +- Removed duplicate files in jar";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 17:47:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1043;a:8:{s:3:"sha";s:40:"8a126b25a55c343af936f80e5c62a86b7ae01003";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:183:"1.7 Bugfix Removed Test-Ressource-File (*_16x16.png) Fixed Fatal AV when Searching for Directory Fixed the possibility to open Windows while in an blocking call (through -Screenshots)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 14:08:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:471;a:8:{s:3:"sha";s:40:"234340b2eb857746d3e97b282ad390c129fb8b42";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:201:"1.7 Features +Screenshots)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 14:08:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1044;a:8:{s:3:"sha";s:40:"234340b2eb857746d3e97b282ad390c129fb8b42";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:201:"1.7 Features Fixed Missing BeanUtils-Exception Bug (now using custom compiled beanutils.jar) Added support for prerenderered 16x16 Icons Fixed Border around Seperator in EditToolbarFrame -Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 13:12:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:472;a:8:{s:3:"sha";s:40:"70e9c3660f470844da265e23c68f7650b6692542";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:170:"1.7 Features +Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 13:12:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1045;a:8:{s:3:"sha";s:40:"70e9c3660f470844da265e23c68f7650b6692542";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:170:"1.7 Features Added PropertyCheckbox Added Option to change the Toolbar added ToolbarConfigPanel to show ToolbarConfig -Added EditToolbarFrame to change the Toolbar visual";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 12:15:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:473;a:8:{s:3:"sha";s:40:"577de01cbea3a85aceaa815effd23c32cad45100";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"1.7 Bugfix +Added EditToolbarFrame to change the Toolbar visual";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 12:15:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1046;a:8:{s:3:"sha";s:40:"577de01cbea3a85aceaa815effd23c32cad45100";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"1.7 Bugfix -Fixed missing jGoodies-Commons Library";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 07:11:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:474;a:8:{s:3:"sha";s:40:"bf4928fcf32621e8352ee65f1e5052e74aeb3407";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Export Fix (BeanUtils) +Fixed missing jGoodies-Commons Library";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 07:11:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1047;a:8:{s:3:"sha";s:40:"bf4928fcf32621e8352ee65f1e5052e74aeb3407";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Export Fix (BeanUtils) -Fixed the Duplicate-Entry Bug when exporting";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 07:00:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:475;a:8:{s:3:"sha";s:40:"14f0b30466d92da7fe58fc2c77d0fc85db95ef4e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:99:"1.7 Possible Bugfixes +Fixed the Duplicate-Entry Bug when exporting";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 07:00:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1048;a:8:{s:3:"sha";s:40:"14f0b30466d92da7fe58fc2c77d0fc85db95ef4e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:99:"1.7 Possible Bugfixes Fixed new Warnnings due to new Eclipse Settings -- Fixed a few ressourceleaks";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 06:50:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:476;a:8:{s:3:"sha";s:40:"9e4ff372bcc520a093513776bfcc9b148e70fb6f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:146:"Git cleanup +- Fixed a few ressourceleaks";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 06:50:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1049;a:8:{s:3:"sha";s:40:"9e4ff372bcc520a093513776bfcc9b148e70fb6f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:146:"Git cleanup Added Eclipse Files to Repository Configured Project specific settings Added javadoc to repository -Updated Derby and jGoodies Library";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 06:49:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:477;a:8:{s:3:"sha";s:40:"665668f0be7392cfe7ad78bc27cc98feeb4e8176";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"Added gitcommands +Updated Derby and jGoodies Library";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-26 06:49:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1050;a:8:{s:3:"sha";s:40:"665668f0be7392cfe7ad78bc27cc98feeb4e8176";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"Added gitcommands -Added gitcommands - a list of Commands for git";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 19:25:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:478;a:8:{s:3:"sha";s:40:"387233a21bdd40dfb1bb80796d2c6549a7ca6400";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Changelog Fix 2 +Added gitcommands - a list of Commands for git";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 19:25:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1051;a:8:{s:3:"sha";s:40:"387233a21bdd40dfb1bb80796d2c6549a7ca6400";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Changelog Fix 2 -Changed Changelog Encoding from UTF-8 (BOM) to ANSI";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 14:12:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:479;a:8:{s:3:"sha";s:40:"7230cc8bf7bdc662d7b811b704cf800b40e074da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:93:"Changelog Fix +Changed Changelog Encoding from UTF-8 (BOM) to ANSI";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 14:12:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1052;a:8:{s:3:"sha";s:40:"7230cc8bf7bdc662d7b811b704cf800b40e074da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:93:"Changelog Fix Fixed Wrong Encoding in Changelog (removed BOM,, Encoding from UCS-2 to -UTF-8)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 14:08:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:480;a:8:{s:3:"sha";s:40:"812e08e5798c600b0312a862f53ea8fd821fdf0a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:165:"1.7 Features +UTF-8)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 14:08:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1053;a:8:{s:3:"sha";s:40:"812e08e5798c600b0312a862f53ea8fd821fdf0a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:165:"1.7 Features Add Cache-Function to Movieplayer (it remembers the VLC-Path) Removed the Cancel-Button from ParseImDBDialog -(Noone noticed it had no functionality ^^)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 13:30:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:481;a:8:{s:3:"sha";s:40:"bc8a97733aff1c1cc15cc7f0d1605cc3276a9b30";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"1.7 Features +(Noone noticed it had no functionality ^^)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 13:30:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1054;a:8:{s:3:"sha";s:40:"bc8a97733aff1c1cc15cc7f0d1605cc3276a9b30";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"1.7 Features -Added Episodeguide-Export to Series";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 13:11:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:482;a:8:{s:3:"sha";s:40:"8d7878c58dcfeebfef912764294b6f65587482a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:74:"1.7 Glitchfix +Added Episodeguide-Export to Series";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 13:11:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1055;a:8:{s:3:"sha";s:40:"8d7878c58dcfeebfef912764294b6f65587482a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:74:"1.7 Glitchfix -Rewrite of the SFixTable, should now work ("nearly") always";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 12:17:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:483;a:8:{s:3:"sha";s:40:"ca563000fa8ff3c1d5c4634aaf63707c5e9c2e4b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:97:"1.7 Features +Rewrite of the SFixTable, should now work ("nearly") always";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 12:17:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1056;a:8:{s:3:"sha";s:40:"ca563000fa8ff3c1d5c4634aaf63707c5e9c2e4b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:97:"1.7 Features Improved ExtendedSettingsframe (now uses the Component Methods from the -Properties)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 11:46:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:484;a:8:{s:3:"sha";s:40:"ae8e772ab0514b3f948c73f180c80e41a0681fa0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:302:"1.7 Features +Properties)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 11:46:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1057;a:8:{s:3:"sha";s:40:"ae8e772ab0514b3f948c73f180c80e41a0681fa0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:302:"1.7 Features Added Shortcuts for ExportList Added Option to export Movies in CompareDatabaseDialog @@ -383,12 +469,12 @@ Added (hidden) option for ImDB-Parser-Language Added automatic sorter to extendedSettingsFrame Added general openFile-Dialog Cleaned up the open File Methods (moved all openFile-Things to extra -methods)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 11:02:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:485;a:8:{s:3:"sha";s:40:"15db3d3895efeb9667f43068a9650429bf4ce689";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:109:"1.7 Features +methods)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 11:02:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1058;a:8:{s:3:"sha";s:40:"15db3d3895efeb9667f43068a9650429bf4ce689";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:109:"1.7 Features Finished Single-Import Finished Single-Export Finished Multiple-Import -Finished Multiple-Export";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 07:59:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:486;a:8:{s:3:"sha";s:40:"a15d3b59cc69e649afae27b9a2c038b5979cc6f9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:317:"1.7 Features +Finished Multiple-Export";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-25 07:59:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1059;a:8:{s:3:"sha";s:40:"a15d3b59cc69e649afae27b9a2c038b5979cc6f9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:317:"1.7 Features Added Option to export Cover in XML Added LocalID to searched Fields in SearchFrame @@ -397,10 +483,10 @@ Added (incomplete) Import-Movie-from-jccsexport-File Function Added ImportElementsFrame to Import One or Multiple Elements from a File Small Bugfixes Updated Locale-Files -Updated ToDOs";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-24 14:12:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:487;a:8:{s:3:"sha";s:40:"f2d1484261ab182ff70b9d69cd10c406d91a1309";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:142:"1.7 Big Code Cleanup +Updated ToDOs";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-24 14:12:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1060;a:8:{s:3:"sha";s:40:"f2d1484261ab182ff70b9d69cd10c406d91a1309";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:142:"1.7 Big Code Cleanup Massive CodeCleanup with >>Google CodePro AnalytiX<< -Fixed a lot of bad code, possible errors and ugly programming style";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-24 08:14:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:488;a:8:{s:3:"sha";s:40:"5b6d25d734956017f54edbadbb65d229a7946d92";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:254:"1.7 Code Cleanup +Fixed a lot of bad code, possible errors and ugly programming style";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-24 08:14:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1061;a:8:{s:3:"sha";s:40:"5b6d25d734956017f54edbadbb65d229a7946d92";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:254:"1.7 Code Cleanup Fixed "unclean" Code (CodePro AnalytiX): - Added Names to Threads @@ -408,37 +494,37 @@ Fixed "unclean" Code (CodePro AnalytiX): - Replaced "startsWith" with "charAt(0)" - Removed obsolete semikolons - Made LocalizedVector Methods synchronized -- Various other improvements";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 13:41:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:489;a:8:{s:3:"sha";s:40:"c6a952f256196f6b589c9f0509e84c1e42c61fcb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"1.7 Code Cleanup +- Various other improvements";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 13:41:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1062;a:8:{s:3:"sha";s:40:"c6a952f256196f6b589c9f0509e84c1e42c61fcb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"1.7 Code Cleanup -Removed unused Localizations";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 12:51:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:490;a:8:{s:3:"sha";s:40:"7383854cc3df5ccf0de6554d00679368fea60e10";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:291:"1.7 Features +Removed unused Localizations";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 12:51:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1063;a:8:{s:3:"sha";s:40:"7383854cc3df5ccf0de6554d00679368fea60e10";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:291:"1.7 Features Forced Extension in SaveDialogs Removed strange empty lines in Coverlabel (dafuq ?) Fixed Bug when deleting Series (not deleting all cover / deleting some 2 times) Fixed ConcurrentModification in getGenreList (yay, finally) -Added OnRefresh Event (after the Blocking of the App)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 12:39:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:491;a:8:{s:3:"sha";s:40:"048dc5efc92116d08a7b39a953899403a66a5e0d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:96:"1.7 Features +Added OnRefresh Event (after the Blocking of the App)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 12:39:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1064;a:8:{s:3:"sha";s:40:"048dc5efc92116d08a7b39a953899403a66a5e0d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:96:"1.7 Features Removed the unnecessary Frame ExportJXMLBKPDialog (Functionality is now -frameless)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 11:42:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:492;a:8:{s:3:"sha";s:40:"51b0d4783e3771d8a73a310eeb4a0fb3b1b287b4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:326:"1.7 Features +frameless)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 11:42:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1065;a:8:{s:3:"sha";s:40:"51b0d4783e3771d8a73a310eeb4a0fb3b1b287b4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:326:"1.7 Features Added Option to load previously exported (jxmlbkp) Databases Moved the zip / export / import Functionality to ExportHelper.java Added parseXML Functions to CCMovie, CCSeries, CCSeason and CCEpisode It now needs a doubleclick to open the Log -Fixed Bug in Settingsframe with empty Descriptions (captionIdent == "")";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 11:18:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:493;a:8:{s:3:"sha";s:40:"7fe340e40f0f798a7a6ebde9ec8e5a68e99e553e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"1.7 Updated ToDOs +Fixed Bug in Settingsframe with empty Descriptions (captionIdent == "")";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-23 11:18:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1066;a:8:{s:3:"sha";s:40:"7fe340e40f0f798a7a6ebde9ec8e5a68e99e553e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"1.7 Updated ToDOs -A lot of TODO Updates ...";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-22 11:41:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:494;a:8:{s:3:"sha";s:40:"44da715c6b1a2387a370f0a24abca6c4540f411f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"1.7 Features +A lot of TODO Updates ...";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-22 11:41:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1067;a:8:{s:3:"sha";s:40:"44da715c6b1a2387a370f0a24abca6c4540f411f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"1.7 Features Added DatabaseError for Wrong Filename -Added Autofix for Wrong Filename";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-14 19:09:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:495;a:8:{s:3:"sha";s:40:"e8d2fffc99a272ba7b11c4cdcb5ec9b1dcf10d77";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:73:"1.7 Features +Added Autofix for Wrong Filename";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-14 19:09:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1068;a:8:{s:3:"sha";s:40:"e8d2fffc99a272ba7b11c4cdcb5ec9b1dcf10d77";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:73:"1.7 Features Added TestCase to CCDate -Fixed WeekdayCalculation in CCDate";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-14 12:06:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:496;a:8:{s:3:"sha";s:40:"a25ab33e4508a83c7fca579d1e9ecc19f935ff24";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"1.6 Changelog +Fixed WeekdayCalculation in CCDate";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-14 12:06:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1069;a:8:{s:3:"sha";s:40:"a25ab33e4508a83c7fca579d1e9ecc19f935ff24";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"1.6 Changelog -Updated Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 21:29:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:497;a:8:{s:3:"sha";s:40:"c3378800f581e2ddbfeae49e99e0afd73b41bbb9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"1.6 RELEASE +Updated Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 21:29:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1070;a:8:{s:3:"sha";s:40:"c3378800f581e2ddbfeae49e99e0afd73b41bbb9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"1.6 RELEASE -Changed the Versionnumber";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 20:42:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:498;a:8:{s:3:"sha";s:40:"6621624e788ac5063285394f5f3c6b9914ed3993";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:401:"1.6 Features +Changed the Versionnumber";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 20:42:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1071;a:8:{s:3:"sha";s:40:"6621624e788ac5063285394f5f3c6b9914ed3993";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:401:"1.6 Features Finished Shortcut System: - Automatic Shortcuts for all Elements in the ActionTree @@ -448,16 +534,16 @@ Finished Shortcut System: Better Width and Height-Managment in Settingsframe: - Automatic calc the Height (use Scrollbar if too much) - Automatic calc the Amount of Tabs -Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 20:40:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:499;a:8:{s:3:"sha";s:40:"cd455e590137e7827da00e188bdb84403ec7c961";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:206:"1.6 Features +Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 20:40:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1072;a:8:{s:3:"sha";s:40:"cd455e590137e7827da00e188bdb84403ec7c961";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:206:"1.6 Features Cleaned up the CCProperties code: - getValue is now abstract - setValue is now abstract - No more ugly hard casts in CCProperties - easier to add new Property Formats -Added CCKeyStrokeProperty";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 15:05:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:500;a:8:{s:3:"sha";s:40:"6dc9d3d8e401bd98d71abaf193f1a6223853b10a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"1.6 Features +Added CCKeyStrokeProperty";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 15:05:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1073;a:8:{s:3:"sha";s:40:"6dc9d3d8e401bd98d71abaf193f1a6223853b10a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"1.6 Features -Added Keyboard Shortcuts";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 14:21:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:501;a:8:{s:3:"sha";s:40:"bde75896cf5039cea01f08a960ccd8fd3d39e170";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:327:"1.6 Bugfix and Features +Added Keyboard Shortcuts";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 14:21:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1074;a:8:{s:3:"sha";s:40:"bde75896cf5039cea01f08a960ccd8fd3d39e170";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:327:"1.6 Bugfix and Features Fixed Focus Bugs in MassChangeScoreFrame Fixed Focus Bugs in MassChangeViewedFrame @@ -465,7 +551,7 @@ Added Numpad Keys to MassChangeScoreFrame Added Numpad Keys to MassChangeViewedFrame Added "Only Viewed" Option to MassChangeScoreFrame Added "Only Not-Viewed" Option to MassChangeViewedFrame -Fixed AV in ScanFolderFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 11:56:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:502;a:8:{s:3:"sha";s:40:"5138b52619a90a0800c9f81be94b039d1c560478";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:410:"1.6 Features +Fixed AV in ScanFolderFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 11:56:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1075;a:8:{s:3:"sha";s:40:"5138b52619a90a0800c9f81be94b039d1c560478";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:410:"1.6 Features Added TabOrder for AddMovieFrame Added TabOrder for AddEpisodesFrame @@ -477,16 +563,16 @@ Added TabOrder for ExportJxmlBKBFrame Added TabOrder for FindCoverDialog Added TabOrder for ParseImDBDialog Added TabOrder for ScanFolderFrame -Added TabOrder for AutomaticSettingsFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 10:46:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:503;a:8:{s:3:"sha";s:40:"63f9a4447842f307179b73577227a0672a0eaa8a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:82:"1.6 Features +Added TabOrder for AutomaticSettingsFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-13 10:46:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1076;a:8:{s:3:"sha";s:40:"63f9a4447842f307179b73577227a0672a0eaa8a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:82:"1.6 Features Added TabOrder for AddMovieFrame -Added TabOrder for AddEpisodesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-12 10:06:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:504;a:8:{s:3:"sha";s:40:"6d04df812f43c1cc38d88fd700b436857ad6fa60";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"1.6 Updated ToDos 2";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-10 18:08:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:505;a:8:{s:3:"sha";s:40:"7b4031de568e4185a27c19c249598288171028da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"1.6 Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-09 18:06:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:506;a:8:{s:3:"sha";s:40:"ede6ec54d0181e2c92a4c7ad2e51273370c550af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"1.6 Bugfix +Added TabOrder for AddEpisodesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-12 10:06:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1077;a:8:{s:3:"sha";s:40:"6d04df812f43c1cc38d88fd700b436857ad6fa60";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"1.6 Updated ToDos 2";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-10 18:08:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1078;a:8:{s:3:"sha";s:40:"7b4031de568e4185a27c19c249598288171028da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"1.6 Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-09 18:06:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1079;a:8:{s:3:"sha";s:40:"ede6ec54d0181e2c92a4c7ad2e51273370c550af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"1.6 Bugfix -Fixed trim bug";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-09 17:27:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:507;a:8:{s:3:"sha";s:40:"29208084dd0caeb00c5b5df30694518fab9a8858";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:122:"1.6 Features +Fixed trim bug";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-09 17:27:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1080;a:8:{s:3:"sha";s:40:"29208084dd0caeb00c5b5df30694518fab9a8858";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:122:"1.6 Features Added "Show in Browser" to Movies/Series Popup Updated .gitignore -Updated Changelog (now finally not binary)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-08 11:00:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:508;a:8:{s:3:"sha";s:40:"698ee64785881d7ddd74f541a83927c0ea87982a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:294:"1.6 Features +Updated Changelog (now finally not binary)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-08 11:00:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1081;a:8:{s:3:"sha";s:40:"698ee64785881d7ddd74f541a83927c0ea87982a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:294:"1.6 Features Better Sort of Genres in Table Throw UserDataProblem/DatabaseError when Tabs at start/end of strings @@ -494,13 +580,13 @@ Auto set Quality of Mass-added-Episodes Added contextmenu->"save as" to Coverlabels Fixed AV when adding a season Added findCover to AddSeason -Added ErrorCount to InputErrorDialog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-08 09:45:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:509;a:8:{s:3:"sha";s:40:"e38ab5a0bd0299735036f22d5f1126155122fc65";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"1.5 Bugfix +Added ErrorCount to InputErrorDialog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-08 09:45:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1082;a:8:{s:3:"sha";s:40:"e38ab5a0bd0299735036f22d5f1126155122fc65";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"1.5 Bugfix -Fixed Bug when editing a Movie";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 18:10:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:510;a:8:{s:3:"sha";s:40:"48690bbde49d08b5a7f48c01e6b00bd19dbf5a85";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"1.5 Changelog +Fixed Bug when editing a Movie";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 18:10:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1083;a:8:{s:3:"sha";s:40:"48690bbde49d08b5a7f48c01e6b00bd19dbf5a85";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"1.5 Changelog -Added Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 17:54:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:511;a:8:{s:3:"sha";s:40:"75f1f6a99fcb6d9bd3ac22c936ff7d945f435492";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"GIT Attributes Update";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 17:53:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:512;a:8:{s:3:"sha";s:40:"afd3c9bdb229f252c68753ab9a23a8a57444ef5c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"1.5 UPDATE +Added Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 17:54:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1084;a:8:{s:3:"sha";s:40:"75f1f6a99fcb6d9bd3ac22c936ff7d945f435492";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"GIT Attributes Update";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 17:53:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1085;a:8:{s:3:"sha";s:40:"afd3c9bdb229f252c68753ab9a23a8a57444ef5c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"1.5 UPDATE -Completely redone the findCoverFrame (everything is better now)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 17:23:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:513;a:8:{s:3:"sha";s:40:"2543292439121c8d8d69598f089fa702e9a4e9e4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:743:"1.5 RELEASE +Completely redone the findCoverFrame (everything is better now)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 17:23:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1086;a:8:{s:3:"sha";s:40:"2543292439121c8d8d69598f089fa702e9a4e9e4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:743:"1.5 RELEASE Fixed CharSelctor (Less Buttons, but now all are visible) Fixed IMDB-Background-Color not working with sorted Table @@ -517,9 +603,9 @@ Added Borders to CoverChooser Added Option for Border in CoverChooser Changed Settings-Cateory from DIALOGS to OTHERFRAMES Added Option to skip already rated Movies in MassChangeFrame -Added Border around Selected Cover in findCoverFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 15:11:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:514;a:8:{s:3:"sha";s:40:"3cb4040ccdc81e888551e846447dcb5f55a1d4ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"1.5 Added Changelog +Added Border around Selected Cover in findCoverFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-05 15:11:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1087;a:8:{s:3:"sha";s:40:"3cb4040ccdc81e888551e846447dcb5f55a1d4ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"1.5 Added Changelog -Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-04 22:11:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:515;a:8:{s:3:"sha";s:40:"afb1ffc79cc2c24f41380c6d417c0cac733eb233";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:2428:"1.5 FEATURES AND BUGFIXES +Changelog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-04 22:11:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1088;a:8:{s:3:"sha";s:40:"afb1ffc79cc2c24f41380c6d417c0cac733eb233";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:2428:"1.5 FEATURES AND BUGFIXES - Added UserDataError: Zyklus/Title is not trimmed - Changed Errors from Bad-JSON to Warnings @@ -571,35 +657,35 @@ two-digit-number - Removed old and unused Code from DatabaseCoverElement - Fixed English Caption in German Language (SettingsFrame) - Added DatabaseError: Duplicate File -- Added UserDataError: Duplicate File";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-04 21:20:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:516;a:8:{s:3:"sha";s:40:"62a7eff338a1ab47662f0b370d83a0a385f6def9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"1.5 MASSIVE TODOS UPDATE +- Added UserDataError: Duplicate File";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-04 21:20:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1089;a:8:{s:3:"sha";s:40:"62a7eff338a1ab47662f0b370d83a0a385f6def9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"1.5 MASSIVE TODOS UPDATE Added a fuckload of ToDos -(And fixed to easy bugs)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-04 11:29:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:517;a:8:{s:3:"sha";s:40:"bab743bef021a52e9014ff84fc18f21b0f4fed2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:74:"Merge pull request #1 from Bigben37/master +(And fixed to easy bugs)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-04 11:29:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1090;a:8:{s:3:"sha";s:40:"bab743bef021a52e9014ff84fc18f21b0f4fed2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:74:"Merge pull request #1 from Bigben37/master -1.4 LANG Language Files fixed!";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-02 13:33:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:518;a:8:{s:3:"sha";s:40:"595f3d1183ce836ed9433b5a093f383d48b3cc89";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"1.4 Update +1.4 LANG Language Files fixed!";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-02 13:33:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1091;a:8:{s:3:"sha";s:40:"595f3d1183ce836ed9433b5a093f383d48b3cc89";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"1.4 Update -Changed Launch4j config to 1.4";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-02 12:58:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:519;a:8:{s:3:"sha";s:40:"3fa3624117006edf1d34f6eb2c42f7230251c73c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:134:"1.4 RELEASE +Changed Launch4j config to 1.4";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-02 12:58:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1092;a:8:{s:3:"sha";s:40:"3fa3624117006edf1d34f6eb2c42f7230251c73c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:134:"1.4 RELEASE Added Compare Frame Changed Delete Icon Fixed Language Problems in Filenameparser -Updated .gitignore to include libraries";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-02 12:57:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:520;a:8:{s:3:"sha";s:40:"08ffb9e50bfae0ed8a8ac7858703cd16e01216ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"1.4 WIP-Feature +Updated .gitignore to include libraries";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-02 12:57:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1093;a:8:{s:3:"sha";s:40:"08ffb9e50bfae0ed8a8ac7858703cd16e01216ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"1.4 WIP-Feature -Started Implementing Comparing DB's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-01 22:06:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:521;a:8:{s:3:"sha";s:40:"ff1974765f9ceebe6c29be03961a1fefc78cce0f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"1.4 Bugfix +Started Implementing Comparing DB's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-01 22:06:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1094;a:8:{s:3:"sha";s:40:"ff1974765f9ceebe6c29be03961a1fefc78cce0f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"1.4 Bugfix -Added Better (non-Glitching) CoverCache-ID Mechanism";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-01 17:17:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:522;a:8:{s:3:"sha";s:40:"4099b790e54e28d28e1686792925ae0fdf3a440f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"1.4 Imports";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 19:07:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:523;a:8:{s:3:"sha";s:40:"eafab3691fe7d9c48f3a64ef7014061150d6bd5c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:119:"1.4 Feature +Added Better (non-Glitching) CoverCache-ID Mechanism";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-04-01 17:17:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1095;a:8:{s:3:"sha";s:40:"4099b790e54e28d28e1686792925ae0fdf3a440f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"1.4 Imports";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 19:07:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1096;a:8:{s:3:"sha";s:40:"eafab3691fe7d9c48f3a64ef7014061150d6bd5c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:119:"1.4 Feature Added TimeKeeper for Simple Methode Performance Testing Added MD5 Calculation for Movie-File -Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 18:58:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:524;a:8:{s:3:"sha";s:40:"1736ecf57d6b018072670194d61e2b6262876881";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"1.4 Documentation +Updated ToDos";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 18:58:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1097;a:8:{s:3:"sha";s:40:"1736ecf57d6b018072670194d61e2b6262876881";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"1.4 Documentation -Added better comments to the FindCoverThreads";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 15:51:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:525;a:8:{s:3:"sha";s:40:"8e10169f7b2d47bd49ef993f980c3c545062f419";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"1.4 Features +Added better comments to the FindCoverThreads";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 15:51:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1098;a:8:{s:3:"sha";s:40:"8e10169f7b2d47bd49ef993f980c3c545062f419";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"1.4 Features -Made disabled Spinner, Textfields and Comboboxes better readable";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 15:48:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:526;a:8:{s:3:"sha";s:40:"f347e539c1433a8da25f3ae857f4dd2c94499084";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:151:"1.4 Features +Made disabled Spinner, Textfields and Comboboxes better readable";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 15:48:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1099;a:8:{s:3:"sha";s:40:"f347e539c1433a8da25f3ae857f4dd2c94499084";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:151:"1.4 Features - Moved Util (Database) Classes to util package - Added iterator(), iteratorMovies() and iteratorSeries() -- Replaced Loops with iterators";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 14:21:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:527;a:8:{s:3:"sha";s:40:"925ce8e9d6bf6f6c36cf3b697454e75511e6cc12";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"ToDo Updates";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-30 17:28:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:528;a:8:{s:3:"sha";s:40:"7476936e086e6c42c8618e88e23a19d0090cac2c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:230:"1.4 Features +- Replaced Loops with iterators";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-31 14:21:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1100;a:8:{s:3:"sha";s:40:"925ce8e9d6bf6f6c36cf3b697454e75511e6cc12";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"ToDo Updates";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-30 17:28:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1101;a:8:{s:3:"sha";s:40:"7476936e086e6c42c8618e88e23a19d0090cac2c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:230:"1.4 Features Implementes Serialization (XML) for CCDatabaseElement @@ -608,19 +694,19 @@ CCSeries CCSeason CCEpisode Added Export as *.jxmlbkp Option (XML in Zip with Cover) -Fixed a Situation where you edit Swing Objects in an non-Event-Thread";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-30 17:20:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:529;a:8:{s:3:"sha";s:40:"e2ad697a2fad5ae605ffbcd683e92d9c6d39c524";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:119:"1.4 Features +Fixed a Situation where you edit Swing Objects in an non-Event-Thread";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-30 17:20:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1102;a:8:{s:3:"sha";s:40:"e2ad697a2fad5ae605ffbcd683e92d9c6d39c524";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:119:"1.4 Features Added Hidden DebugMode Option (only in extended Settings Dialog) -Added Option to change the FilesizeDrift";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-30 13:41:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:530;a:8:{s:3:"sha";s:40:"f82fc6fecb82e9d0489588364e5fa361c006e4a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:94:"1.3 Bugfix +Added Option to change the FilesizeDrift";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-30 13:41:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1103;a:8:{s:3:"sha";s:40:"f82fc6fecb82e9d0489588364e5fa361c006e4a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:94:"1.3 Bugfix Fixed the non-displaying the duplicate Cover Error Message -Added proper Debug Mode";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-30 13:30:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:531;a:8:{s:3:"sha";s:40:"9ed017f44d4cfd251bc379ea385382feddfaa462";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"1.3 Bugfix +Added proper Debug Mode";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-30 13:30:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1104;a:8:{s:3:"sha";s:40:"9ed017f44d4cfd251bc379ea385382feddfaa462";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:67:"1.3 Bugfix -Fixed a Bug where you cant see which Elements have Bugs";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-29 22:49:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:532;a:8:{s:3:"sha";s:40:"7b52b9878eada09324ee379d85f2a4292fb720c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"1.3 RELEASE +Fixed a Bug where you cant see which Elements have Bugs";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-29 22:49:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1105;a:8:{s:3:"sha";s:40:"7b52b9878eada09324ee379d85f2a4292fb720c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"1.3 RELEASE -- Added Score to AddMovieFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-29 19:55:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:533;a:8:{s:3:"sha";s:40:"28b1de80c9f08a5511c69ac0591d6fc32e9da292";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"1.3 REALEASE +- Added Score to AddMovieFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-29 19:55:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1106;a:8:{s:3:"sha";s:40:"28b1de80c9f08a5511c69ac0591d6fc32e9da292";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"1.3 REALEASE -- Added Score to AddMovieFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-29 19:43:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:534;a:8:{s:3:"sha";s:40:"4b13487aa91e4bbe8dd3ecd69769474908725465";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:1043:"1.3 Features +- Added Score to AddMovieFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-29 19:43:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1107;a:8:{s:3:"sha";s:40:"4b13487aa91e4bbe8dd3ecd69769474908725465";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:1043:"1.3 Features - Moved alle CheckUserDataMethods to the CheckUserData Class - Added ToDos @@ -642,29 +728,29 @@ isViewed - Changed JTextArea in CheckDatabaseFrame to JList - Fixed Progressbar in CheckDatabaseFrame - Exported CheckDatabase Code in to several extra Classes -- Changed DatabaseError Strings to Default :== German";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-22 23:00:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:535;a:8:{s:3:"sha";s:40:"67f9cadb0bc77ca1f7620487cf6d7be668765eb8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:118:"1.3 Features +- Changed DatabaseError Strings to Default :== German";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-22 23:00:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1108;a:8:{s:3:"sha";s:40:"67f9cadb0bc77ca1f7620487cf6d7be668765eb8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:118:"1.3 Features Fixed Title in Preview Movie hides Viewed-Eye Added Are-you-sure Dialog to delete Episode -Updated ToDo's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-20 08:31:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:536;a:8:{s:3:"sha";s:40:"7eecf57d9dc76715508e526cab3a7eb85086375f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:133:"1.3 Features +Updated ToDo's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-20 08:31:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1109;a:8:{s:3:"sha";s:40:"7eecf57d9dc76715508e526cab3a7eb85086375f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:133:"1.3 Features Added Filenamerules Added EBNF for Filenames Added CCDateSpinner Bug Updates ToDo List -Updated UserData to German Texts";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-19 14:45:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:537;a:8:{s:3:"sha";s:40:"9aba8840118d38dd5a3a287596e76e885ff49abb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"GIT FIX +Updated UserData to German Texts";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-19 14:45:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1110;a:8:{s:3:"sha";s:40:"9aba8840118d38dd5a3a287596e76e885ff49abb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"GIT FIX -Fixed Missing locae-Files (.gitignore failed hard)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-18 15:19:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:538;a:8:{s:3:"sha";s:40:"dfba0ed6543411f1a5fa0dbf732e0e963e5eab40";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:81:"1.3 Features +Fixed Missing locae-Files (.gitignore failed hard)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-18 15:19:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1111;a:8:{s:3:"sha";s:40:"dfba0ed6543411f1a5fa0dbf732e0e963e5eab40";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:81:"1.3 Features Added Initial Sort Property -Improved CCRInt Property (Constructors)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-18 14:51:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:539;a:8:{s:3:"sha";s:40:"07b5af2a82a95104c12938e5408547e26c5d1dd1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"1.2 Bugfix IV +Improved CCRInt Property (Constructors)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-18 14:51:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1112;a:8:{s:3:"sha";s:40:"07b5af2a82a95104c12938e5408547e26c5d1dd1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"1.2 Bugfix IV Bug vo BF III auch in CCSeason gefixt -Moar ToDo's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-18 13:29:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:540;a:8:{s:3:"sha";s:40:"31e0cc88cf17fb814769424caafce91b46af5e87";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:158:"1.2 Bugfix III +Moar ToDo's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-18 13:29:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1113;a:8:{s:3:"sha";s:40:"31e0cc88cf17fb814769424caafce91b46af5e87";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:158:"1.2 Bugfix III - Fixed Bug on Adding new Movie (deleting nonexistent cover) - Fixed Auto-Calc Filesize when adding Movie -- Added ":" Syntax to Filenameparser";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-17 20:26:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:541;a:8:{s:3:"sha";s:40:"d4d4ce99f2acd592cca83839b203e8a5f6ea587e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:286:"1.2 Bugfix II +- Added ":" Syntax to Filenameparser";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-17 20:26:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1114;a:8:{s:3:"sha";s:40:"d4d4ce99f2acd592cca83839b203e8a5f6ea587e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:286:"1.2 Bugfix II -Fixed Text Glitch in editMovieFrame -Fixed Filesize fixing itself when open editFrame @@ -672,18 +758,18 @@ Moar ToDo's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCor -Fixed wrong calculation of FileExists and Filesize in PreviewSeriesFrame -Fixed TableTypFilter not working --Made MoveSeriesFrame modal";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-16 21:22:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:542;a:8:{s:3:"sha";s:40:"e18c13acc3b213d9e063fbba9cbdea352d20706f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"1.2 Bugfix +-Made MoveSeriesFrame modal";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-16 21:22:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1115;a:8:{s:3:"sha";s:40:"e18c13acc3b213d9e063fbba9cbdea352d20706f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"1.2 Bugfix -Fixed 2 massive Bugs in Covercache (Deleting and Adding)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-16 17:33:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:543;a:8:{s:3:"sha";s:40:"52bbab426f35b2414ab196a4d4695b266bec2b49";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"1.2 Update +Fixed 2 massive Bugs in Covercache (Deleting and Adding)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-16 17:33:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1116;a:8:{s:3:"sha";s:40:"52bbab426f35b2414ab196a4d4695b266bec2b49";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"1.2 Update -Modality sucks";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-16 17:03:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:544;a:8:{s:3:"sha";s:40:"75c50dc3e873afa42917549a5068823820342268";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:109:"1.2 Release +Modality sucks";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-16 17:03:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1117;a:8:{s:3:"sha";s:40:"75c50dc3e873afa42917549a5068823820342268";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:109:"1.2 Release Fixed a load of Bugs Added Context Menu to PreviewSeriesFrame -Added Search To PreviewSeriesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-16 16:29:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:545;a:8:{s:3:"sha";s:40:"a45e14003fd061101115624e7670b3770ef73f3b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:95:"1.1 Bugfixes +Added Search To PreviewSeriesFrame";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-16 16:29:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1118;a:8:{s:3:"sha";s:40:"a45e14003fd061101115624e7670b3770ef73f3b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:95:"1.1 Bugfixes Fixed AV when using StatusFilter -Fixed Checkbox in ScanFrame not correct disabled";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:49:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:546;a:8:{s:3:"sha";s:40:"07e061bf0d624b402e07d22562b2b77eae3c47a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed *.exe Files from Repository (4th Try)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:35:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:547;a:8:{s:3:"sha";s:40:"92d008c22ab691ea3b39cbcbdf7a8eac1024d53a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed *.exe Files from Repository (3rd Try)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:34:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:548;a:8:{s:3:"sha";s:40:"739df0fbab3072f3e2e16dba63ba5c30dfc97d40";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed *.exe Files from Repository (2nd Try)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:28:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:549;a:8:{s:3:"sha";s:40:"06cf7971fd2dc4123c139fe10c508869bfb0de0d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Removed *.exe Files from Repository";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:25:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:550;a:8:{s:3:"sha";s:40:"11ffcefd473d2f656ec9bdb9a72408db000a07ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:276:"1.1 Realease +Fixed Checkbox in ScanFrame not correct disabled";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:49:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1119;a:8:{s:3:"sha";s:40:"07e061bf0d624b402e07d22562b2b77eae3c47a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed *.exe Files from Repository (4th Try)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:35:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1120;a:8:{s:3:"sha";s:40:"92d008c22ab691ea3b39cbcbdf7a8eac1024d53a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed *.exe Files from Repository (3rd Try)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:34:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1121;a:8:{s:3:"sha";s:40:"739df0fbab3072f3e2e16dba63ba5c30dfc97d40";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed *.exe Files from Repository (2nd Try)";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:28:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1122;a:8:{s:3:"sha";s:40:"06cf7971fd2dc4123c139fe10c508869bfb0de0d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Removed *.exe Files from Repository";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 23:25:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1123;a:8:{s:3:"sha";s:40:"11ffcefd473d2f656ec9bdb9a72408db000a07ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:276:"1.1 Realease -Added Change Score Frame -Added Change Viewed Frame @@ -693,57 +779,57 @@ Fixed Checkbox in ScanFrame not correct disabled";s:10:"repository";a:13:{s:2:"i -Fixed Scan Folder Dialog -Fixed multiple Layout Issues -Fixed CheckDB Dialog Issues --Added Series to CheckDB Dialog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 22:56:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:551;a:8:{s:3:"sha";s:40:"502885b96fe846129757b7f19ad8924934040ec0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added moar TODO's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-14 21:52:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:552;a:8:{s:3:"sha";s:40:"1bd085d0d9a5205dea6bf95db94a48a1aafda784";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"INITIAL COMMIT";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:132;s:4:"size";i:32484;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-14 21:09:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:553;a:8:{s:3:"sha";s:40:"d0a3ecdb4d22d5e44371ac5853f4a58b1d66ad88";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"[VERSION 2.3] Added TODO Regex Pattern (Search Special Lines)";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:149;s:4:"size";i:260;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-22 19:16:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:554;a:8:{s:3:"sha";s:40:"fbd1e6324e4c3581a0f428c8b5d0b434de686876";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added *.dpr to List of Sorcecodefiletypes";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:149;s:4:"size";i:260;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:34:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:555;a:8:{s:3:"sha";s:40:"a38e4af1281ca4ea169ddaf07d22f7ec5ccc0b3c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"clean up build folder";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:149;s:4:"size";i:260;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 16:01:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:556;a:8:{s:3:"sha";s:40:"89de1b03e7cc9316300d8e53599329f11c26d474";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Commit current state (version 2.2)";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:149;s:4:"size";i:260;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 15:58:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:557;a:8:{s:3:"sha";s:40:"8bbe734a0682eb06e7798e290d2eb0d5f5a002f6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:149;s:4:"size";i:260;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 15:56:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:558;a:8:{s:3:"sha";s:40:"aa0b7d30b8fe1e6ebd43d59fc5a06848c6ac3c5c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added various classes from other projects";s:10:"repository";a:13:{s:2:"id";i:19209134;s:4:"name";s:23:"MikesSharpHelperClasses";s:9:"full_name";s:33:"Mikescher/MikesSharpHelperClasses";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:52:"https://github.com/Mikescher/MikesSharpHelperClasses";s:8:"language";s:2:"C#";s:8:"creation";r:166;s:4:"size";i:152;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:70:"https://api.github.com/repos/Mikescher/MikesSharpHelperClasses/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 18:14:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:559;a:8:{s:3:"sha";s:40:"ca51af41305caef0d05b85000e79608627501d23";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:19209134;s:4:"name";s:23:"MikesSharpHelperClasses";s:9:"full_name";s:33:"Mikescher/MikesSharpHelperClasses";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:52:"https://github.com/Mikescher/MikesSharpHelperClasses";s:8:"language";s:2:"C#";s:8:"creation";r:166;s:4:"size";i:152;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:70:"https://api.github.com/repos/Mikescher/MikesSharpHelperClasses/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 16:07:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:560;a:8:{s:3:"sha";s:40:"f6b53784fa88fe59b48592f7ccb2af159e7196be";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added Class Diagramm";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 14:55:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:561;a:8:{s:3:"sha";s:40:"f1b336f9c2e53e985010f0d87705ae9c2578470b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added RS232 - RegisterLink";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 09:26:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:562;a:8:{s:3:"sha";s:40:"b0e99b544d80c281ec6223e3bdef9b9ec0169b90";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Updated Testdata";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 06:24:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:563;a:8:{s:3:"sha";s:40:"e51bb9d911ae37237a1d581b1593a0f33c99c941";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Fixed TRIS Register switched & Fixed PORTB Interrupt";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 06:24:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:564;a:8:{s:3:"sha";s:40:"e2b8026b67aad90c2829c8a7c120441457cc6df7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Fixed loading Source from LST";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 06:23:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:565;a:8:{s:3:"sha";s:40:"4b9132f4f08232456e81afe4118dd3b776e5ae5a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Fixed Compiler AV (+ sleep)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 10:53:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:566;a:8:{s:3:"sha";s:40:"30170ac1fdd198f436b4d05227e0e7306b3dd508";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Test 3 is running";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 10:51:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:567;a:8:{s:3:"sha";s:40:"1663ddaa05ee9fd5295aa8befde1a7b084ad03d4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"[FIXED] Timer Prescaler on Multitakt Commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 10:50:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:568;a:8:{s:3:"sha";s:40:"1f4b6109c8702ac798af5e7712a8c699200e2c8e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"MANY BUGFIXES (+ new tests)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 10:13:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:569;a:8:{s:3:"sha";s:40:"9b58b73de58d20c33c68cf41eb12c9c4914f8d56";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added more Testdata";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 12:07:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:570;a:8:{s:3:"sha";s:40:"6e1a1c4b4ce944e5f63639681efb801ce534388e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Updated ToolbarButtonTheme so it fades away on MouseLeave";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 11:32:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:571;a:8:{s:3:"sha";s:40:"cbba1584040603fcd42feaf53ee7ee8eaf91d1a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added greyable ToolbarButtons";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 11:57:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:572;a:8:{s:3:"sha";s:40:"b0ce8eb6e7bfa7f32c58a2dc4b67b62087d97dbd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Fixed PICClocks not working on High Simu Freq";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 08:26:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:573;a:8:{s:3:"sha";s:40:"29f62dd3d28720e96db93fda24b1598b821358f3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Fixed CommandFreq (=1MHz) <> Quartzfreq (=4MHz)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 08:26:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:574;a:8:{s:3:"sha";s:40:"a5043bca3f1114da691b6fc2f7b1e0c80e4cd213";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Fixed loading of LST Files";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 07:11:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:575;a:8:{s:3:"sha";s:40:"4b379079f16ebdf4121032f8c464c8e58cb53eb2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Fixed Wrong CommandCodeFormat in DECFSZ";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 07:11:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:576;a:8:{s:3:"sha";s:40:"45a9a7a8184799ca8a9005bdc35d06ff1a0356f5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Fixed Missing Cmd: CLRW";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 07:10:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:577;a:8:{s:3:"sha";s:40:"375704c636e947d0ac2d0e1613e0d888e874ad45";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added official Testdata";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 07:10:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:578;a:8:{s:3:"sha";s:40:"c68e1f4fb14ff759d46f4aab396f5b5ac73a4cc9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Impelmented External Clock(s) {4x}";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-11 17:20:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:579;a:8:{s:3:"sha";s:40:"6af0ba109de86e449f3f96585d606821377cf000";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Added Ability to laod *.LST";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-10 17:23:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:580;a:8:{s:3:"sha";s:40:"3a33442b3d48e2e3d240d7fd16547139b433061c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added SLEEP Command";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-10 17:10:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:581;a:8:{s:3:"sha";s:40:"45774a58ee29c2f09ea06068f17d1d7de4c5f441";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Implemented Watchdog";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-10 16:38:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:582;a:8:{s:3:"sha";s:40:"6c8f43e01df4b90d158a502bb200152475f5d252";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added Comments to Commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-10 14:23:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:583;a:8:{s:3:"sha";s:40:"2241af4cdced21d533a2a083b9b288177d504e38";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Fixed SWAPF | Added Test_3 | Finished 7Seg";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-09 16:50:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:584;a:8:{s:3:"sha";s:40:"8e455f888c13969143e56f846ab0b8056504b6ba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added 7 Segment Display";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-09 14:18:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:585;a:8:{s:3:"sha";s:40:"42939f41db0fb4639abef3a7b98c6813faffba9c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:66:"Added Bank Selection ---> Fixed Bug where Register 0xFF is accessed";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-08 19:09:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:586;a:8:{s:3:"sha";s:40:"424bbb8fa58c8dd67a59d392b7437902858293bf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Scroll to the PC when debugging";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-08 18:40:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:587;a:8:{s:3:"sha";s:40:"52eb01f934c4e7c2198e706e7991309c1b9e4856";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added indirect adressing";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-08 18:05:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:588;a:8:{s:3:"sha";s:40:"4e144cfd9f8eb3e6a1ce65e3c5b86ed1441c89a8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Fixed Stack Implementation - is now correct";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-08 12:49:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:589;a:8:{s:3:"sha";s:40:"acb508d27c1bc8d041b106a99219c8c4b722bbd2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added PORT-RB Interrupt";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 18:31:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:590;a:8:{s:3:"sha";s:40:"95a8837df2449daf3f5a663d222efa666d314fab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Implemented RB0/INT Interrupt";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 18:25:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:591;a:8:{s:3:"sha";s:40:"a909ac30af6bdee02da86b2bcd8204fffcc2331e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added Unimplemented Register (0x07, 0x87)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 18:12:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:592;a:8:{s:3:"sha";s:40:"0a3b9e964749463f71bc6ec1a57ccbc8787fa71a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Abstracted PIC Register into class PICMemory";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 18:07:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:593;a:8:{s:3:"sha";s:40:"2345f14271baaebbf9d5bffffec3940dafd74ae8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"Fixed Design of CircularStackDisplay -(Width shouldn't change anymore)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 16:34:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:594;a:8:{s:3:"sha";s:40:"78eb7be6d2547cbe0e9e306663de763f8754d363";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added TMR0 Interrupt";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 16:23:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:595;a:8:{s:3:"sha";s:40:"7ee026d18d3b934b7353dbc3f69b001a16d85679";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Fixed TMR0 Index";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 10:34:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:596;a:8:{s:3:"sha";s:40:"114e259e64ff7fb12a9e029176cd58b8e64ce5e8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Added Display for Option + Status + Intcon";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 10:24:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:597;a:8:{s:3:"sha";s:40:"b0fffd2484482820f697800faddf46019d22ef03";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Added TMR0";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 09:43:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:598;a:8:{s:3:"sha";s:40:"da0f1dc9aacc94ad269fe14d9da3775dd26b2780";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"XAML Command Changes";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 08:28:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:599;a:8:{s:3:"sha";s:40:"5f2c377e14c0e0e4cc2ccc3baf370ac4e9920dad";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Fixed StackDisplay";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 07:52:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:600;a:8:{s:3:"sha";s:40:"62045c2d55ef2b21574654bcf08a000ace37e1c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added (most) remaining Commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 19:04:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:601;a:8:{s:3:"sha";s:40:"5197cd1d52435b66b25e8881d0f09410c3c6a1e1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Fixed Encoding Error when reading Src-File";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 18:01:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:602;a:8:{s:3:"sha";s:40:"4b4014fc26b96332f82cff0095864b30138ddfa5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:97:"Gained a lot of Performance ... -by replacing all outgoing PIC-Events with a idle Loop in the View";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 17:56:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:603;a:8:{s:3:"sha";s:40:"37220f1577eab28f824f6bb6315e5696cf00d2ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added Call Stack";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 16:18:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:604;a:8:{s:3:"sha";s:40:"420b06aabdf1165986bb41f9960fe46473b21768";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Linked Register (and bugfixes ...)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 14:07:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:605;a:8:{s:3:"sha";s:40:"de9801dba8a2299da9992af5ff592252698b1ec8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Added 13Bit PC";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 13:16:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:606;a:8:{s:3:"sha";s:40:"722d9d04f56aa67ed905addb7cfd8be6bc13adf9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added a few Commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 12:33:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:607;a:8:{s:3:"sha";s:40:"94f770aaef1654600fb12ca8fb98fd1c68f67488";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added fancy effects";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-05 19:57:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:608;a:8:{s:3:"sha";s:40:"8fd1e9251b9d86f576a88f4cc0f814b0acd6e281";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added a Cycle-Counter & Display";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-05 16:33:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:609;a:8:{s:3:"sha";s:40:"f63d48741ea26ac0e1ff76dc0901a128cb65689a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added the GUI Code for the IO-Regsiter";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-05 15:02:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:610;a:8:{s:3:"sha";s:40:"8686481b2d692d9c1064d5af440818a45cb75764";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added a little bit of debugging";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-04 16:09:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:611;a:8:{s:3:"sha";s:40:"5b2014f8f58ad71d41e77d7e5af69638278d3025";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Improved GUI (Icons) + Added PC Display";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-04 09:43:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:612;a:8:{s:3:"sha";s:40:"7252452a358238568b9ec4616b3b903207daab44";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"A little bit of GUI";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-04 07:38:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:613;a:8:{s:3:"sha";s:40:"bd70e6e862b419b5e3bf597f25b5466bc20e3e78";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Implemented and ";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-03 20:44:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:614;a:8:{s:3:"sha";s:40:"04f8213daaae3e21f109dff2121ff03e1c92cfc7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Added first test of Running";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 18:59:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:615;a:8:{s:3:"sha";s:40:"7c8364a67d67367d0e0677d085e33b8f2cd3dd6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added missing commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 16:43:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:616;a:8:{s:3:"sha";s:40:"40e296ec6e40b13acbe1e73e56e8dd796234e5e8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added a few more CMDs";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 10:34:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:617;a:8:{s:3:"sha";s:40:"e971acbbb760134f2e90e2652b929438dd990c64";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added IORegister Component";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 10:13:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:618;a:8:{s:3:"sha";s:40:"bf1ac352bf34dbae74ba9b21a32465b1d1e7babf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Fixed Tabs";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 09:06:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:619;a:8:{s:3:"sha";s:40:"6ad6117920eb2a5ccefd786eb674ddfe27bb653d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Finished RegisterGrid";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 09:00:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:620;a:8:{s:3:"sha";s:40:"e45b91085d6ebceda14e7cf9956895930451103c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added RegisterGrid";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 07:29:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:621;a:8:{s:3:"sha";s:40:"d4c7638522dabdedd0d8fd3399cc9a5a6767a5b6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Added parsing of LST Files (not really fin)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-01 12:39:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:622;a:8:{s:3:"sha";s:40:"334465d015982af6bf8cf9589c27436a2316f51d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Compiling";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-01 11:20:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:623;a:8:{s:3:"sha";s:40:"2820e202f75f02ca9722ab442e7eda4625c9b881";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added rudimentary File Handling (Load/Save/New etc)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-01 09:45:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:624;a:8:{s:3:"sha";s:40:"4844140cdd80ae3bb9a4b9f58b9ffe7927d389c9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Design mockup";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-31 10:01:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:625;a:8:{s:3:"sha";s:40:"f150fdb00f3eaa67db4978578af2a3d37957ede8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Initial Structure Commit";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-31 09:16:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:626;a:8:{s:3:"sha";s:40:"788e3cca646d03494a001a33c7fd3b125de0cf0e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:183;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-31 09:11:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:627;a:8:{s:3:"sha";s:40:"74bf2120fad6af019f74ee917b0ef087d63471a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Merge remote-tracking branch 'origin/master'";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 11:31:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:628;a:8:{s:3:"sha";s:40:"b57e84486a2dabebd4e108c0cbd2c2b32a19cc0b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added processed directory";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 11:31:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:629;a:8:{s:3:"sha";s:40:"0ab016ab5aa42b2bc0479111c336b8ef5a136b40";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [043]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 11:25:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:630;a:8:{s:3:"sha";s:40:"ca5edf6752f6881d2f80e1e583ebf8102dd5f5c9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 08:58:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:631;a:8:{s:3:"sha";s:40:"0e40a8c534deb8a9338ac84763713e6e9d44895c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [042]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 17:23:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:632;a:8:{s:3:"sha";s:40:"0baea03fff2f58bc0dbe4a7775bef87eb7d7837c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [041]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 15:18:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:633;a:8:{s:3:"sha";s:40:"7ee29daa75d523f6f50b49b8a26e119102091477";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:71:"Updated Problem [015-old] (fixed tapelength was set to 3 instead of 20)";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 11:26:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:634;a:8:{s:3:"sha";s:40:"90d4e1577e9a62a1d5c194df2c42f40ea7e61b5e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-28 00:44:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:635;a:8:{s:3:"sha";s:40:"e566bc56e9cfccf06ad69072c39b9d9341b31845";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Updated Description of Problem [037]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-25 21:46:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:636;a:8:{s:3:"sha";s:40:"9024a5e62555702656ac49cd98170a05a74b8a6a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Updated descriptions";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 21:40:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:637;a:8:{s:3:"sha";s:40:"6263322f579051a1768e0e025f33a94286fe8e6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 17:04:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:638;a:8:{s:3:"sha";s:40:"c57f602bbd59651d7df118ea6a4e46f021138bac";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [040]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 17:03:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:639;a:8:{s:3:"sha";s:40:"54cb3349f9fe8d09889c1b4155bca25e850fe778";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [039]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 14:49:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:640;a:8:{s:3:"sha";s:40:"4b7db8c7cb1df7667f6e2e7ccca2ef8a40124c14";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [038]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 14:49:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:641;a:8:{s:3:"sha";s:40:"b5a7d3c8a9f6036e6fb53263919171820ea18d59";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [037]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 14:48:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:642;a:8:{s:3:"sha";s:40:"61af9c328f9e563cf0f937d643a8dbc514b16a46";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Updated Description of Problem [035]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 14:48:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:643;a:8:{s:3:"sha";s:40:"e1f96ad17003730b90a1ccb69c974ef3bcc1eedd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [036]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-23 17:10:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:644;a:8:{s:3:"sha";s:40:"7daba7980725f7395a5b32e8bfca38f083ce210a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [035]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-23 17:10:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:645;a:8:{s:3:"sha";s:40:"c89b7ccfe7591ea7b61f706ff8ed032e289deed7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [034]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-23 17:10:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:646;a:8:{s:3:"sha";s:40:"f73136318319c50f902d8a68f8a8987c400e504f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [033]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-22 17:00:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:647;a:8:{s:3:"sha";s:40:"9649ec5b03d8a9ac673d13d6c1641c5d570e644c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [032]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-22 17:00:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:648;a:8:{s:3:"sha";s:40:"8642fad6dde765e9e58e37f74d80a05bd5f711a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-21 10:57:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:649;a:8:{s:3:"sha";s:40:"d9597beb1b7344176fc85c26c969e9fc16ad29e8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [027]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-21 10:55:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:650;a:8:{s:3:"sha";s:40:"60ad41b3c084903df00a774460af935be8443752";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [029]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-20 10:59:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:651;a:8:{s:3:"sha";s:40:"59d8b2ba40dbb48e5d5fdcf7f942fedef6409a9b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [030]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 17:00:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:652;a:8:{s:3:"sha";s:40:"13d76ab793092528346e59c5e5c0a9e9d7939771";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [031]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 16:13:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:653;a:8:{s:3:"sha";s:40:"7edd88e849b792fde0b9f4cd8cd57c3886f91456";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [028]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 16:13:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:654;a:8:{s:3:"sha";s:40:"618fc0cade23833c6877d090603df39955375673";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [026]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 21:28:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:655;a:8:{s:3:"sha";s:40:"37759ec9e722335cfb40355319db1c9bcbc71ab6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Updated descriptions & slightly formatted old code";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 20:36:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:656;a:8:{s:3:"sha";s:40:"f03974dd8c3440739af58a3a686b85e2d569b04e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [025]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 14:53:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:657;a:8:{s:3:"sha";s:40:"4e9f8a511a95e925892a5e4cb8dbeea4cef9613f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [023]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 20:59:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:658;a:8:{s:3:"sha";s:40:"d55d1365963df8ccaf81aa10f3814eb77a85defc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [022]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 20:18:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:659;a:8:{s:3:"sha";s:40:"a28ef3e61e57ff2977d3dfcc77aa263b753864f7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 15:46:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:660;a:8:{s:3:"sha";s:40:"2b4b96a78c8fe91c40b952c4db4a0e325f25ffba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Publish on Github";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 15:34:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:661;a:8:{s:3:"sha";s:40:"fdfa8bf98240ab57fa8bae85e098addeebfad734";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [024]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 15:21:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:662;a:8:{s:3:"sha";s:40:"1a384ecbed29e0dd82af564277a98004dcfcd3da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [021]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-15 19:39:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:663;a:8:{s:3:"sha";s:40:"58ffa4825847709e1f2f1001c4c14e567d98d369";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [020]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-14 14:39:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:664;a:8:{s:3:"sha";s:40:"da6d17f3e0261e9af172fc4e4f4d98bcb5096b5e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [019]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-14 13:09:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:665;a:8:{s:3:"sha";s:40:"477bfcd71552fefb3062a3c6300c2ca1abe2fa7c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added Description to Problem [018]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 14:32:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:666;a:8:{s:3:"sha";s:40:"2c185a9b123dadfed36c39dc3956c43763f706de";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [067]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 14:32:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:667;a:8:{s:3:"sha";s:40:"08607dc6bd3252bfff484ba710454f46ccca5990";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [018]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 12:08:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:668;a:8:{s:3:"sha";s:40:"922f291344f24e1486e79283a6a76405a5e085e5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added Descriptions";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 22:53:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:669;a:8:{s:3:"sha";s:40:"84d9bda31f168643deb2b0c49042fe261f32317e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added Solution to Problem [012] v2";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 21:56:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:670;a:8:{s:3:"sha";s:40:"200c9f6d35ab7837844512537d111f35fce245e4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Updated .gitignore";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 21:56:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:671;a:8:{s:3:"sha";s:40:"15a15986fb08703dedf6c9d64e17636d6df642c2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added Solution to Problem [015] v2";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 18:48:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:672;a:8:{s:3:"sha";s:40:"ca3a31833c57825d93b9e016b78597bc95b39733";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [017]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 17:16:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:673;a:8:{s:3:"sha";s:40:"bf31b9d5666254e7d8129213297d34dc1202101c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [016]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 15:52:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:674;a:8:{s:3:"sha";s:40:"6a2b0b387892916ba91b059e3ede9c95b1c1449f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [015]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 15:26:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:675;a:8:{s:3:"sha";s:40:"21671f552d602c452ceed8327af35a463107f2cf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [014]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 05:10:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:676;a:8:{s:3:"sha";s:40:"b9db0c180e5da75a4eccd4a449c9aff7421439a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [013]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 05:08:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:677;a:8:{s:3:"sha";s:40:"6764fe25c55e2b0a2ef76897128349b3bbee94d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [012]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 05:08:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:678;a:8:{s:3:"sha";s:40:"6b84bc6a52145200bde6c2225a330db111564c96";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [011]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:679;a:8:{s:3:"sha";s:40:"dac6fa1ab79f0fee8df929301c89d10ca4a64403";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [010]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:680;a:8:{s:3:"sha";s:40:"66022da4dca5889df4bad3cb799ec517c62ea58f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [009]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:681;a:8:{s:3:"sha";s:40:"69acd60104432dded2efe0f8d8baa955354a5dcf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [008]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:682;a:8:{s:3:"sha";s:40:"0614ea2a23ce100f943dbd374c004a28e0daf2e1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [007]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:683;a:8:{s:3:"sha";s:40:"03e66e9ae5f775382560523999b2f7388986c5b0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [006]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:684;a:8:{s:3:"sha";s:40:"f41065e62b3eadd109bcbf874a592bb35fe423ef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [005]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:685;a:8:{s:3:"sha";s:40:"5184a93d79265983fb8c5509127cb700879fc7ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [004]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:686;a:8:{s:3:"sha";s:40:"4f844a4a24de93f4f338d25aeb4a762c769190b5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [003]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 21:10:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:687;a:8:{s:3:"sha";s:40:"8b8390f84fa6a5a22dba6a70a28e6354a1619d2e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [002]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 20:03:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:688;a:8:{s:3:"sha";s:40:"06ae6c5f413bfd1afe5bb86db1bf2c3b8cfa9b67";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [001]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 19:27:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:689;a:8:{s:3:"sha";s:40:"78b273325282b39cc8b01d72944cd9b1c6e03a7b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:200;s:4:"size";i:316;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-02 16:17:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:690;a:8:{s:3:"sha";s:40:"d96c1693eea59b217bbdd9265b903d3ed69fedde";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Updated to new AndroidStudio version";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 22:10:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:691;a:8:{s:3:"sha";s:40:"f587e62a2ea737435e06452f8e6f8902486a3546";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:99:"Fixed bug when the SSL certificate is outdated / invalid (F*** Rapla) [3rd try ... SmartGit fail ?]";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-03 14:44:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:692;a:8:{s:3:"sha";s:40:"b70b04ed237adf77270ac4ec12a270a9ddcb1fcb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Added more Output and fixed config on Laptop (hopefully)";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-30 09:05:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:693;a:8:{s:3:"sha";s:40:"f3bad6addb0045796e19d21570e9da5d5b42e192";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Fixed Regexes with new Rapla Layout";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-13 15:52:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:694;a:8:{s:3:"sha";s:40:"f4443711bae8152143e6af4358796f9714d2708c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:131:"Added missing but planned features +-Added Series to CheckDB Dialog";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-15 22:56:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1124;a:8:{s:3:"sha";s:40:"502885b96fe846129757b7f19ad8924934040ec0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added moar TODO's";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-14 21:52:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1125;a:8:{s:3:"sha";s:40:"1bd085d0d9a5205dea6bf95db94a48a1aafda784";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"INITIAL COMMIT";s:10:"repository";a:13:{s:2:"id";i:8785241;s:4:"name";s:9:"jClipCorn";s:9:"full_name";s:19:"Mikescher/jClipCorn";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:38:"https://github.com/Mikescher/jClipCorn";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:32489;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:56:"https://api.github.com/repos/Mikescher/jClipCorn/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-03-14 21:09:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1126;a:8:{s:3:"sha";s:40:"474aadbbaff9bfc040925fddff67cb2d68b0589f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"[VERSION 2.5] Minimized swingx [2]";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:319;s:4:"size";i:2044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-12 13:15:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1127;a:8:{s:3:"sha";s:40:"9aecd41acb903620da88c555db6c9438e87e346b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"[VERSION 2.5] Minimized swingx";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:319;s:4:"size";i:2044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-12 13:07:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1128;a:8:{s:3:"sha";s:40:"e69c312fb7640aac5ca7607101238b3d3eac66b3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:319;s:4:"size";i:2044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-12 12:04:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1129;a:8:{s:3:"sha";s:40:"4588e20229429727b3f0adcbee40565d2a420f6c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"[VERSION 2.5] Added Language Distribution Graph";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:319;s:4:"size";i:2044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-12 11:57:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1130;a:8:{s:3:"sha";s:40:"0e2b1a3c47b80463620cc3062fe7d67dc195550e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"[VERSION 2.4] Added gradle Projects sets (+ more filetypes / filters / etc)";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:319;s:4:"size";i:2044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-12 09:30:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1131;a:8:{s:3:"sha";s:40:"d0a3ecdb4d22d5e44371ac5853f4a58b1d66ad88";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"[VERSION 2.3] Added TODO Regex Pattern (Search Special Lines)";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:319;s:4:"size";i:2044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-22 19:16:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1132;a:8:{s:3:"sha";s:40:"fbd1e6324e4c3581a0f428c8b5d0b434de686876";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added *.dpr to List of Sorcecodefiletypes";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:319;s:4:"size";i:2044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 13:34:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1133;a:8:{s:3:"sha";s:40:"a38e4af1281ca4ea169ddaf07d22f7ec5ccc0b3c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"clean up build folder";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:319;s:4:"size";i:2044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 16:01:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1134;a:8:{s:3:"sha";s:40:"89de1b03e7cc9316300d8e53599329f11c26d474";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Commit current state (version 2.2)";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:319;s:4:"size";i:2044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 15:58:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1135;a:8:{s:3:"sha";s:40:"8bbe734a0682eb06e7798e290d2eb0d5f5a002f6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:19208822;s:4:"name";s:10:"jQCCounter";s:9:"full_name";s:20:"Mikescher/jQCCounter";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/jQCCounter";s:8:"language";s:4:"Java";s:8:"creation";r:319;s:4:"size";i:2044;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/jQCCounter/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 15:56:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1136;a:8:{s:3:"sha";s:40:"aa0b7d30b8fe1e6ebd43d59fc5a06848c6ac3c5c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added various classes from other projects";s:10:"repository";a:13:{s:2:"id";i:19209134;s:4:"name";s:23:"MikesSharpHelperClasses";s:9:"full_name";s:33:"Mikescher/MikesSharpHelperClasses";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:52:"https://github.com/Mikescher/MikesSharpHelperClasses";s:8:"language";s:2:"C#";s:8:"creation";r:336;s:4:"size";i:152;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:70:"https://api.github.com/repos/Mikescher/MikesSharpHelperClasses/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 18:14:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1137;a:8:{s:3:"sha";s:40:"ca51af41305caef0d05b85000e79608627501d23";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:19209134;s:4:"name";s:23:"MikesSharpHelperClasses";s:9:"full_name";s:33:"Mikescher/MikesSharpHelperClasses";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:52:"https://github.com/Mikescher/MikesSharpHelperClasses";s:8:"language";s:2:"C#";s:8:"creation";r:336;s:4:"size";i:152;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:70:"https://api.github.com/repos/Mikescher/MikesSharpHelperClasses/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-27 16:07:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1138;a:8:{s:3:"sha";s:40:"f6b53784fa88fe59b48592f7ccb2af159e7196be";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added Class Diagramm";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 14:55:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1139;a:8:{s:3:"sha";s:40:"f1b336f9c2e53e985010f0d87705ae9c2578470b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added RS232 - RegisterLink";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 09:26:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1140;a:8:{s:3:"sha";s:40:"b0e99b544d80c281ec6223e3bdef9b9ec0169b90";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Updated Testdata";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 06:24:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1141;a:8:{s:3:"sha";s:40:"e51bb9d911ae37237a1d581b1593a0f33c99c941";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Fixed TRIS Register switched & Fixed PORTB Interrupt";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 06:24:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1142;a:8:{s:3:"sha";s:40:"e2b8026b67aad90c2829c8a7c120441457cc6df7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Fixed loading Source from LST";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 06:23:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1143;a:8:{s:3:"sha";s:40:"4b9132f4f08232456e81afe4118dd3b776e5ae5a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Fixed Compiler AV (+ sleep)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 10:53:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1144;a:8:{s:3:"sha";s:40:"30170ac1fdd198f436b4d05227e0e7306b3dd508";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Test 3 is running";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 10:51:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1145;a:8:{s:3:"sha";s:40:"1663ddaa05ee9fd5295aa8befde1a7b084ad03d4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"[FIXED] Timer Prescaler on Multitakt Commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 10:50:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1146;a:8:{s:3:"sha";s:40:"1f4b6109c8702ac798af5e7712a8c699200e2c8e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"MANY BUGFIXES (+ new tests)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-28 10:13:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1147;a:8:{s:3:"sha";s:40:"9b58b73de58d20c33c68cf41eb12c9c4914f8d56";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added more Testdata";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-22 12:07:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1148;a:8:{s:3:"sha";s:40:"6e1a1c4b4ce944e5f63639681efb801ce534388e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:57:"Updated ToolbarButtonTheme so it fades away on MouseLeave";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-16 11:32:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1149;a:8:{s:3:"sha";s:40:"cbba1584040603fcd42feaf53ee7ee8eaf91d1a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added greyable ToolbarButtons";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 11:57:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1150;a:8:{s:3:"sha";s:40:"b0ce8eb6e7bfa7f32c58a2dc4b67b62087d97dbd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Fixed PICClocks not working on High Simu Freq";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 08:26:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1151;a:8:{s:3:"sha";s:40:"29f62dd3d28720e96db93fda24b1598b821358f3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Fixed CommandFreq (=1MHz) <> Quartzfreq (=4MHz)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 08:26:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1152;a:8:{s:3:"sha";s:40:"a5043bca3f1114da691b6fc2f7b1e0c80e4cd213";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Fixed loading of LST Files";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 07:11:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1153;a:8:{s:3:"sha";s:40:"4b379079f16ebdf4121032f8c464c8e58cb53eb2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Fixed Wrong CommandCodeFormat in DECFSZ";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 07:11:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1154;a:8:{s:3:"sha";s:40:"45a9a7a8184799ca8a9005bdc35d06ff1a0356f5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Fixed Missing Cmd: CLRW";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 07:10:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1155;a:8:{s:3:"sha";s:40:"375704c636e947d0ac2d0e1613e0d888e874ad45";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added official Testdata";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 07:10:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1156;a:8:{s:3:"sha";s:40:"c68e1f4fb14ff759d46f4aab396f5b5ac73a4cc9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Impelmented External Clock(s) {4x}";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-11 17:20:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1157;a:8:{s:3:"sha";s:40:"6af0ba109de86e449f3f96585d606821377cf000";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Added Ability to laod *.LST";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-10 17:23:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1158;a:8:{s:3:"sha";s:40:"3a33442b3d48e2e3d240d7fd16547139b433061c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added SLEEP Command";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-10 17:10:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1159;a:8:{s:3:"sha";s:40:"45774a58ee29c2f09ea06068f17d1d7de4c5f441";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Implemented Watchdog";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-10 16:38:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1160;a:8:{s:3:"sha";s:40:"6c8f43e01df4b90d158a502bb200152475f5d252";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added Comments to Commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-10 14:23:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1161;a:8:{s:3:"sha";s:40:"2241af4cdced21d533a2a083b9b288177d504e38";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Fixed SWAPF | Added Test_3 | Finished 7Seg";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-09 16:50:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1162;a:8:{s:3:"sha";s:40:"8e455f888c13969143e56f846ab0b8056504b6ba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added 7 Segment Display";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-09 14:18:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1163;a:8:{s:3:"sha";s:40:"42939f41db0fb4639abef3a7b98c6813faffba9c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:66:"Added Bank Selection +--> Fixed Bug where Register 0xFF is accessed";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-08 19:09:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1164;a:8:{s:3:"sha";s:40:"424bbb8fa58c8dd67a59d392b7437902858293bf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Scroll to the PC when debugging";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-08 18:40:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1165;a:8:{s:3:"sha";s:40:"52eb01f934c4e7c2198e706e7991309c1b9e4856";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added indirect adressing";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-08 18:05:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1166;a:8:{s:3:"sha";s:40:"4e144cfd9f8eb3e6a1ce65e3c5b86ed1441c89a8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Fixed Stack Implementation - is now correct";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-08 12:49:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1167;a:8:{s:3:"sha";s:40:"acb508d27c1bc8d041b106a99219c8c4b722bbd2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added PORT-RB Interrupt";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 18:31:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1168;a:8:{s:3:"sha";s:40:"95a8837df2449daf3f5a663d222efa666d314fab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Implemented RB0/INT Interrupt";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 18:25:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1169;a:8:{s:3:"sha";s:40:"a909ac30af6bdee02da86b2bcd8204fffcc2331e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added Unimplemented Register (0x07, 0x87)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 18:12:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1170;a:8:{s:3:"sha";s:40:"0a3b9e964749463f71bc6ec1a57ccbc8787fa71a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Abstracted PIC Register into class PICMemory";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 18:07:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1171;a:8:{s:3:"sha";s:40:"2345f14271baaebbf9d5bffffec3940dafd74ae8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:69:"Fixed Design of CircularStackDisplay +(Width shouldn't change anymore)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 16:34:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1172;a:8:{s:3:"sha";s:40:"78eb7be6d2547cbe0e9e306663de763f8754d363";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added TMR0 Interrupt";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 16:23:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1173;a:8:{s:3:"sha";s:40:"7ee026d18d3b934b7353dbc3f69b001a16d85679";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Fixed TMR0 Index";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 10:34:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1174;a:8:{s:3:"sha";s:40:"114e259e64ff7fb12a9e029176cd58b8e64ce5e8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Added Display for Option + Status + Intcon";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 10:24:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1175;a:8:{s:3:"sha";s:40:"b0fffd2484482820f697800faddf46019d22ef03";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Added TMR0";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 09:43:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1176;a:8:{s:3:"sha";s:40:"da0f1dc9aacc94ad269fe14d9da3775dd26b2780";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"XAML Command Changes";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 08:28:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1177;a:8:{s:3:"sha";s:40:"5f2c377e14c0e0e4cc2ccc3baf370ac4e9920dad";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Fixed StackDisplay";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-07 07:52:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1178;a:8:{s:3:"sha";s:40:"62045c2d55ef2b21574654bcf08a000ace37e1c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added (most) remaining Commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 19:04:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1179;a:8:{s:3:"sha";s:40:"5197cd1d52435b66b25e8881d0f09410c3c6a1e1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Fixed Encoding Error when reading Src-File";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 18:01:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1180;a:8:{s:3:"sha";s:40:"4b4014fc26b96332f82cff0095864b30138ddfa5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:97:"Gained a lot of Performance ... +by replacing all outgoing PIC-Events with a idle Loop in the View";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 17:56:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1181;a:8:{s:3:"sha";s:40:"37220f1577eab28f824f6bb6315e5696cf00d2ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added Call Stack";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 16:18:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1182;a:8:{s:3:"sha";s:40:"420b06aabdf1165986bb41f9960fe46473b21768";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Linked Register (and bugfixes ...)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 14:07:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1183;a:8:{s:3:"sha";s:40:"de9801dba8a2299da9992af5ff592252698b1ec8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Added 13Bit PC";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 13:16:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1184;a:8:{s:3:"sha";s:40:"722d9d04f56aa67ed905addb7cfd8be6bc13adf9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added a few Commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-06 12:33:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1185;a:8:{s:3:"sha";s:40:"94f770aaef1654600fb12ca8fb98fd1c68f67488";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added fancy effects";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-05 19:57:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1186;a:8:{s:3:"sha";s:40:"8fd1e9251b9d86f576a88f4cc0f814b0acd6e281";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added a Cycle-Counter & Display";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-05 16:33:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1187;a:8:{s:3:"sha";s:40:"f63d48741ea26ac0e1ff76dc0901a128cb65689a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added the GUI Code for the IO-Regsiter";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-05 15:02:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1188;a:8:{s:3:"sha";s:40:"8686481b2d692d9c1064d5af440818a45cb75764";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added a little bit of debugging";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-04 16:09:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1189;a:8:{s:3:"sha";s:40:"5b2014f8f58ad71d41e77d7e5af69638278d3025";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Improved GUI (Icons) + Added PC Display";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-04 09:43:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1190;a:8:{s:3:"sha";s:40:"7252452a358238568b9ec4616b3b903207daab44";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"A little bit of GUI";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-04 07:38:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1191;a:8:{s:3:"sha";s:40:"bd70e6e862b419b5e3bf597f25b5466bc20e3e78";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Implemented and ";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-03 20:44:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1192;a:8:{s:3:"sha";s:40:"04f8213daaae3e21f109dff2121ff03e1c92cfc7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Added first test of Running";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 18:59:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1193;a:8:{s:3:"sha";s:40:"7c8364a67d67367d0e0677d085e33b8f2cd3dd6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added missing commands";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 16:43:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1194;a:8:{s:3:"sha";s:40:"40e296ec6e40b13acbe1e73e56e8dd796234e5e8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added a few more CMDs";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 10:34:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1195;a:8:{s:3:"sha";s:40:"e971acbbb760134f2e90e2652b929438dd990c64";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added IORegister Component";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 10:13:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1196;a:8:{s:3:"sha";s:40:"bf1ac352bf34dbae74ba9b21a32465b1d1e7babf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Fixed Tabs";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 09:06:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1197;a:8:{s:3:"sha";s:40:"6ad6117920eb2a5ccefd786eb674ddfe27bb653d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Finished RegisterGrid";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 09:00:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1198;a:8:{s:3:"sha";s:40:"e45b91085d6ebceda14e7cf9956895930451103c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added RegisterGrid";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-02 07:29:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1199;a:8:{s:3:"sha";s:40:"d4c7638522dabdedd0d8fd3399cc9a5a6767a5b6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Added parsing of LST Files (not really fin)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-01 12:39:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1200;a:8:{s:3:"sha";s:40:"334465d015982af6bf8cf9589c27436a2316f51d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Compiling";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-01 11:20:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1201;a:8:{s:3:"sha";s:40:"2820e202f75f02ca9722ab442e7eda4625c9b881";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added rudimentary File Handling (Load/Save/New etc)";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-01 09:45:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1202;a:8:{s:3:"sha";s:40:"4844140cdd80ae3bb9a4b9f58b9ffe7927d389c9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Design mockup";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-31 10:01:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1203;a:8:{s:3:"sha";s:40:"f150fdb00f3eaa67db4978578af2a3d37957ede8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Initial Structure Commit";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-31 09:16:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1204;a:8:{s:3:"sha";s:40:"788e3cca646d03494a001a33c7fd3b125de0cf0e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:18287630;s:4:"name";s:13:"PIC16C84-Simu";s:9:"full_name";s:23:"Mikescher/PIC16C84-Simu";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:42:"https://github.com/Mikescher/PIC16C84-Simu";s:8:"language";s:2:"C#";s:8:"creation";r:353;s:4:"size";i:1462;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:60:"https://api.github.com/repos/Mikescher/PIC16C84-Simu/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-31 09:11:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1205;a:8:{s:3:"sha";s:40:"482dc5f3418e51a07a42a6f3fdb5e108a60507be";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [048]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-12 14:03:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1206;a:8:{s:3:"sha";s:40:"d0cd10cb82b82a022f31e1f5c8866ed481535bd5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [046]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-11 15:13:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1207;a:8:{s:3:"sha";s:40:"d6e566cef590a4eac6b05512509176cf45777b9b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [045]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-11 12:48:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1208;a:8:{s:3:"sha";s:40:"2cbcc822d1b1d85d76149f9c1d6146dcea25a01c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added Solution to Problem [044] v2";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-10 18:56:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1209;a:8:{s:3:"sha";s:40:"e5ff34f604e212723406f89859d9bf0e11751a77";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [044]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-10 15:57:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1210;a:8:{s:3:"sha";s:40:"74bf2120fad6af019f74ee917b0ef087d63471a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Merge remote-tracking branch 'origin/master'";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 11:31:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1211;a:8:{s:3:"sha";s:40:"b57e84486a2dabebd4e108c0cbd2c2b32a19cc0b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added processed directory";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 11:31:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1212;a:8:{s:3:"sha";s:40:"0ab016ab5aa42b2bc0479111c336b8ef5a136b40";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [043]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 11:25:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1213;a:8:{s:3:"sha";s:40:"ca5edf6752f6881d2f80e1e583ebf8102dd5f5c9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 08:58:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1214;a:8:{s:3:"sha";s:40:"0e40a8c534deb8a9338ac84763713e6e9d44895c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [042]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 17:23:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1215;a:8:{s:3:"sha";s:40:"0baea03fff2f58bc0dbe4a7775bef87eb7d7837c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [041]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 15:18:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1216;a:8:{s:3:"sha";s:40:"7ee29daa75d523f6f50b49b8a26e119102091477";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:71:"Updated Problem [015-old] (fixed tapelength was set to 3 instead of 20)";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 11:26:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1217;a:8:{s:3:"sha";s:40:"90d4e1577e9a62a1d5c194df2c42f40ea7e61b5e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-28 00:44:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1218;a:8:{s:3:"sha";s:40:"e566bc56e9cfccf06ad69072c39b9d9341b31845";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Updated Description of Problem [037]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-25 21:46:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1219;a:8:{s:3:"sha";s:40:"9024a5e62555702656ac49cd98170a05a74b8a6a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Updated descriptions";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 21:40:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1220;a:8:{s:3:"sha";s:40:"6263322f579051a1768e0e025f33a94286fe8e6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 17:04:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1221;a:8:{s:3:"sha";s:40:"c57f602bbd59651d7df118ea6a4e46f021138bac";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [040]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 17:03:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1222;a:8:{s:3:"sha";s:40:"54cb3349f9fe8d09889c1b4155bca25e850fe778";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [039]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 14:49:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1223;a:8:{s:3:"sha";s:40:"4b7db8c7cb1df7667f6e2e7ccca2ef8a40124c14";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [038]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 14:49:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1224;a:8:{s:3:"sha";s:40:"b5a7d3c8a9f6036e6fb53263919171820ea18d59";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [037]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 14:48:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1225;a:8:{s:3:"sha";s:40:"61af9c328f9e563cf0f937d643a8dbc514b16a46";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Updated Description of Problem [035]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-24 14:48:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1226;a:8:{s:3:"sha";s:40:"e1f96ad17003730b90a1ccb69c974ef3bcc1eedd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [036]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-23 17:10:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1227;a:8:{s:3:"sha";s:40:"7daba7980725f7395a5b32e8bfca38f083ce210a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [035]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-23 17:10:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1228;a:8:{s:3:"sha";s:40:"c89b7ccfe7591ea7b61f706ff8ed032e289deed7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [034]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-23 17:10:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1229;a:8:{s:3:"sha";s:40:"f73136318319c50f902d8a68f8a8987c400e504f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [033]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-22 17:00:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1230;a:8:{s:3:"sha";s:40:"9649ec5b03d8a9ac673d13d6c1641c5d570e644c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [032]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-22 17:00:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1231;a:8:{s:3:"sha";s:40:"8642fad6dde765e9e58e37f74d80a05bd5f711a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-21 10:57:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1232;a:8:{s:3:"sha";s:40:"d9597beb1b7344176fc85c26c969e9fc16ad29e8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [027]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-21 10:55:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1233;a:8:{s:3:"sha";s:40:"60ad41b3c084903df00a774460af935be8443752";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [029]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-20 10:59:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1234;a:8:{s:3:"sha";s:40:"59d8b2ba40dbb48e5d5fdcf7f942fedef6409a9b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [030]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 17:00:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1235;a:8:{s:3:"sha";s:40:"13d76ab793092528346e59c5e5c0a9e9d7939771";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [031]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 16:13:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1236;a:8:{s:3:"sha";s:40:"7edd88e849b792fde0b9f4cd8cd57c3886f91456";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [028]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-18 16:13:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1237;a:8:{s:3:"sha";s:40:"618fc0cade23833c6877d090603df39955375673";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [026]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 21:28:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1238;a:8:{s:3:"sha";s:40:"37759ec9e722335cfb40355319db1c9bcbc71ab6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Updated descriptions & slightly formatted old code";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 20:36:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1239;a:8:{s:3:"sha";s:40:"f03974dd8c3440739af58a3a686b85e2d569b04e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [025]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 14:53:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1240;a:8:{s:3:"sha";s:40:"4e9f8a511a95e925892a5e4cb8dbeea4cef9613f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [023]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 20:59:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1241;a:8:{s:3:"sha";s:40:"d55d1365963df8ccaf81aa10f3814eb77a85defc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [022]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 20:18:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1242;a:8:{s:3:"sha";s:40:"a28ef3e61e57ff2977d3dfcc77aa263b753864f7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 15:46:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1243;a:8:{s:3:"sha";s:40:"2b4b96a78c8fe91c40b952c4db4a0e325f25ffba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Publish on Github";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 15:34:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1244;a:8:{s:3:"sha";s:40:"fdfa8bf98240ab57fa8bae85e098addeebfad734";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [024]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-16 15:21:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1245;a:8:{s:3:"sha";s:40:"1a384ecbed29e0dd82af564277a98004dcfcd3da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [021]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-15 19:39:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1246;a:8:{s:3:"sha";s:40:"58ffa4825847709e1f2f1001c4c14e567d98d369";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [020]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-14 14:39:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1247;a:8:{s:3:"sha";s:40:"da6d17f3e0261e9af172fc4e4f4d98bcb5096b5e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [019]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-14 13:09:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1248;a:8:{s:3:"sha";s:40:"477bfcd71552fefb3062a3c6300c2ca1abe2fa7c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added Description to Problem [018]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 14:32:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1249;a:8:{s:3:"sha";s:40:"2c185a9b123dadfed36c39dc3956c43763f706de";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [067]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 14:32:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1250;a:8:{s:3:"sha";s:40:"08607dc6bd3252bfff484ba710454f46ccca5990";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [018]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 12:08:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1251;a:8:{s:3:"sha";s:40:"922f291344f24e1486e79283a6a76405a5e085e5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added Descriptions";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 22:53:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1252;a:8:{s:3:"sha";s:40:"84d9bda31f168643deb2b0c49042fe261f32317e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added Solution to Problem [012] v2";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 21:56:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1253;a:8:{s:3:"sha";s:40:"200c9f6d35ab7837844512537d111f35fce245e4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Updated .gitignore";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 21:56:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1254;a:8:{s:3:"sha";s:40:"15a15986fb08703dedf6c9d64e17636d6df642c2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added Solution to Problem [015] v2";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 18:48:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1255;a:8:{s:3:"sha";s:40:"ca3a31833c57825d93b9e016b78597bc95b39733";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [017]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 17:16:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1256;a:8:{s:3:"sha";s:40:"bf31b9d5666254e7d8129213297d34dc1202101c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [016]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-12 15:52:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1257;a:8:{s:3:"sha";s:40:"6a2b0b387892916ba91b059e3ede9c95b1c1449f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [015]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 15:26:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1258;a:8:{s:3:"sha";s:40:"21671f552d602c452ceed8327af35a463107f2cf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [014]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 05:10:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1259;a:8:{s:3:"sha";s:40:"b9db0c180e5da75a4eccd4a449c9aff7421439a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [013]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 05:08:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1260;a:8:{s:3:"sha";s:40:"6764fe25c55e2b0a2ef76897128349b3bbee94d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [012]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-11 05:08:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1261;a:8:{s:3:"sha";s:40:"6b84bc6a52145200bde6c2225a330db111564c96";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [011]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1262;a:8:{s:3:"sha";s:40:"dac6fa1ab79f0fee8df929301c89d10ca4a64403";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [010]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1263;a:8:{s:3:"sha";s:40:"66022da4dca5889df4bad3cb799ec517c62ea58f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [009]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1264;a:8:{s:3:"sha";s:40:"69acd60104432dded2efe0f8d8baa955354a5dcf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [008]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1265;a:8:{s:3:"sha";s:40:"0614ea2a23ce100f943dbd374c004a28e0daf2e1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [007]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1266;a:8:{s:3:"sha";s:40:"03e66e9ae5f775382560523999b2f7388986c5b0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [006]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1267;a:8:{s:3:"sha";s:40:"f41065e62b3eadd109bcbf874a592bb35fe423ef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [005]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1268;a:8:{s:3:"sha";s:40:"5184a93d79265983fb8c5509127cb700879fc7ce";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [004]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 12:26:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1269;a:8:{s:3:"sha";s:40:"4f844a4a24de93f4f338d25aeb4a762c769190b5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [003]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 21:10:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1270;a:8:{s:3:"sha";s:40:"8b8390f84fa6a5a22dba6a70a28e6354a1619d2e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [002]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 20:03:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1271;a:8:{s:3:"sha";s:40:"06ae6c5f413bfd1afe5bb86db1bf2c3b8cfa9b67";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Solution to Problem [001]";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 19:27:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1272;a:8:{s:3:"sha";s:40:"78b273325282b39cc8b01d72944cd9b1c6e03a7b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:24105754;s:4:"name";s:21:"Project-Euler_Befunge";s:9:"full_name";s:31:"Mikescher/Project-Euler_Befunge";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:50:"https://github.com/Mikescher/Project-Euler_Befunge";s:8:"language";N;s:8:"creation";r:370;s:4:"size";i:352;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:68:"https://api.github.com/repos/Mikescher/Project-Euler_Befunge/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-02 16:17:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1273;a:8:{s:3:"sha";s:40:"d96c1693eea59b217bbdd9265b903d3ed69fedde";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Updated to new AndroidStudio version";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-03-30 22:10:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1274;a:8:{s:3:"sha";s:40:"f587e62a2ea737435e06452f8e6f8902486a3546";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:99:"Fixed bug when the SSL certificate is outdated / invalid (F*** Rapla) [3rd try ... SmartGit fail ?]";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-03 14:44:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1275;a:8:{s:3:"sha";s:40:"b70b04ed237adf77270ac4ec12a270a9ddcb1fcb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"Added more Output and fixed config on Laptop (hopefully)";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-30 09:05:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1276;a:8:{s:3:"sha";s:40:"f3bad6addb0045796e19d21570e9da5d5b42e192";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Fixed Regexes with new Rapla Layout";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-13 15:52:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1277;a:8:{s:3:"sha";s:40:"f4443711bae8152143e6af4358796f9714d2708c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:131:"Added missing but planned features Show seeking value on Updating -Added AlarmManager (untested) to the startTime of the next Event";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-07 14:14:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:695;a:8:{s:3:"sha";s:40:"367537c0e93fc569aeaf23f13243cdc04f38f6a3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-02 05:40:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:696;a:8:{s:3:"sha";s:40:"7f836dfe0d439cb174af1b1f7d9bcefdb362645f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Bugfixes for Handy -Bigger Reload Button";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-01 21:25:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:697;a:8:{s:3:"sha";s:40:"1c84be6bcdc2d2b042cdc920cc136172d0a3d457";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed Bugs (No weekday set) -Better Error Display";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-01 19:39:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:698;a:8:{s:3:"sha";s:40:"3af848b6e3db6fb9c358f949595971c8e0b08a09";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:169:"Feature Complete +Added AlarmManager (untested) to the startTime of the next Event";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-07 14:14:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1278;a:8:{s:3:"sha";s:40:"367537c0e93fc569aeaf23f13243cdc04f38f6a3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Update README.md";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-02 05:40:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1279;a:8:{s:3:"sha";s:40:"7f836dfe0d439cb174af1b1f7d9bcefdb362645f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Bugfixes for Handy +Bigger Reload Button";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-01 21:25:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1280;a:8:{s:3:"sha";s:40:"1c84be6bcdc2d2b042cdc920cc136172d0a3d457";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed Bugs (No weekday set) +Better Error Display";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-01 19:39:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1281;a:8:{s:3:"sha";s:40:"3af848b6e3db6fb9c358f949595971c8e0b08a09";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:169:"Feature Complete Added Preview Image Added App Icon Implement HTML-Parsing Implement Button Listener java's Calendar class sucks Added Reload Function -Added Helper class";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-01 19:25:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:699;a:8:{s:3:"sha";s:40:"bf7b137d8f3a18544e674476cdd2201bacd19eb4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Created Widget Layout (xml)";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-31 22:02:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:700;a:8:{s:3:"sha";s:40:"91e574f05902500bfa151e17e8d2d1b82eacce6f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Getting and Parsing for RaplaData";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-30 18:55:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:701;a:8:{s:3:"sha";s:40:"1e4a6633c4a2396227544641d47d00d3293fe41f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated gitignore";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-30 18:54:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:702;a:8:{s:3:"sha";s:40:"6bacc4481282b083d6f44dfd8f062d73fe2a873f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:9:"Build APK";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:43:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:703;a:8:{s:3:"sha";s:40:"f2349891925cbad7fea242a0e4a3d6db8a472873";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Successfully compiled";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:42:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:704;a:8:{s:3:"sha";s:40:"3e7aea3b81137c484f9a75aae743cf41ab532f97";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Example Widget (shows time)";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:31:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:705;a:8:{s:3:"sha";s:40:"c8041fae1aee15c238e84746633923635538e2f5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:217;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:17:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:706;a:8:{s:3:"sha";s:40:"95d6d13c75aba0e55d693412ade5c267521c6637";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Updated gitignore and Compiled Exe";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-09 06:47:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:707;a:8:{s:3:"sha";s:40:"996263fa8542370c103ae3b937137fdad5814abd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Fixed FPS Drops 4 loooong Snake";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 19:46:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:708;a:8:{s:3:"sha";s:40:"112a31281ed013ab1017d421ceb102ab18446280";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added FPS Limiter";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 18:36:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:709;a:8:{s:3:"sha";s:40:"82929a5cc5f0c7fd8367ee2c33f39688d3c46d2d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"NO MOAR WARNINGS \(^o^)/";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 15:19:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:710;a:8:{s:3:"sha";s:40:"78c7f89cce72ef8c17e98dd42513545eee15c434";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Fixed corrupted Filter File";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 15:07:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:711;a:8:{s:3:"sha";s:40:"e6494ab184e4616f77c7acf36e258298476b50b3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:107:"Merge branch 'origin/CrazyMode' +Added Helper class";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-01 19:25:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1282;a:8:{s:3:"sha";s:40:"bf7b137d8f3a18544e674476cdd2201bacd19eb4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Created Widget Layout (xml)";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-31 22:02:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1283;a:8:{s:3:"sha";s:40:"91e574f05902500bfa151e17e8d2d1b82eacce6f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Getting and Parsing for RaplaData";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-30 18:55:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1284;a:8:{s:3:"sha";s:40:"1e4a6633c4a2396227544641d47d00d3293fe41f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated gitignore";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-30 18:54:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1285;a:8:{s:3:"sha";s:40:"6bacc4481282b083d6f44dfd8f062d73fe2a873f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:9:"Build APK";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:43:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1286;a:8:{s:3:"sha";s:40:"f2349891925cbad7fea242a0e4a3d6db8a472873";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Successfully compiled";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:42:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1287;a:8:{s:3:"sha";s:40:"3e7aea3b81137c484f9a75aae743cf41ab532f97";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Example Widget (shows time)";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:31:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1288;a:8:{s:3:"sha";s:40:"c8041fae1aee15c238e84746633923635538e2f5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:12468934;s:4:"name";s:18:"RaplaPreviewWidget";s:9:"full_name";s:28:"Mikescher/RaplaPreviewWidget";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/RaplaPreviewWidget";s:8:"language";s:4:"Java";s:8:"creation";r:387;s:4:"size";i:952;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/RaplaPreviewWidget/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-08-29 19:17:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1289;a:8:{s:3:"sha";s:40:"95d6d13c75aba0e55d693412ade5c267521c6637";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Updated gitignore and Compiled Exe";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-09 06:47:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1290;a:8:{s:3:"sha";s:40:"996263fa8542370c103ae3b937137fdad5814abd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Fixed FPS Drops 4 loooong Snake";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 19:46:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1291;a:8:{s:3:"sha";s:40:"112a31281ed013ab1017d421ceb102ab18446280";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added FPS Limiter";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 18:36:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1292;a:8:{s:3:"sha";s:40:"82929a5cc5f0c7fd8367ee2c33f39688d3c46d2d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"NO MOAR WARNINGS \(^o^)/";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 15:19:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1293;a:8:{s:3:"sha";s:40:"78c7f89cce72ef8c17e98dd42513545eee15c434";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Fixed corrupted Filter File";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 15:07:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1294;a:8:{s:3:"sha";s:40:"e6494ab184e4616f77c7acf36e258298476b50b3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:107:"Merge branch 'origin/CrazyMode' Conflicts: .gitignore Release/Serpilicum.exe - Serpilicum.vcxproj.filters";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 14:59:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:712;a:8:{s:3:"sha";s:40:"495a2d3eb6fb473f6ddfc455de5d6f677008b31a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"All Highscores are no in 1 File";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 14:51:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:713;a:8:{s:3:"sha";s:40:"5a80848806cad9cbb2344fa6449a39c3ba5f3419";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Menus 4 all Highscores";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 14:32:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:714;a:8:{s:3:"sha";s:40:"65a5de2ad562fe47af0a4fc20a4e76739e1203d7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added HideConsole Option";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 12:01:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:715;a:8:{s:3:"sha";s:40:"d7e9c59cc1e7dc2d34936c2fe1514957165ac185";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Added Border around Crazymode - Fixed Bugs";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 11:56:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:716;a:8:{s:3:"sha";s:40:"c867652758978828807ad40a0e9857ab1f5e37d7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Crazy Mode is now really crazy ;)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 08:46:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:717;a:8:{s:3:"sha";s:40:"71487926af9a65956effcc449b1023d284f26fa1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Removed Highscore Files from Repository & Fixed Typo";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-25 19:39:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:718;a:8:{s:3:"sha";s:40:"96e26d640cb7e6d7d618fc7da30a38053f1c22a1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"CrazyConsole works now exactly as OGL one";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-25 19:37:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:719;a:8:{s:3:"sha";s:40:"5991cdf1b2b0158baf8923f4ce09fc89d8e89404";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Started Coding for CrazyMode (needs proper OGL ThingZ)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-25 16:30:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:720;a:8:{s:3:"sha";s:40:"475a4c3b20b475a3c45fabae60c791df6d7d19b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Fixed choosen game mode in GMCM";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 12:28:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:721;a:8:{s:3:"sha";s:40:"ae8b42d9362293bd3f440f00f35f6e5528bd4693";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added PointDisplay";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 12:13:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:722;a:8:{s:3:"sha";s:40:"8b28affac580b6749d753253a835573a9dd44f87";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added NAme for OPtionMenu";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 11:35:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:723;a:8:{s:3:"sha";s:40:"b2936025da766208ab91467f38804c675154f6dd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"ADded Transistion Effect for CGM";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 11:33:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:724;a:8:{s:3:"sha";s:40:"def9af2380f84dcd7b3f575a4d0b3dd93eb0128d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added Gamemodes (FÜANF)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-20 22:15:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:725;a:8:{s:3:"sha";s:40:"f3abe5a23d1e077f96c8303cd24c3682a7d35e5b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Deleete temp files";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 10:44:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:726;a:8:{s:3:"sha";s:40:"ade0322a7006f60e29a2ef600b0b5a538462de7e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Addde GameModeChooseMenu";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 10:42:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:727;a:8:{s:3:"sha";s:40:"de080329aed9123cf0d75d93fa2df34bc773953b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Merge branch 'master' of https://github.com/Mikescher/Serpilicum";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 09:08:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:728;a:8:{s:3:"sha";s:40:"c420d3c553fbdc534e16e1ba86aebe625e2b91ae";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Resolved Test Conflicts (with kdiff3)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 09:07:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:729;a:8:{s:3:"sha";s:40:"800e0274da6dc99978203f319b989f22e3536a5e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:5:"test2";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 08:38:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:730;a:8:{s:3:"sha";s:40:"781a9bd0d14fac72e615f622d0733f6a44d06306";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Mergetool kdiff3";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 08:32:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:731;a:8:{s:3:"sha";s:40:"092aff44b7178bc9c8612a8835f007c0fc3d89c5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Merged thingZ";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 08:24:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:732;a:8:{s:3:"sha";s:40:"50c5f831b0d34f75ee09743771048344cedd7a12";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Did things";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 08:21:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:733;a:8:{s:3:"sha";s:40:"4dac567f14224e8ccbf4be5e8c5e9039cf995206";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Fixed Highscore == -1";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 18:12:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:734;a:8:{s:3:"sha";s:40:"c3975932262fd03d8b3ed983e3ba90e9bc9bea70";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Fixed Powerup spawning";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 16:08:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:735;a:8:{s:3:"sha";s:40:"bff96d3ef80de7946040b77f301d5eb04954fe19";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added SplashScreen";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 13:32:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:736;a:8:{s:3:"sha";s:40:"4543c9e3d6a019791082b6b672679e257741b269";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Merge branches (the -f stands for FUCK YOU)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 12:32:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:737;a:8:{s:3:"sha";s:40:"22f5a58ace418597f5d4c83a5e5fd893dc6c094c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added GameOver Page";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 12:24:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:738;a:8:{s:3:"sha";s:40:"072e388f028a7ed6551ee9383a1e90c1c9a2f480";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Updated Filter";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 11:15:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:739;a:8:{s:3:"sha";s:40:"6f7e04631bc2de96589c5990081597f2fa7642d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Merge branch 'master' of https://github.com/Mikescher/Serpilicum";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 10:54:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:740;a:8:{s:3:"sha";s:40:"287cc82949d880155028e58c597352615a439f29";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added Cheats + Shards";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 10:53:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:741;a:8:{s:3:"sha";s:40:"077277cc24c5797cdbd5f89ed44f43a4b3517af0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"AddeAdded Zo00onO0om PowerUp";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-17 18:55:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:742;a:8:{s:3:"sha";s:40:"cf741eb0cc55550c2c83d49ea9b0cb07446fd5df";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Added Edit:Backspace + Better Edit Design + Better Button Design";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-17 15:26:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:743;a:8:{s:3:"sha";s:40:"2e69df245c23482d40b80eb59479610ed03a0192";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Merge branch 'master' of https://github.com/Mikescher/Serpilicum";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-17 15:05:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:744;a:8:{s:3:"sha";s:40:"08249336d3101de1c36853ff06684fb9fa010eb3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added Snakeparts and Death Animation";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-17 15:05:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:745;a:8:{s:3:"sha";s:40:"a395dd463ffd6bc719550d0dc080d12fc038db13";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Effects for Auto";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-16 19:58:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:746;a:8:{s:3:"sha";s:40:"0639b235db16218c4644fabdaeb3a856f0d0726f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added AutoPowerUp";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-16 18:45:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:747;a:8:{s:3:"sha";s:40:"c7131c352ab2da253fe27ba95c7887739f8c3551";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"OGLC Header updated";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 14:54:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:748;a:8:{s:3:"sha";s:40:"d020a1533511b98501cef283b1404c209280cd6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:179:"Bitmap Resources for OGL + Serpilicum.vcxproj.filters";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 14:59:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1295;a:8:{s:3:"sha";s:40:"495a2d3eb6fb473f6ddfc455de5d6f677008b31a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"All Highscores are no in 1 File";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 14:51:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1296;a:8:{s:3:"sha";s:40:"5a80848806cad9cbb2344fa6449a39c3ba5f3419";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Menus 4 all Highscores";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 14:32:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1297;a:8:{s:3:"sha";s:40:"65a5de2ad562fe47af0a4fc20a4e76739e1203d7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added HideConsole Option";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 12:01:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1298;a:8:{s:3:"sha";s:40:"d7e9c59cc1e7dc2d34936c2fe1514957165ac185";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Added Border around Crazymode - Fixed Bugs";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 11:56:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1299;a:8:{s:3:"sha";s:40:"c867652758978828807ad40a0e9857ab1f5e37d7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Crazy Mode is now really crazy ;)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-26 08:46:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1300;a:8:{s:3:"sha";s:40:"71487926af9a65956effcc449b1023d284f26fa1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Removed Highscore Files from Repository & Fixed Typo";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-25 19:39:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1301;a:8:{s:3:"sha";s:40:"96e26d640cb7e6d7d618fc7da30a38053f1c22a1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"CrazyConsole works now exactly as OGL one";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-25 19:37:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1302;a:8:{s:3:"sha";s:40:"5991cdf1b2b0158baf8923f4ce09fc89d8e89404";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Started Coding for CrazyMode (needs proper OGL ThingZ)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-25 16:30:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1303;a:8:{s:3:"sha";s:40:"475a4c3b20b475a3c45fabae60c791df6d7d19b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Fixed choosen game mode in GMCM";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 12:28:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1304;a:8:{s:3:"sha";s:40:"ae8b42d9362293bd3f440f00f35f6e5528bd4693";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added PointDisplay";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 12:13:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1305;a:8:{s:3:"sha";s:40:"8b28affac580b6749d753253a835573a9dd44f87";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added NAme for OPtionMenu";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 11:35:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1306;a:8:{s:3:"sha";s:40:"b2936025da766208ab91467f38804c675154f6dd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"ADded Transistion Effect for CGM";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-21 11:33:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1307;a:8:{s:3:"sha";s:40:"def9af2380f84dcd7b3f575a4d0b3dd93eb0128d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added Gamemodes (FÜANF)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-20 22:15:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1308;a:8:{s:3:"sha";s:40:"f3abe5a23d1e077f96c8303cd24c3682a7d35e5b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Deleete temp files";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 10:44:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1309;a:8:{s:3:"sha";s:40:"ade0322a7006f60e29a2ef600b0b5a538462de7e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Addde GameModeChooseMenu";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 10:42:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1310;a:8:{s:3:"sha";s:40:"de080329aed9123cf0d75d93fa2df34bc773953b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Merge branch 'master' of https://github.com/Mikescher/Serpilicum";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 09:08:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1311;a:8:{s:3:"sha";s:40:"c420d3c553fbdc534e16e1ba86aebe625e2b91ae";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Resolved Test Conflicts (with kdiff3)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 09:07:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1312;a:8:{s:3:"sha";s:40:"800e0274da6dc99978203f319b989f22e3536a5e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:5:"test2";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 08:38:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1313;a:8:{s:3:"sha";s:40:"781a9bd0d14fac72e615f622d0733f6a44d06306";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Mergetool kdiff3";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 08:32:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1314;a:8:{s:3:"sha";s:40:"092aff44b7178bc9c8612a8835f007c0fc3d89c5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Merged thingZ";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 08:24:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1315;a:8:{s:3:"sha";s:40:"50c5f831b0d34f75ee09743771048344cedd7a12";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Did things";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-19 08:21:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1316;a:8:{s:3:"sha";s:40:"4dac567f14224e8ccbf4be5e8c5e9039cf995206";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Fixed Highscore == -1";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 18:12:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1317;a:8:{s:3:"sha";s:40:"c3975932262fd03d8b3ed983e3ba90e9bc9bea70";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Fixed Powerup spawning";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 16:08:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1318;a:8:{s:3:"sha";s:40:"bff96d3ef80de7946040b77f301d5eb04954fe19";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added SplashScreen";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 13:32:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1319;a:8:{s:3:"sha";s:40:"4543c9e3d6a019791082b6b672679e257741b269";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Merge branches (the -f stands for FUCK YOU)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 12:32:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1320;a:8:{s:3:"sha";s:40:"22f5a58ace418597f5d4c83a5e5fd893dc6c094c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added GameOver Page";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 12:24:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1321;a:8:{s:3:"sha";s:40:"072e388f028a7ed6551ee9383a1e90c1c9a2f480";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Updated Filter";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 11:15:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1322;a:8:{s:3:"sha";s:40:"6f7e04631bc2de96589c5990081597f2fa7642d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Merge branch 'master' of https://github.com/Mikescher/Serpilicum";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 10:54:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1323;a:8:{s:3:"sha";s:40:"287cc82949d880155028e58c597352615a439f29";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added Cheats + Shards";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-18 10:53:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1324;a:8:{s:3:"sha";s:40:"077277cc24c5797cdbd5f89ed44f43a4b3517af0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"AddeAdded Zo00onO0om PowerUp";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-17 18:55:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1325;a:8:{s:3:"sha";s:40:"cf741eb0cc55550c2c83d49ea9b0cb07446fd5df";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Added Edit:Backspace + Better Edit Design + Better Button Design";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-17 15:26:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1326;a:8:{s:3:"sha";s:40:"2e69df245c23482d40b80eb59479610ed03a0192";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Merge branch 'master' of https://github.com/Mikescher/Serpilicum";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-17 15:05:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1327;a:8:{s:3:"sha";s:40:"08249336d3101de1c36853ff06684fb9fa010eb3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Added Snakeparts and Death Animation";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-17 15:05:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1328;a:8:{s:3:"sha";s:40:"a395dd463ffd6bc719550d0dc080d12fc038db13";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Effects for Auto";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-16 19:58:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1329;a:8:{s:3:"sha";s:40:"0639b235db16218c4644fabdaeb3a856f0d0726f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added AutoPowerUp";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-16 18:45:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1330;a:8:{s:3:"sha";s:40:"c7131c352ab2da253fe27ba95c7887739f8c3551";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"OGLC Header updated";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 14:54:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1331;a:8:{s:3:"sha";s:40:"d020a1533511b98501cef283b1404c209280cd6b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:179:"Bitmap Resources for OGL FUCKING C++ CRAP WITH NO GODDAMN METHODS OR INTERFACE FOR SUCH EASY BULLSHIT LIKE LOADING A BULLSHIT RESOURCE -NOOOOO I DONT WANT A TUTORIAL IN GODDAMN C#";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 14:53:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:749;a:8:{s:3:"sha";s:40:"cedfe9bcbc14cc7dcd241aadb2a7dfa785df51ca";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Updated errrmm things....";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-14 08:56:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:750;a:8:{s:3:"sha";s:40:"77ff9ffcb4944a45fb1def9167813d2b296095f8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Improved Pathfinding for NP-Not found";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-14 07:08:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:751;a:8:{s:3:"sha";s:40:"06d589e73614a97e5669c3729288b6a266913912";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:169:"Improved (and finished) Pathfinding for all Situations +NOOOOO I DONT WANT A TUTORIAL IN GODDAMN C#";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-15 14:53:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1332;a:8:{s:3:"sha";s:40:"cedfe9bcbc14cc7dcd241aadb2a7dfa785df51ca";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Updated errrmm things....";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-14 08:56:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1333;a:8:{s:3:"sha";s:40:"77ff9ffcb4944a45fb1def9167813d2b296095f8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Improved Pathfinding for NP-Not found";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-14 07:08:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1334;a:8:{s:3:"sha";s:40:"06d589e73614a97e5669c3729288b6a266913912";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:169:"Improved (and finished) Pathfinding for all Situations - Infinite Field - Self Bite - No Path found - Bit verhindern (high priority) -- Radom Target wenn nearest failed";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 22:35:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:752;a:8:{s:3:"sha";s:40:"a2eb30ecbe9ded1eb36ec058061ff28f7fda0087";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Fixed MSVCP / MSVCR Error (\MD is now \MT)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 20:26:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:753;a:8:{s:3:"sha";s:40:"2b9582121de2e8349f00892e1325c7d59573018f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Fixed FPS Drop && Compile Warnings";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 19:56:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:754;a:8:{s:3:"sha";s:40:"6702430c85455089aab818c333454d9a8ae1ac79";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Removed Debug exe";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 19:08:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:755;a:8:{s:3:"sha";s:40:"6b439a07a8f8c047db51fa12ed1ea021d71e6487";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Updated da gitignore";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 19:07:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:756;a:8:{s:3:"sha";s:40:"2da0192e9b395c0b029d45877b1afdc9faac3ed4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed dat crappy Garbage from da Repository";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 18:53:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:757;a:8:{s:3:"sha";s:40:"6052b3f5b396db1f3d8523813d13ce7336591a15";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added Pathfinding 'n' shit";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 18:50:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:758;a:8:{s:3:"sha";s:40:"c3d4506677eb40536ce45f9f5eb059e91c321244";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added FPS Display";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 14:36:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:759;a:8:{s:3:"sha";s:40:"12b34fd32ee5ee52a979fcf39241dd0e4c31390a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Updated Gitignore to work with GitEye";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 18:58:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:760;a:8:{s:3:"sha";s:40:"e495c62792f6b72b7cd7d86ba3cbd3351e40e506";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Fixed KeyEvents in OGLConsole";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 12:57:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:761;a:8:{s:3:"sha";s:40:"615dcae5928bbab3b098219f068dffc9d355637a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"OpenGL is kinda working now";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 12:28:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:762;a:8:{s:3:"sha";s:40:"21d6e0ad1d7d28469ebaa3a341d5498a99d77e73";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Fixed Errors after merging";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 08:52:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:763;a:8:{s:3:"sha";s:40:"9f4e5e68402ee215e48e0abc2a32dffc9d95fcc5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Merge branch 'LinuxOGL'";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 08:43:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:764;a:8:{s:3:"sha";s:40:"eb079c9b2c17270bee1221d9599de7d0db431d09";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Fixed Files for Merge";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 08:43:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:765;a:8:{s:3:"sha";s:40:"697c9a3073c9edd4fa678a6cfca547c235e2a3ab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Moved Srand to Console";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 07:49:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:766;a:8:{s:3:"sha";s:40:"7c17722aa6943917f788a849698df815035f96a2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Fixed KeyEvents";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 07:31:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:767;a:8:{s:3:"sha";s:40:"a0edb70eb0a22d53ddf5f87bc297f30a36e4e5af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added OGLConsole";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 22:05:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:768;a:8:{s:3:"sha";s:40:"f9160041ae5bdb89df8162994992b9f3a5ae2c09";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Moved Files to src-Folder, Added OGL-Classes";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 21:11:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:769;a:8:{s:3:"sha";s:40:"bf245b546932466e6b981e91001bf1a3ee52ca14";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Abstract Console";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 15:33:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:770;a:8:{s:3:"sha";s:40:"2d991e1805b7c4f345a4a94549946473e0e52246";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Random Things";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 13:25:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:771;a:8:{s:3:"sha";s:40:"edcee9738442af3b8b48e2a393f26a0bf725027b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Alot of everything";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 12:22:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:772;a:8:{s:3:"sha";s:40:"c6f0dbd1d8611c4a8d7b1a9197ca4f5097760c14";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added virtual to derm destructorZ";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-04 13:17:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:773;a:8:{s:3:"sha";s:40:"d10342ed373ba2eec83a8a52b23b2a535cd39e27";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added various Snake Things +- Radom Target wenn nearest failed";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 22:35:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1335;a:8:{s:3:"sha";s:40:"a2eb30ecbe9ded1eb36ec058061ff28f7fda0087";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Fixed MSVCP / MSVCR Error (\MD is now \MT)";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 20:26:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1336;a:8:{s:3:"sha";s:40:"2b9582121de2e8349f00892e1325c7d59573018f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Fixed FPS Drop && Compile Warnings";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 19:56:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1337;a:8:{s:3:"sha";s:40:"6702430c85455089aab818c333454d9a8ae1ac79";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Removed Debug exe";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 19:08:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1338;a:8:{s:3:"sha";s:40:"6b439a07a8f8c047db51fa12ed1ea021d71e6487";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Updated da gitignore";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 19:07:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1339;a:8:{s:3:"sha";s:40:"2da0192e9b395c0b029d45877b1afdc9faac3ed4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Removed dat crappy Garbage from da Repository";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 18:53:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1340;a:8:{s:3:"sha";s:40:"6052b3f5b396db1f3d8523813d13ce7336591a15";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Added Pathfinding 'n' shit";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 18:50:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1341;a:8:{s:3:"sha";s:40:"c3d4506677eb40536ce45f9f5eb059e91c321244";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added FPS Display";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-13 14:36:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1342;a:8:{s:3:"sha";s:40:"12b34fd32ee5ee52a979fcf39241dd0e4c31390a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Updated Gitignore to work with GitEye";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 18:58:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1343;a:8:{s:3:"sha";s:40:"e495c62792f6b72b7cd7d86ba3cbd3351e40e506";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Fixed KeyEvents in OGLConsole";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 12:57:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1344;a:8:{s:3:"sha";s:40:"615dcae5928bbab3b098219f068dffc9d355637a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"OpenGL is kinda working now";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 12:28:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1345;a:8:{s:3:"sha";s:40:"21d6e0ad1d7d28469ebaa3a341d5498a99d77e73";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Fixed Errors after merging";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 08:52:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1346;a:8:{s:3:"sha";s:40:"9f4e5e68402ee215e48e0abc2a32dffc9d95fcc5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Merge branch 'LinuxOGL'";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 08:43:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1347;a:8:{s:3:"sha";s:40:"eb079c9b2c17270bee1221d9599de7d0db431d09";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Fixed Files for Merge";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 08:43:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1348;a:8:{s:3:"sha";s:40:"697c9a3073c9edd4fa678a6cfca547c235e2a3ab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Moved Srand to Console";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 07:49:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1349;a:8:{s:3:"sha";s:40:"7c17722aa6943917f788a849698df815035f96a2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Fixed KeyEvents";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-12 07:31:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1350;a:8:{s:3:"sha";s:40:"a0edb70eb0a22d53ddf5f87bc297f30a36e4e5af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added OGLConsole";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 22:05:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1351;a:8:{s:3:"sha";s:40:"f9160041ae5bdb89df8162994992b9f3a5ae2c09";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Moved Files to src-Folder, Added OGL-Classes";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 21:11:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1352;a:8:{s:3:"sha";s:40:"bf245b546932466e6b981e91001bf1a3ee52ca14";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Abstract Console";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 15:33:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1353;a:8:{s:3:"sha";s:40:"2d991e1805b7c4f345a4a94549946473e0e52246";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Random Things";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 13:25:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1354;a:8:{s:3:"sha";s:40:"edcee9738442af3b8b48e2a393f26a0bf725027b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Alot of everything";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-11 12:22:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1355;a:8:{s:3:"sha";s:40:"c6f0dbd1d8611c4a8d7b1a9197ca4f5097760c14";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added virtual to derm destructorZ";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-04 13:17:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1356;a:8:{s:3:"sha";s:40:"d10342ed373ba2eec83a8a52b23b2a535cd39e27";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added various Snake Things -Code and other shit";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-04 12:31:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:774;a:8:{s:3:"sha";s:40:"5e990667860738b2067bd59d88fe13f8e2001dc8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:87:"Finished SNake, Snake Element, Game, Level. Added PowerUps, PowerUpList,, HealthPowerup";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-28 17:23:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:775;a:8:{s:3:"sha";s:40:"734a654e553ad92f4f6e171b58229aede001646a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added DoubleBuffered Console";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-21 13:06:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:776;a:8:{s:3:"sha";s:40:"34a2ceff7d188e96bcdfce8cb32ebdeec61c6160";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Initial VS Commit";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-21 07:16:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:777;a:8:{s:3:"sha";s:40:"e75cf10cd0680af86c0361168975250f881f1357";s:11:"author_name";s:9:"Mikescher";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:251;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-17 12:10:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:778;a:8:{s:3:"sha";s:40:"a6238905ec144a71aa146e02bd10b032bd0354fe";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added missing namespace";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-12 08:51:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:779;a:8:{s:3:"sha";s:40:"9fe763cb08aa9d83ae4616f422ce445ba65eb8c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"print Settings on Startup";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-12 08:45:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:780;a:8:{s:3:"sha";s:40:"e6a2f4f578dbacab6db5ee6832ba27251e5316c2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Percentage to Settings";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-12 08:24:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:781;a:8:{s:3:"sha";s:40:"bc7b61b74cdbd1f67463cd9db2362f425400b149";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"Added Step-By-Step Sim +Code and other shit";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-06-04 12:31:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1357;a:8:{s:3:"sha";s:40:"5e990667860738b2067bd59d88fe13f8e2001dc8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:87:"Finished SNake, Snake Element, Game, Level. Added PowerUps, PowerUpList,, HealthPowerup";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-28 17:23:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1358;a:8:{s:3:"sha";s:40:"734a654e553ad92f4f6e171b58229aede001646a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added DoubleBuffered Console";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-21 13:06:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1359;a:8:{s:3:"sha";s:40:"34a2ceff7d188e96bcdfce8cb32ebdeec61c6160";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Initial VS Commit";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-21 07:16:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1360;a:8:{s:3:"sha";s:40:"e75cf10cd0680af86c0361168975250f881f1357";s:11:"author_name";s:9:"Mikescher";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:10122514;s:4:"name";s:10:"Serpilicum";s:9:"full_name";s:20:"Mikescher/Serpilicum";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/Serpilicum";s:8:"language";s:1:"C";s:8:"creation";r:421;s:4:"size";i:53968;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/Serpilicum/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-05-17 12:10:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1361;a:8:{s:3:"sha";s:40:"a6238905ec144a71aa146e02bd10b032bd0354fe";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added missing namespace";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:438;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-12 08:51:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1362;a:8:{s:3:"sha";s:40:"9fe763cb08aa9d83ae4616f422ce445ba65eb8c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"print Settings on Startup";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:438;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-12 08:45:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1363;a:8:{s:3:"sha";s:40:"e6a2f4f578dbacab6db5ee6832ba27251e5316c2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Percentage to Settings";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:438;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-12 08:24:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1364;a:8:{s:3:"sha";s:40:"bc7b61b74cdbd1f67463cd9db2362f425400b149";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"Added Step-By-Step Sim Moved Constants to const -Randomized values on Map Gen";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-12 08:12:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:782;a:8:{s:3:"sha";s:40:"af93628a911e18ee7f6cf9a260468243fb460833";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Pause on Space";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-11 16:18:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:783;a:8:{s:3:"sha";s:40:"5279248e9463c0de911afce08fa3b9ed76a3f412";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Reset Map on SpaceClick";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-11 13:10:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:784;a:8:{s:3:"sha";s:40:"b65683efb2d39eaf6469b3a4cdbeb478b837b7d0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Only Show Graph when pressing TAB";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-09 08:57:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:785;a:8:{s:3:"sha";s:40:"972091f0aee8ef35d677aa09cb21cb32ae607abd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added Graph for Fishes and Sharks";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-08 20:40:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:786;a:8:{s:3:"sha";s:40:"1caf16851c706bb962091fab29ef8153755f4460";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Multicore / Multithread FTW";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-08 10:49:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:787;a:8:{s:3:"sha";s:40:"a18eaa1340ea53529378f5d9425a279d6f291dc8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Simulation works";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-07 15:00:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:788;a:8:{s:3:"sha";s:40:"b5c8ab4c462818393b816627db081cf8ec3caba5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"It now renders Pixel YoY -Added WatorMap";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-05 12:45:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:789;a:8:{s:3:"sha";s:40:"ee933ef037703119f689c0490a9ed29c2d123c70";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Fixed strange VisualStudio things (compiled only on RELEASE)";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-03 07:51:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:790;a:8:{s:3:"sha";s:40:"f63a1ed8f74822e40380bb996c66793b9b8d2e6a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Initial commit (Colorful OGL Quad)";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-02 18:21:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:791;a:8:{s:3:"sha";s:40:"6f66c74df4b17bfd4de234af07284d896316d816";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:268;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-02 18:12:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:792;a:8:{s:3:"sha";s:40:"449f23a7b7cef2ac819bd1ffcc3a2c62e014515e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Directory fail ...";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-21 16:35:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:793;a:8:{s:3:"sha";s:40:"74db41306c1027b7fcfbcbc5b8444c4d476565aa";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"##### RESTART ##### -Restart Project with Vaadis";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-21 16:06:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:794;a:8:{s:3:"sha";s:40:"f3b5410487a5714b8d9e7594f92b780f96950f24";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Finished Use Case "Login"";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-23 13:08:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:795;a:8:{s:3:"sha";s:40:"820f9e0e08ea25bafda5d03b313b7ad51db0a421";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"COMPLETE REDONE WITH >>SpringMVC<<";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-20 12:52:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:796;a:8:{s:3:"sha";s:40:"addffcc82e762bfb7e7913590f1f3c503fcfedd9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Suppressed warnings in jQuery-UI.js";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 11:45:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:797;a:8:{s:3:"sha";s:40:"22932f15a1554ccaaa1ef311ad240a87d8f2081c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed footerbox for style.css && style_boxed.css";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 13:35:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:798;a:8:{s:3:"sha";s:40:"187cbdf4afa897041dff386cfe6fa7ce429ccdf1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added Footer from Timos style";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 13:30:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:799;a:8:{s:3:"sha";s:40:"a0338cca96097e909eaa790bd7f55b5d0d86077d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"Moved Timos Design to style_boxed.css -Updated Login + Register";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 13:19:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:800;a:8:{s:3:"sha";s:40:"87325977b286437a81b7ff06fa4ecb172d3df2e7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Readded newArticle.jsp from reverted commit";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 12:47:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:801;a:8:{s:3:"sha";s:40:"c18a3d6d8b9c8064de2fa1884105f70be003d1a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:96:"Revert "mainframe / some changes" +Randomized values on Map Gen";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:438;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-12 08:12:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1365;a:8:{s:3:"sha";s:40:"af93628a911e18ee7f6cf9a260468243fb460833";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Pause on Space";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:438;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-11 16:18:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1366;a:8:{s:3:"sha";s:40:"5279248e9463c0de911afce08fa3b9ed76a3f412";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Reset Map on SpaceClick";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:438;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-11 13:10:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1367;a:8:{s:3:"sha";s:40:"b65683efb2d39eaf6469b3a4cdbeb478b837b7d0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Only Show Graph when pressing TAB";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:438;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-09 08:57:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1368;a:8:{s:3:"sha";s:40:"972091f0aee8ef35d677aa09cb21cb32ae607abd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added Graph for Fishes and Sharks";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:438;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-08 20:40:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1369;a:8:{s:3:"sha";s:40:"1caf16851c706bb962091fab29ef8153755f4460";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Multicore / Multithread FTW";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:438;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-08 10:49:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1370;a:8:{s:3:"sha";s:40:"a18eaa1340ea53529378f5d9425a279d6f291dc8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Simulation works";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:438;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-07 15:00:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1371;a:8:{s:3:"sha";s:40:"b5c8ab4c462818393b816627db081cf8ec3caba5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"It now renders Pixel YoY +Added WatorMap";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:438;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-05 12:45:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1372;a:8:{s:3:"sha";s:40:"ee933ef037703119f689c0490a9ed29c2d123c70";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Fixed strange VisualStudio things (compiled only on RELEASE)";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:438;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-03 07:51:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1373;a:8:{s:3:"sha";s:40:"f63a1ed8f74822e40380bb996c66793b9b8d2e6a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Initial commit (Colorful OGL Quad)";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:438;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-02 18:21:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1374;a:8:{s:3:"sha";s:40:"6f66c74df4b17bfd4de234af07284d896316d816";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:11131546;s:4:"name";s:8:"SharkSim";s:9:"full_name";s:18:"Mikescher/SharkSim";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/SharkSim";s:8:"language";s:1:"C";s:8:"creation";r:438;s:4:"size";i:98732;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/SharkSim/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-07-02 18:12:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1375;a:8:{s:3:"sha";s:40:"850613aa0d5887dbcbbce9503ac376f41c6053d8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Regex Support and Menu";s:10:"repository";a:13:{s:2:"id";i:28542363;s:4:"name";s:18:"StandaloneOrganizr";s:9:"full_name";s:28:"Mikescher/StandaloneOrganizr";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/StandaloneOrganizr";s:8:"language";s:2:"C#";s:8:"creation";r:455;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/StandaloneOrganizr/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-28 23:22:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1376;a:8:{s:3:"sha";s:40:"f231e96cb5301b415e3d49637f4f929c2b303b28";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"fixed Searchresults not clickable";s:10:"repository";a:13:{s:2:"id";i:28542363;s:4:"name";s:18:"StandaloneOrganizr";s:9:"full_name";s:28:"Mikescher/StandaloneOrganizr";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/StandaloneOrganizr";s:8:"language";s:2:"C#";s:8:"creation";r:455;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/StandaloneOrganizr/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-28 22:56:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1377;a:8:{s:3:"sha";s:40:"cc661a18bb338223cc40acf7ef98a7e65eb7f47d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Sanitize .organizr file";s:10:"repository";a:13:{s:2:"id";i:28542363;s:4:"name";s:18:"StandaloneOrganizr";s:9:"full_name";s:28:"Mikescher/StandaloneOrganizr";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/StandaloneOrganizr";s:8:"language";s:2:"C#";s:8:"creation";r:455;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/StandaloneOrganizr/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-28 12:57:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1378;a:8:{s:3:"sha";s:40:"81d5ab1049bdd4684d47ec5c6efafb7681176bc6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added better sorting based on hitcount";s:10:"repository";a:13:{s:2:"id";i:28542363;s:4:"name";s:18:"StandaloneOrganizr";s:9:"full_name";s:28:"Mikescher/StandaloneOrganizr";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/StandaloneOrganizr";s:8:"language";s:2:"C#";s:8:"creation";r:455;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/StandaloneOrganizr/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-28 11:38:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1379;a:8:{s:3:"sha";s:40:"bd3b72c3fbb5acf8e63b39e79f91068fa90f2f2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Fixed Escaping";s:10:"repository";a:13:{s:2:"id";i:28542363;s:4:"name";s:18:"StandaloneOrganizr";s:9:"full_name";s:28:"Mikescher/StandaloneOrganizr";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/StandaloneOrganizr";s:8:"language";s:2:"C#";s:8:"creation";r:455;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/StandaloneOrganizr/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-27 23:43:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1380;a:8:{s:3:"sha";s:40:"1cf6023f3d8991e22fc4bdfb84209749e60268fa";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Fixed IO Exception";s:10:"repository";a:13:{s:2:"id";i:28542363;s:4:"name";s:18:"StandaloneOrganizr";s:9:"full_name";s:28:"Mikescher/StandaloneOrganizr";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/StandaloneOrganizr";s:8:"language";s:2:"C#";s:8:"creation";r:455;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/StandaloneOrganizr/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-27 23:43:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1381;a:8:{s:3:"sha";s:40:"2d301057e72c853499225e8541a90cb511461740";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Little Tweaks";s:10:"repository";a:13:{s:2:"id";i:28542363;s:4:"name";s:18:"StandaloneOrganizr";s:9:"full_name";s:28:"Mikescher/StandaloneOrganizr";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/StandaloneOrganizr";s:8:"language";s:2:"C#";s:8:"creation";r:455;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/StandaloneOrganizr/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-27 23:10:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1382;a:8:{s:3:"sha";s:40:"c60535e25618ee24db3d2f836ceacc38dc0f9c79";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Added icon";s:10:"repository";a:13:{s:2:"id";i:28542363;s:4:"name";s:18:"StandaloneOrganizr";s:9:"full_name";s:28:"Mikescher/StandaloneOrganizr";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/StandaloneOrganizr";s:8:"language";s:2:"C#";s:8:"creation";r:455;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/StandaloneOrganizr/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-27 22:56:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1383;a:8:{s:3:"sha";s:40:"964f0c2a8a08d9bf101486f85d1ffb47b49b96da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added way of editing Programs";s:10:"repository";a:13:{s:2:"id";i:28542363;s:4:"name";s:18:"StandaloneOrganizr";s:9:"full_name";s:28:"Mikescher/StandaloneOrganizr";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/StandaloneOrganizr";s:8:"language";s:2:"C#";s:8:"creation";r:455;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/StandaloneOrganizr/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-27 22:51:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1384;a:8:{s:3:"sha";s:40:"487bab04a54f3c9799350c40e83d47dec4a1ef70";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Implemented searching etc";s:10:"repository";a:13:{s:2:"id";i:28542363;s:4:"name";s:18:"StandaloneOrganizr";s:9:"full_name";s:28:"Mikescher/StandaloneOrganizr";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/StandaloneOrganizr";s:8:"language";s:2:"C#";s:8:"creation";r:455;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/StandaloneOrganizr/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-27 22:07:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1385;a:8:{s:3:"sha";s:40:"30bf6060e21bfcb11d56f7e76cdde97a19de5e24";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Working Mockup";s:10:"repository";a:13:{s:2:"id";i:28542363;s:4:"name";s:18:"StandaloneOrganizr";s:9:"full_name";s:28:"Mikescher/StandaloneOrganizr";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/StandaloneOrganizr";s:8:"language";s:2:"C#";s:8:"creation";r:455;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/StandaloneOrganizr/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-27 20:30:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1386;a:8:{s:3:"sha";s:40:"8e16993740226a193dd19b721c61cfbca8a44b6c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Added project";s:10:"repository";a:13:{s:2:"id";i:28542363;s:4:"name";s:18:"StandaloneOrganizr";s:9:"full_name";s:28:"Mikescher/StandaloneOrganizr";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/StandaloneOrganizr";s:8:"language";s:2:"C#";s:8:"creation";r:455;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/StandaloneOrganizr/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-27 17:32:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1387;a:8:{s:3:"sha";s:40:"20c1f189c3576e7f60cf72650871a53797841246";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added .gitignore";s:10:"repository";a:13:{s:2:"id";i:28542363;s:4:"name";s:18:"StandaloneOrganizr";s:9:"full_name";s:28:"Mikescher/StandaloneOrganizr";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:47:"https://github.com/Mikescher/StandaloneOrganizr";s:8:"language";s:2:"C#";s:8:"creation";r:455;s:4:"size";i:0;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:65:"https://api.github.com/repos/Mikescher/StandaloneOrganizr/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-27 17:31:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1388;a:8:{s:3:"sha";s:40:"449f23a7b7cef2ac819bd1ffcc3a2c62e014515e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Directory fail ...";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-21 16:35:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1389;a:8:{s:3:"sha";s:40:"74db41306c1027b7fcfbcbc5b8444c4d476565aa";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"##### RESTART ##### +Restart Project with Vaadis";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-02-21 16:06:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1390;a:8:{s:3:"sha";s:40:"f3b5410487a5714b8d9e7594f92b780f96950f24";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Finished Use Case "Login"";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-23 13:08:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1391;a:8:{s:3:"sha";s:40:"820f9e0e08ea25bafda5d03b313b7ad51db0a421";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"COMPLETE REDONE WITH >>SpringMVC<<";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-20 12:52:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1392;a:8:{s:3:"sha";s:40:"addffcc82e762bfb7e7913590f1f3c503fcfedd9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Suppressed warnings in jQuery-UI.js";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-07 11:45:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1393;a:8:{s:3:"sha";s:40:"22932f15a1554ccaaa1ef311ad240a87d8f2081c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Fixed footerbox for style.css && style_boxed.css";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 13:35:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1394;a:8:{s:3:"sha";s:40:"187cbdf4afa897041dff386cfe6fa7ce429ccdf1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added Footer from Timos style";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 13:30:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1395;a:8:{s:3:"sha";s:40:"a0338cca96097e909eaa790bd7f55b5d0d86077d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"Moved Timos Design to style_boxed.css +Updated Login + Register";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 13:19:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1396;a:8:{s:3:"sha";s:40:"87325977b286437a81b7ff06fa4ecb172d3df2e7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Readded newArticle.jsp from reverted commit";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 12:47:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1397;a:8:{s:3:"sha";s:40:"c18a3d6d8b9c8064de2fa1884105f70be003d1a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:96:"Revert "mainframe / some changes" -This reverts commit 6bd4878bf5aab6ef64971aeb799edc475bb1667d.";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 12:41:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:802;a:8:{s:3:"sha";s:40:"24b92532525d40fce08977cc9bbb16a70e3c9ce2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Conflict test 2";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-30 10:31:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:803;a:8:{s:3:"sha";s:40:"16481a45b059eb750b0e1f0b0bb914406a92a778";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Fixed sidebar clickable area not high enough (F** css)";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 22:58:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:804;a:8:{s:3:"sha";s:40:"23e4fdcc292da1bddfe49412e86850d9cbd5c8c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:86:"Added new elements and styles to register Menu -Moved register scripts to external file";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 21:57:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:805;a:8:{s:3:"sha";s:40:"8c08297d7b5525f5e7575f91f76285cb069fb895";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:159:"Added Header + Sidebar +This reverts commit 6bd4878bf5aab6ef64971aeb799edc475bb1667d.";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-11-02 12:41:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1398;a:8:{s:3:"sha";s:40:"24b92532525d40fce08977cc9bbb16a70e3c9ce2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Conflict test 2";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-30 10:31:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1399;a:8:{s:3:"sha";s:40:"16481a45b059eb750b0e1f0b0bb914406a92a778";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Fixed sidebar clickable area not high enough (F** css)";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 22:58:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1400;a:8:{s:3:"sha";s:40:"23e4fdcc292da1bddfe49412e86850d9cbd5c8c6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:86:"Added new elements and styles to register Menu +Moved register scripts to external file";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 21:57:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1401;a:8:{s:3:"sha";s:40:"8c08297d7b5525f5e7575f91f76285cb069fb895";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:159:"Added Header + Sidebar Alot of css magic ¯\_(ツ)_/¯ Moved sidebar code -> sidebar.jsp Moved header code -> header.jsp -Moved importlist -> commonimports.jsp";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 21:50:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:806;a:8:{s:3:"sha";s:40:"4378bc299ae52609f8ae97f737c861f9d0a8f33c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:197:"Added cheks to register frame +Moved importlist -> commonimports.jsp";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 21:50:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1402;a:8:{s:3:"sha";s:40:"4378bc299ae52609f8ae97f737c861f9d0a8f33c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:197:"Added cheks to register frame Added check for email Added check for password equals added check for empty fields added check marks added shake effect on failed check -moved scripts to commonscripts";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 12:44:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:807;a:8:{s:3:"sha";s:40:"9e50cb16cbc49f71cca27fcc198e059f1bd42086";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"We will make confilcts :3";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 11:02:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:808;a:8:{s:3:"sha";s:40:"2143bfa12f0cac7097f9b46315645738e37b19e2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:277:"Many Things: (see below) 'v' +moved scripts to commonscripts";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 12:44:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1403;a:8:{s:3:"sha";s:40:"9e50cb16cbc49f71cca27fcc198e059f1bd42086";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"We will make confilcts :3";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-29 11:02:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1404;a:8:{s:3:"sha";s:40:"2143bfa12f0cac7097f9b46315645738e37b19e2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:277:"Many Things: (see below) 'v' Cleaned up unused files Added 2nd pw field (and js to show it when entering 1st) Added password strength bar @@ -751,22 +837,22 @@ proper use of jQuery everywhere cleaned up css fixed bugs in testpw a little bit of refactoring around a few files -added temp. index file";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-28 22:13:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:809;a:8:{s:3:"sha";s:40:"7f55c37363b1bd05506a6264bf3a8dbecf713f2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Fixed Formatting & wrong used id's && class/id names";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-28 20:06:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:810;a:8:{s:3:"sha";s:40:"50374403a88e5575435cd8b4d4192c98521c6a28";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Fixed merge artifacts";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-28 19:46:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:811;a:8:{s:3:"sha";s:40:"3598948562035b234501cb31fb1b5fadcc166fc9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added proper style for ";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-28 13:01:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1408;a:8:{s:3:"sha";s:40:"158af207606a212544c0bcc0ec30a5db84c3d0b7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Translated kenworttesten.php -> testpw.jsp";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-28 13:01:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1409;a:8:{s:3:"sha";s:40:"4d01a179f4a0b7e2c36877861675ab69d7ab935f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added missing librarys";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-28 12:20:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1410;a:8:{s:3:"sha";s:40:"8763687a6fe945899aa0134a24e4896bbfd9f064";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Updated gitignore (2nd try)";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-25 08:25:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1411;a:8:{s:3:"sha";s:40:"deb6c459aa7257a97e6633beeb1d28dac313cfe5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Removed .classpath from repo";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-25 08:24:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1412;a:8:{s:3:"sha";s:40:"ce93ab6f8196f14e2d72ecb8b258069828ea0608";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated gitignore";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-25 08:24:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1413;a:8:{s:3:"sha";s:40:"e041a1ac370b812e871646c8802bf685d8987926";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Changed Apachename (works now everywhere ?)";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-25 07:32:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1414;a:8:{s:3:"sha";s:40:"045dd217adc15f26d2256039e73732848dff9b02";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Update register.html -Fixed encoding error";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-23 16:24:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:819;a:8:{s:3:"sha";s:40:"f86e19fcf5e18d02525d8b3369c14e7c2970f486";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"Update register.html +Fixed encoding error";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-23 16:24:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1415;a:8:{s:3:"sha";s:40:"f86e19fcf5e18d02525d8b3369c14e7c2970f486";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:75:"Update register.html -jQuery Referenz entfernt -> Wird heir nicht gebraucht";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-23 16:02:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:820;a:8:{s:3:"sha";s:40:"f386331839595cb7ca863128c43d3eec06f00a99";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Login Page (Prototype)";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-22 16:26:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:821;a:8:{s:3:"sha";s:40:"14b4840e119de3738b2f3bc7109a2e866a1bfe47";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Updated gitignore - include settings";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 12:01:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:822;a:8:{s:3:"sha";s:40:"ef63ef0e1f229fc28d773e417dc9be0f7bd2aeb5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added Example/Test Bean";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 11:23:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:823;a:8:{s:3:"sha";s:40:"883d96c340411a1f11f9fcb525f62cf13a19d7d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added README's für Unterordner";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 10:52:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:824;a:8:{s:3:"sha";s:40:"e44fb958f47d4f72daf8debab9606ed8da5aed87";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"First Website Test (With 1 Servlet)";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 10:46:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:825;a:8:{s:3:"sha";s:40:"e109ee894d39abbfaad495624047b5a17055a86d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added .settings to .gitignore";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 10:46:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:826;a:8:{s:3:"sha";s:40:"32a5e8c2aa28713d997f07baec00c707c8d56e68";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Updated .gitignore";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 10:40:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:827;a:8:{s:3:"sha";s:40:"8212844ec59b67ecb7c902cbf5acf864c2a9a8a1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:285;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 07:51:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:828;a:8:{s:3:"sha";s:40:"979b2f31099d8e488ecc12c47a57b1710f36bc89";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added more CD's";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-16 16:59:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:829;a:8:{s:3:"sha";s:40:"43415140658a2f4b75df6759faae82b748d976d4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Updated CD - Added new Small CD";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 09:56:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:830;a:8:{s:3:"sha";s:40:"0ed380ee67da58e807fa2127202706d3e8e7e65d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Added a little bit more design to "SearchResultPage"";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 13:48:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:831;a:8:{s:3:"sha";s:40:"b3d24fabb7f89ee998c24fab3ca07ddb744d110a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added **** EditProfilePage ^o^";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 13:24:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:832;a:8:{s:3:"sha";s:40:"5c4f12332baa5b576b46442bb20734a14f20dab3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Add Designpattern "FACTORYMETHODS"";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-25 13:57:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:833;a:8:{s:3:"sha";s:40:"f3e08a40153097f88e4c69934524bf973edf3cb3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added logo - added logo to all headers in pages";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 08:43:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:834;a:8:{s:3:"sha";s:40:"d9c41db7af9798d2564667847fce05b5b53750eb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added Conten to left and right sidebar";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 08:19:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:835;a:8:{s:3:"sha";s:40:"69fd5d83da5fb63d703f0c243782eeed9b680881";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Fixed Places-Input Textfield and not Select";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 07:42:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:836;a:8:{s:3:"sha";s:40:"884ae14c420a9bde1193fe11d5b76f0ac7fa0e16";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Seleniumtest for "SendUserMessage"";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 07:34:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:837;a:8:{s:3:"sha";s:40:"d43a521afbd1764fdc0f31025ca8311c2f9e4deb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Seleniumtest for "AddArticle"";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 07:16:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:838;a:8:{s:3:"sha";s:40:"5200a9fb1d2751d700196915a31c4b0396db9b21";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added Class Diagramm";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 06:56:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:839;a:8:{s:3:"sha";s:40:"fac09b9caa70132d067ff768406940ce76f1707b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Added EditArticlePage (Edit & Delete own articles)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 18:29:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:840;a:8:{s:3:"sha";s:40:"554a47e4dffdf3f1dc2394ba9401a57e2a632d90";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added ArticleDisplay to UserPage";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 16:52:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:841;a:8:{s:3:"sha";s:40:"cd2a085d55f20fd4319cf367d5aaa7643464feb2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added ArticleDisplay to ProfilePage";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 16:52:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:842;a:8:{s:3:"sha";s:40:"525be6869a4563b9b8cfd2be2ece33bed68dd94f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added "AddArticlePage" + Functionality";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-14 13:46:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:843;a:8:{s:3:"sha";s:40:"1cf8cb6f87a5bc69af9cf1735064f1a7d42066d2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"Added (hopefully) Message Displaying / Reading / Alerts etc etc";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 19:02:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:844;a:8:{s:3:"sha";s:40:"216808bc280b241589910e027580d31618fc2e44";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added Profile Page";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 18:24:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:845;a:8:{s:3:"sha";s:40:"6d8b41781b3dc0a1899a3ba3b1732bb9a4669fd5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Logic for Profile-Link in Userbar";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 17:58:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:846;a:8:{s:3:"sha";s:40:"d78f6c71eb5780d7f325a9d52e3c3bb7884dead2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added (5) more Statements";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 17:39:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:847;a:8:{s:3:"sha";s:40:"5f2b79a689f9b2ef6f751337aef3d8a2e6cbcf00";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added Message sending";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 17:01:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:848;a:8:{s:3:"sha";s:40:"c6822e436299ad7d7801dd021baa4133544a15a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"fixed displaying pages in logged off mode (fallback to main)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 16:44:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:849;a:8:{s:3:"sha";s:40:"6e3e618eebd3fa8b962c90f02316d6928871c9a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Added UserPage";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 16:38:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:850;a:8:{s:3:"sha";s:40:"eadea77df4b2bdc61459e226db4bd444f68cdfc4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Merge branch 'origin/master'";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 10:24:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:851;a:8:{s:3:"sha";s:40:"9ff5c8a4d0a3cd19c08710ba57fc80f3c4adeeb7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"removed unnecessary bootstrap index.html";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 09:47:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:852;a:8:{s:3:"sha";s:40:"cbd9c40bd05d4eede30cd912bac300c3f4debb79";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added Metrics 1.3.6";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 08:03:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:853;a:8:{s:3:"sha";s:40:"e9ef5438b3789f14c21ab9cef8990a9ffd73cab6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added Test for AdvancedSearch";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-07 09:14:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:854;a:8:{s:3:"sha";s:40:"3ca0ea48cec080899005795664be99749af703ac";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added AdvancedSearch Page";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-07 08:58:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:855;a:8:{s:3:"sha";s:40:"934e97c8ebd6812e2785a379ee8d63a128e50966";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added Messages - finished Register - cleaned up";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-07 07:47:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:856;a:8:{s:3:"sha";s:40:"c6f24f2e37a579a099f8d258fb4db92f021b90c0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added SearchTest";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 21:15:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:857;a:8:{s:3:"sha";s:40:"8f43f6a8f6a2ebdbea40c1ee22c39bd62397ff71";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added RegisterTest";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 20:56:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:858;a:8:{s:3:"sha";s:40:"bb740406ad63ece9e5b815da755d12bcd53c6939";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Cleaned Up LoginTest";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 20:56:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:859;a:8:{s:3:"sha";s:40:"8ec6696b60c02788e25a9473cd0c9205c13297a2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added functional Register-UseCase";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 20:20:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:860;a:8:{s:3:"sha";s:40:"ead2d95f7c34b840fd7b230cc4efdfaf5b70be13";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"fixed Method Casing (starts with lowercase)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 19:40:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:861;a:8:{s:3:"sha";s:40:"10f556e6d5fface9e298b385b951f59337c00339";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"Fixed and finished Registerpage (register non-functionally)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 19:37:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:862;a:8:{s:3:"sha";s:40:"89c9e9174ec8b68a7ea8614b108f0e2694982cf5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Made visibility of Topbar private (is cleaner)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 19:24:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:863;a:8:{s:3:"sha";s:40:"7f90fffc1b36917e6060b35e4a0023fea060f563";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:156:"Merge branch 'origin/Selenium_Tests' +jQuery Referenz entfernt -> Wird heir nicht gebraucht";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-23 16:02:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1416;a:8:{s:3:"sha";s:40:"f386331839595cb7ca863128c43d3eec06f00a99";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Login Page (Prototype)";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-22 16:26:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1417;a:8:{s:3:"sha";s:40:"14b4840e119de3738b2f3bc7109a2e866a1bfe47";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Updated gitignore - include settings";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 12:01:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1418;a:8:{s:3:"sha";s:40:"ef63ef0e1f229fc28d773e417dc9be0f7bd2aeb5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added Example/Test Bean";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 11:23:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1419;a:8:{s:3:"sha";s:40:"883d96c340411a1f11f9fcb525f62cf13a19d7d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added README's für Unterordner";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 10:52:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1420;a:8:{s:3:"sha";s:40:"e44fb958f47d4f72daf8debab9606ed8da5aed87";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"First Website Test (With 1 Servlet)";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 10:46:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1421;a:8:{s:3:"sha";s:40:"e109ee894d39abbfaad495624047b5a17055a86d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added .settings to .gitignore";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 10:46:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1422;a:8:{s:3:"sha";s:40:"32a5e8c2aa28713d997f07baec00c707c8d56e68";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Updated .gitignore";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 10:40:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1423;a:8:{s:3:"sha";s:40:"8212844ec59b67ecb7c902cbf5acf864c2a9a8a1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:13583771;s:4:"name";s:10:"StudyTrade";s:9:"full_name";s:20:"Mikescher/StudyTrade";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Mikescher/StudyTrade";s:8:"language";s:4:"Java";s:8:"creation";r:472;s:4:"size";i:42728;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Mikescher/StudyTrade/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-15 07:51:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1424;a:8:{s:3:"sha";s:40:"979b2f31099d8e488ecc12c47a57b1710f36bc89";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added more CD's";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-16 16:59:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1425;a:8:{s:3:"sha";s:40:"43415140658a2f4b75df6759faae82b748d976d4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Updated CD - Added new Small CD";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-27 09:56:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1426;a:8:{s:3:"sha";s:40:"0ed380ee67da58e807fa2127202706d3e8e7e65d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Added a little bit more design to "SearchResultPage"";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 13:48:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1427;a:8:{s:3:"sha";s:40:"b3d24fabb7f89ee998c24fab3ca07ddb744d110a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added **** EditProfilePage ^o^";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-26 13:24:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1428;a:8:{s:3:"sha";s:40:"5c4f12332baa5b576b46442bb20734a14f20dab3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Add Designpattern "FACTORYMETHODS"";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-25 13:57:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1429;a:8:{s:3:"sha";s:40:"f3e08a40153097f88e4c69934524bf973edf3cb3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added logo - added logo to all headers in pages";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 08:43:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1430;a:8:{s:3:"sha";s:40:"d9c41db7af9798d2564667847fce05b5b53750eb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added Conten to left and right sidebar";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 08:19:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1431;a:8:{s:3:"sha";s:40:"69fd5d83da5fb63d703f0c243782eeed9b680881";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Fixed Places-Input Textfield and not Select";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 07:42:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1432;a:8:{s:3:"sha";s:40:"884ae14c420a9bde1193fe11d5b76f0ac7fa0e16";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Seleniumtest for "SendUserMessage"";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 07:34:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1433;a:8:{s:3:"sha";s:40:"d43a521afbd1764fdc0f31025ca8311c2f9e4deb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Seleniumtest for "AddArticle"";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 07:16:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1434;a:8:{s:3:"sha";s:40:"5200a9fb1d2751d700196915a31c4b0396db9b21";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added Class Diagramm";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-16 06:56:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1435;a:8:{s:3:"sha";s:40:"fac09b9caa70132d067ff768406940ce76f1707b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Added EditArticlePage (Edit & Delete own articles)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 18:29:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1436;a:8:{s:3:"sha";s:40:"554a47e4dffdf3f1dc2394ba9401a57e2a632d90";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added ArticleDisplay to UserPage";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 16:52:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1437;a:8:{s:3:"sha";s:40:"cd2a085d55f20fd4319cf367d5aaa7643464feb2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added ArticleDisplay to ProfilePage";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-15 16:52:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1438;a:8:{s:3:"sha";s:40:"525be6869a4563b9b8cfd2be2ece33bed68dd94f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Added "AddArticlePage" + Functionality";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-14 13:46:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1439;a:8:{s:3:"sha";s:40:"1cf8cb6f87a5bc69af9cf1735064f1a7d42066d2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"Added (hopefully) Message Displaying / Reading / Alerts etc etc";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 19:02:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1440;a:8:{s:3:"sha";s:40:"216808bc280b241589910e027580d31618fc2e44";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added Profile Page";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 18:24:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1441;a:8:{s:3:"sha";s:40:"6d8b41781b3dc0a1899a3ba3b1732bb9a4669fd5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Logic for Profile-Link in Userbar";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 17:58:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1442;a:8:{s:3:"sha";s:40:"d78f6c71eb5780d7f325a9d52e3c3bb7884dead2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added (5) more Statements";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 17:39:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1443;a:8:{s:3:"sha";s:40:"5f2b79a689f9b2ef6f751337aef3d8a2e6cbcf00";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added Message sending";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 17:01:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1444;a:8:{s:3:"sha";s:40:"c6822e436299ad7d7801dd021baa4133544a15a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"fixed displaying pages in logged off mode (fallback to main)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 16:44:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1445;a:8:{s:3:"sha";s:40:"6e3e618eebd3fa8b962c90f02316d6928871c9a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Added UserPage";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 16:38:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1446;a:8:{s:3:"sha";s:40:"eadea77df4b2bdc61459e226db4bd444f68cdfc4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Merge branch 'origin/master'";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 10:24:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1447;a:8:{s:3:"sha";s:40:"9ff5c8a4d0a3cd19c08710ba57fc80f3c4adeeb7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"removed unnecessary bootstrap index.html";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 09:47:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1448;a:8:{s:3:"sha";s:40:"cbd9c40bd05d4eede30cd912bac300c3f4debb79";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added Metrics 1.3.6";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-08 08:03:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1449;a:8:{s:3:"sha";s:40:"e9ef5438b3789f14c21ab9cef8990a9ffd73cab6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added Test for AdvancedSearch";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-07 09:14:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1450;a:8:{s:3:"sha";s:40:"3ca0ea48cec080899005795664be99749af703ac";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added AdvancedSearch Page";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-07 08:58:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1451;a:8:{s:3:"sha";s:40:"934e97c8ebd6812e2785a379ee8d63a128e50966";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added Messages - finished Register - cleaned up";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-07 07:47:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1452;a:8:{s:3:"sha";s:40:"c6f24f2e37a579a099f8d258fb4db92f021b90c0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added SearchTest";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 21:15:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1453;a:8:{s:3:"sha";s:40:"8f43f6a8f6a2ebdbea40c1ee22c39bd62397ff71";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added RegisterTest";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 20:56:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1454;a:8:{s:3:"sha";s:40:"bb740406ad63ece9e5b815da755d12bcd53c6939";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Cleaned Up LoginTest";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 20:56:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1455;a:8:{s:3:"sha";s:40:"8ec6696b60c02788e25a9473cd0c9205c13297a2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added functional Register-UseCase";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 20:20:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1456;a:8:{s:3:"sha";s:40:"ead2d95f7c34b840fd7b230cc4efdfaf5b70be13";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"fixed Method Casing (starts with lowercase)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 19:40:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1457;a:8:{s:3:"sha";s:40:"10f556e6d5fface9e298b385b951f59337c00339";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:59:"Fixed and finished Registerpage (register non-functionally)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 19:37:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1458;a:8:{s:3:"sha";s:40:"89c9e9174ec8b68a7ea8614b108f0e2694982cf5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Made visibility of Topbar private (is cleaner)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 19:24:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1459;a:8:{s:3:"sha";s:40:"7f90fffc1b36917e6060b35e4a0023fea060f563";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:156:"Merge branch 'origin/Selenium_Tests' SearchPage + Moved SQLSTatements to extra Files - + Added more informations to SzudyTradeUser and StudyTradeArticle";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 15:17:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:864;a:8:{s:3:"sha";s:40:"3abebdddaa6fcfb95d029cb0ef7d382a6d8aa535";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added rudimentary Login Test";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-24 11:53:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:865;a:8:{s:3:"sha";s:40:"d37887db8452959ca4096a09b3b4c7f19c8dda38";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Initial example Test (get ya self da libs)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-24 11:08:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:866;a:8:{s:3:"sha";s:40:"9d72b92f41311417d2e6da2c00a8bd3b3f2960be";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:156:"Added ArticlePage + + Added more informations to SzudyTradeUser and StudyTradeArticle";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 15:17:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1460;a:8:{s:3:"sha";s:40:"3abebdddaa6fcfb95d029cb0ef7d382a6d8aa535";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added rudimentary Login Test";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-24 11:53:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1461;a:8:{s:3:"sha";s:40:"d37887db8452959ca4096a09b3b4c7f19c8dda38";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Initial example Test (get ya self da libs)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-24 11:08:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1462;a:8:{s:3:"sha";s:40:"9d72b92f41311417d2e6da2c00a8bd3b3f2960be";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:156:"Added ArticlePage + Added Linking to SearchPage + Moved SQLSTatements to extra Files - + Added more informations to SzudyTradeUser and StudyTradeArticle";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 15:13:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:867;a:8:{s:3:"sha";s:40:"102353c081bb416c4290ff6e31835e996479bce8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:156:"Added ArticlePage + + Added more informations to SzudyTradeUser and StudyTradeArticle";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 15:13:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1463;a:8:{s:3:"sha";s:40:"102353c081bb416c4290ff6e31835e996479bce8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:156:"Added ArticlePage + Added Linking to SearchPage + Moved SQLSTatements to extra Files - + Added more informations to SzudyTradeUser and StudyTradeArticle";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 15:13:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:868;a:8:{s:3:"sha";s:40:"ba7c39026b795dbeafeb3ae1b239692c7a3c9356";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added rudimentary Login Test";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-24 11:53:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:869;a:8:{s:3:"sha";s:40:"69bc1dc62d27acb5221d43a90952c336581f23d0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Initial example Test (get ya self da libs)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-24 11:08:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:870;a:8:{s:3:"sha";s:40:"5490e66d64a2db90e7149c5056ec0bc79d92b32f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Worked a little bit on the Main Layout (css etc)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-19 16:10:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:871;a:8:{s:3:"sha";s:40:"b898acd4f6f45e0ef9db8c1494178d81b487625a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Did things in Parent Component";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 17:47:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:872;a:8:{s:3:"sha";s:40:"501f89cef49ed3c04bf9ca6369f8c80071cf08f0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added (wrong) Banner :(";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 15:10:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:873;a:8:{s:3:"sha";s:40:"c02d12aae5dd58a4a18046ca8e045318e5f6bc50";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added standard SQL Data";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 14:22:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:874;a:8:{s:3:"sha";s:40:"a070fc0419666fa478c284c051c6d856d0b1dfa9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Merge branch 'origin/MVP-Pattern'";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 11:49:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:875;a:8:{s:3:"sha";s:40:"7dc291c1c9139c878cc696666697b0e183cd9655";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:6:"things";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 11:44:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:876;a:8:{s:3:"sha";s:40:"ca3b04e54454e7bd8eb6ca2e991fccacb5030dc7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Fixed Things - Added Login";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 09:52:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:877;a:8:{s:3:"sha";s:40:"2aaa49a3fbf8a4019301a3faa7b465266968d10a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Search Page ... it works";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 20:29:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:878;a:8:{s:3:"sha";s:40:"7549fc4cce6c2801ebea675dc3f0778870b4aa48";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Integrated VAADIN UI into MVP thingZ";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 19:59:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:879;a:8:{s:3:"sha";s:40:"09da006beb82aa05ee58685205257554808d47ad";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"MainPageViewImpl works ... kind of";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 19:45:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:880;a:8:{s:3:"sha";s:40:"79a14cc69b658c889beef99f49c8a07826f7b616";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"The Layout is now completely f*** up";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 19:22:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:881;a:8:{s:3:"sha";s:40:"5f69fd83b79d794d79142b94ba475c4c7914df4c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Tried adding a MVp Pattern to everything";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 18:10:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:882;a:8:{s:3:"sha";s:40:"440e071966bb0d28a8c09b8a99eb592651b07675";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Fixed local DBConnection";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-13 17:23:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:883;a:8:{s:3:"sha";s:40:"58fb9288da8272b5de0b2e7fd9d380670a3de5dc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added Libs (+ MySQl Lib)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-13 16:41:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:884;a:8:{s:3:"sha";s:40:"07ffa530157f7f657b1963b90b7f6364656bb211";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Udated Project Faucet to 1.7";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-13 16:14:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:885;a:8:{s:3:"sha";s:40:"9326d9c7bb7854482c47ba5b61460cda237dc6b5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Cleaned up code";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-12 11:59:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:886;a:8:{s:3:"sha";s:40:"e4cce8a66a703825020908cba20c37b6ba5ed93e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Implemented MVP mockup";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-03 14:51:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:887;a:8:{s:3:"sha";s:40:"9f7f6fa9b4b9934eda91481329f1036191a20e7f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"... Magic ٩◔̯◔۶";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-03 11:57:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:888;a:8:{s:3:"sha";s:40:"74c69da1dd21c4576d60d1feb9a96d902b74834b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Initial Commit - Project Created";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-03 11:27:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:889;a:8:{s:3:"sha";s:40:"54496ab0fb8ddd1f544fc0d52f72f5f8c3044bb0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:302;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-03 11:23:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:890;a:8:{s:3:"sha";s:40:"2a4dde8c850d2a9e6a59bd7b4c5bc51cf4379bfd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Fixed wrong Initial Level Entry Point (again -.-)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-24 13:50:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:891;a:8:{s:3:"sha";s:40:"07a19c82872392089a907e954431522da38468ff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Added End-Map (Infinite Peaceful You-Won-Map) -Added PrisonBowser";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-24 13:49:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:892;a:8:{s:3:"sha";s:40:"91a43dc9cbf324905225fb735faf512ca8bc2355";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:985:"Multiple Map Fixes: (and more) + + Added more informations to SzudyTradeUser and StudyTradeArticle";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-29 15:13:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1464;a:8:{s:3:"sha";s:40:"ba7c39026b795dbeafeb3ae1b239692c7a3c9356";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added rudimentary Login Test";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-24 11:53:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1465;a:8:{s:3:"sha";s:40:"69bc1dc62d27acb5221d43a90952c336581f23d0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Initial example Test (get ya self da libs)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-24 11:08:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1466;a:8:{s:3:"sha";s:40:"5490e66d64a2db90e7149c5056ec0bc79d92b32f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Worked a little bit on the Main Layout (css etc)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-19 16:10:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1467;a:8:{s:3:"sha";s:40:"b898acd4f6f45e0ef9db8c1494178d81b487625a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Did things in Parent Component";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 17:47:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1468;a:8:{s:3:"sha";s:40:"501f89cef49ed3c04bf9ca6369f8c80071cf08f0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added (wrong) Banner :(";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 15:10:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1469;a:8:{s:3:"sha";s:40:"c02d12aae5dd58a4a18046ca8e045318e5f6bc50";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Added standard SQL Data";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 14:22:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1470;a:8:{s:3:"sha";s:40:"a070fc0419666fa478c284c051c6d856d0b1dfa9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Merge branch 'origin/MVP-Pattern'";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 11:49:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1471;a:8:{s:3:"sha";s:40:"7dc291c1c9139c878cc696666697b0e183cd9655";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:6:"things";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 11:44:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1472;a:8:{s:3:"sha";s:40:"ca3b04e54454e7bd8eb6ca2e991fccacb5030dc7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Fixed Things - Added Login";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-15 09:52:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1473;a:8:{s:3:"sha";s:40:"2aaa49a3fbf8a4019301a3faa7b465266968d10a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Search Page ... it works";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 20:29:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1474;a:8:{s:3:"sha";s:40:"7549fc4cce6c2801ebea675dc3f0778870b4aa48";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"Integrated VAADIN UI into MVP thingZ";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 19:59:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1475;a:8:{s:3:"sha";s:40:"09da006beb82aa05ee58685205257554808d47ad";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"MainPageViewImpl works ... kind of";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 19:45:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1476;a:8:{s:3:"sha";s:40:"79a14cc69b658c889beef99f49c8a07826f7b616";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:36:"The Layout is now completely f*** up";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 19:22:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1477;a:8:{s:3:"sha";s:40:"5f69fd83b79d794d79142b94ba475c4c7914df4c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Tried adding a MVp Pattern to everything";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-14 18:10:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1478;a:8:{s:3:"sha";s:40:"440e071966bb0d28a8c09b8a99eb592651b07675";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Fixed local DBConnection";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-13 17:23:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1479;a:8:{s:3:"sha";s:40:"58fb9288da8272b5de0b2e7fd9d380670a3de5dc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added Libs (+ MySQl Lib)";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-13 16:41:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1480;a:8:{s:3:"sha";s:40:"07ffa530157f7f657b1963b90b7f6364656bb211";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Udated Project Faucet to 1.7";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-13 16:14:21";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1481;a:8:{s:3:"sha";s:40:"9326d9c7bb7854482c47ba5b61460cda237dc6b5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Cleaned up code";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-12 11:59:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1482;a:8:{s:3:"sha";s:40:"e4cce8a66a703825020908cba20c37b6ba5ed93e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Implemented MVP mockup";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-03 14:51:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1483;a:8:{s:3:"sha";s:40:"9f7f6fa9b4b9934eda91481329f1036191a20e7f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"... Magic ٩◔̯◔۶";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-03 11:57:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1484;a:8:{s:3:"sha";s:40:"74c69da1dd21c4576d60d1feb9a96d902b74834b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Initial Commit - Project Created";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-03 11:27:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1485;a:8:{s:3:"sha";s:40:"54496ab0fb8ddd1f544fc0d52f72f5f8c3044bb0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:18400480;s:4:"name";s:11:"StudyTrade2";s:9:"full_name";s:21:"Mikescher/StudyTrade2";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:40:"https://github.com/Mikescher/StudyTrade2";s:8:"language";s:4:"Java";s:8:"creation";r:489;s:4:"size";i:44496;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:58:"https://api.github.com/repos/Mikescher/StudyTrade2/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-04-03 11:23:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1486;a:8:{s:3:"sha";s:40:"2a4dde8c850d2a9e6a59bd7b4c5bc51cf4379bfd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Fixed wrong Initial Level Entry Point (again -.-)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-24 13:50:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1487;a:8:{s:3:"sha";s:40:"07a19c82872392089a907e954431522da38468ff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:64:"Added End-Map (Infinite Peaceful You-Won-Map) +Added PrisonBowser";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-24 13:49:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1488;a:8:{s:3:"sha";s:40:"91a43dc9cbf324905225fb735faf512ca8bc2355";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:985:"Multiple Map Fixes: (and more) Added AddLives-Cheat Added Cheat KeyBindingsList to debugView @@ -805,8 +891,8 @@ MapFixes: 07-03: Fixed Coinboxes on wrong layer (Blocks on Trigger-Layer) 08-04: - Added 2 PowerBoxes to start (Always start with FirePower)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-24 09:13:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:893;a:8:{s:3:"sha";s:40:"bc7622819de01bcdebe5574f3d461f2f7c91a1e8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Fixed wrong TriggerColor in Map 01-02 -Massively nerved AirCheepCheep";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-17 09:16:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:894;a:8:{s:3:"sha";s:40:"734b0d56bf2566622d949cdcbc5f7b91f58ad174";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Fixed wrong Start-Level";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-17 09:11:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:895;a:8:{s:3:"sha";s:40:"9aa2d58323eea058fa320fddac56df9f2e192772";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:419:"Features and Fixes (many) + Added 2 PowerBoxes to start (Always start with FirePower)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-24 09:13:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1489;a:8:{s:3:"sha";s:40:"bc7622819de01bcdebe5574f3d461f2f7c91a1e8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:68:"Fixed wrong TriggerColor in Map 01-02 +Massively nerved AirCheepCheep";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-17 09:16:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1490;a:8:{s:3:"sha";s:40:"734b0d56bf2566622d949cdcbc5f7b91f58ad174";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Fixed wrong Start-Level";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-17 09:11:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1491;a:8:{s:3:"sha";s:40:"9aa2d58323eea058fa320fddac56df9f2e192772";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:419:"Features and Fixes (many) Fixed Flickering offset (minimal corrections when there is nothing to correct) Fixed missing Porter in 03-01 Added NumberDisplayEntity @@ -815,30 +901,30 @@ Updated Map 00-00, 00-01, 01-02, 04-02 with NumberDisplayEntitys Updated NumberRaster (Layer 1) Fixed Player gliding out of Map Border (ducking and gliding through X == 0) Removed ClassDiagramms -Updated .gitignore";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-17 08:16:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:896;a:8:{s:3:"sha";s:40:"d14730847c65c028bbcdf7f6d3ecf160429383cb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added PlayerGrowZone -Fixed Balancing on 02-03 && 07-03";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-14 11:10:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:897;a:8:{s:3:"sha";s:40:"48de1abfd64e3dff7b039e3ed71db6ebd0f0b085";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Increased Height of Flag in 01-02 -Updated Cheatcode";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-14 10:35:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:898;a:8:{s:3:"sha";s:40:"3c543c91428d7a613a9c8b43d48ba4f8af5d63a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Obfuscated cryptcode a little bit";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-14 08:53:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:899;a:8:{s:3:"sha";s:40:"51c9168397f509193a93d9f5ad03941d066c17d3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Re-added Debugmode through cheat";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-14 08:31:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:900;a:8:{s:3:"sha";s:40:"a0fdb0637c93cd9f062f4f8244adbef9a89544a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:110:"Final things +Updated .gitignore";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-17 08:16:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1492;a:8:{s:3:"sha";s:40:"d14730847c65c028bbcdf7f6d3ecf160429383cb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added PlayerGrowZone +Fixed Balancing on 02-03 && 07-03";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-14 11:10:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1493;a:8:{s:3:"sha";s:40:"48de1abfd64e3dff7b039e3ed71db6ebd0f0b085";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Increased Height of Flag in 01-02 +Updated Cheatcode";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-14 10:35:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1494;a:8:{s:3:"sha";s:40:"3c543c91428d7a613a9c8b43d48ba4f8af5d63a4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Obfuscated cryptcode a little bit";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-14 08:53:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1495;a:8:{s:3:"sha";s:40:"51c9168397f509193a93d9f5ad03941d066c17d3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Re-added Debugmode through cheat";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-14 08:31:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1496;a:8:{s:3:"sha";s:40:"a0fdb0637c93cd9f062f4f8244adbef9a89544a9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:110:"Final things Added Icon Removed DebugMode Improved Flag-Height on most Maps Removed Console -Added Window Title";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-14 07:33:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:901;a:8:{s:3:"sha";s:40:"e8195df222f15cfa6a816331b78f9d7a8ecce104";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:188:"Added Zoom Option +Added Window Title";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-14 07:33:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1497;a:8:{s:3:"sha";s:40:"e8195df222f15cfa6a816331b78f9d7a8ecce104";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:188:"Added Zoom Option Fixed Number Graphics Fixed Countdown Reset on Game Start Fixed Textures (0) Made Health Update on 100Coins more reliable -Fixed Gamebreaker when you duck in a 1 high area";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-13 13:54:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:902;a:8:{s:3:"sha";s:40:"dfdadf20ec82c91055d8c3f90ad1d0feefd62228";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"Added Logo +Fixed Gamebreaker when you duck in a 1 high area";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-13 13:54:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1498;a:8:{s:3:"sha";s:40:"dfdadf20ec82c91055d8c3f90ad1d0feefd62228";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"Added Logo Added Musik to resource-Folder -Added LogoSpawnZones";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-11 20:09:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:903;a:8:{s:3:"sha";s:40:"20ade62c22681769064aafdad2ec948841ca57de";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"Fixed FLoating Blocks in Map 00-01 -Set Respawn world to 00-01";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-11 10:03:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:904;a:8:{s:3:"sha";s:40:"618bd518b3ddb5708e1316bcc61c0be631190690";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:179:"Improved Start-Map 00-01 +Added LogoSpawnZones";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-11 20:09:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1499;a:8:{s:3:"sha";s:40:"20ade62c22681769064aafdad2ec948841ca57de";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:61:"Fixed FLoating Blocks in Map 00-01 +Set Respawn world to 00-01";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-11 10:03:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1500;a:8:{s:3:"sha";s:40:"618bd518b3ddb5708e1316bcc61c0be631190690";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:179:"Improved Start-Map 00-01 Added TextureChangePipes Added Infinite Walking Added Start Pipe Fixed DoublePorting with double-Width PortZones Added Texture-ChangeZone -Updated Info.png";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-11 09:56:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:905;a:8:{s:3:"sha";s:40:"d955409409bfb791ad321365a3f1e5615ca80901";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"More Coins :D +Updated Info.png";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-11 09:56:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1501;a:8:{s:3:"sha";s:40:"d955409409bfb791ad321365a3f1e5615ca80901";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:65:"More Coins :D Added Coin-Bonus to Flag -Added Coin-Bonus to Bowser";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-11 07:52:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:906;a:8:{s:3:"sha";s:40:"608083691506661f0eb3003c1ac71862115a98a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:466:"Fixes, Tasks and Features +Added Coin-Bonus to Bowser";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-11 07:52:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1502;a:8:{s:3:"sha";s:40:"608083691506661f0eb3003c1ac71862115a98a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:466:"Fixes, Tasks and Features Fixed Bug: Pipe-Exit directly into Water Fixed Texture for Plant (TexPack 2) Fixed Texture for Hammerbro (TexPack 2) @@ -849,82 +935,82 @@ Fixed Vision range on Map 01-02 Added Destroying/Activating Block kills Mobs above it Fixed Pushback when Big Mario enters N->S Pipe Updated Texture for Black Numberfont -Added Timer";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-10 17:27:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:907;a:8:{s:3:"sha";s:40:"7caa208208a9612dfe340883744ce3fef45278ca";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added Map 08-04 -MAPPING FINISHED !!!!";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-10 12:52:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:908;a:8:{s:3:"sha";s:40:"3dc5add3692a648bf08249bbf3bde38a873d42dc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 08-03";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 19:12:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:909;a:8:{s:3:"sha";s:40:"2837da063b27e8062ccd45799a6b3794d9f95001";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 08-02";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 14:07:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:910;a:8:{s:3:"sha";s:40:"055a1e65d68e9efae1b3bc5d7559e3d70ecc7b78";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 08-01";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 11:08:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:911;a:8:{s:3:"sha";s:40:"0154659259c1b8665a1e74a92de6c15762c9b32d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added Map 07-04 -Added HammerBowser";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 10:28:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:912;a:8:{s:3:"sha";s:40:"e5168e07754176c46871ac4df4324fc0e7ae79b0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 07-03";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 08:51:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:913;a:8:{s:3:"sha";s:40:"06b3a542e432c7253b12e9470d9e40f1772216da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 07-02";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 08:41:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:914;a:8:{s:3:"sha";s:40:"b108ce27272ee3d004b30f749d9684db61e01228";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added Map 07-01 -Fixed Missing Lavaball in 06-04";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 08:34:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:915;a:8:{s:3:"sha";s:40:"3d78f7eada8ee61150e50c429e3920d428ca2a29";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 06-04";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 08:08:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:916;a:8:{s:3:"sha";s:40:"15af0237cd20e97352d79e560c5b47f6a5ee4d6c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added Map 06-03 -Added Offset Correction on Key-DOWN";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-05 16:22:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:917;a:8:{s:3:"sha";s:40:"56a8dd5edde03abdf9c76bb547bbf330693abd9f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 06-02";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-04 21:49:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:918;a:8:{s:3:"sha";s:40:"f41e8bdde7a7be50fc38ce4c714b05d42050dfb5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 06-01";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-04 17:37:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:919;a:8:{s:3:"sha";s:40:"c1ad9ae143a9dbbd3051f4760850d35aede98500";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Map 05-04 -Fixed Bowser Orientation";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-04 16:58:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:920;a:8:{s:3:"sha";s:40:"b1752eabf104f151733f40627311d05632d343bc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"Added Map 05-03 +Added Timer";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-10 17:27:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1503;a:8:{s:3:"sha";s:40:"7caa208208a9612dfe340883744ce3fef45278ca";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Added Map 08-04 +MAPPING FINISHED !!!!";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-10 12:52:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1504;a:8:{s:3:"sha";s:40:"3dc5add3692a648bf08249bbf3bde38a873d42dc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 08-03";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 19:12:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1505;a:8:{s:3:"sha";s:40:"2837da063b27e8062ccd45799a6b3794d9f95001";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 08-02";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 14:07:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1506;a:8:{s:3:"sha";s:40:"055a1e65d68e9efae1b3bc5d7559e3d70ecc7b78";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 08-01";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 11:08:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1507;a:8:{s:3:"sha";s:40:"0154659259c1b8665a1e74a92de6c15762c9b32d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added Map 07-04 +Added HammerBowser";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 10:28:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1508;a:8:{s:3:"sha";s:40:"e5168e07754176c46871ac4df4324fc0e7ae79b0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 07-03";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 08:51:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1509;a:8:{s:3:"sha";s:40:"06b3a542e432c7253b12e9470d9e40f1772216da";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 07-02";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 08:41:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1510;a:8:{s:3:"sha";s:40:"b108ce27272ee3d004b30f749d9684db61e01228";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:47:"Added Map 07-01 +Fixed Missing Lavaball in 06-04";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 08:34:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1511;a:8:{s:3:"sha";s:40:"3d78f7eada8ee61150e50c429e3920d428ca2a29";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 06-04";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-07 08:08:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1512;a:8:{s:3:"sha";s:40:"15af0237cd20e97352d79e560c5b47f6a5ee4d6c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:51:"Added Map 06-03 +Added Offset Correction on Key-DOWN";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-05 16:22:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1513;a:8:{s:3:"sha";s:40:"56a8dd5edde03abdf9c76bb547bbf330693abd9f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 06-02";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-04 21:49:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1514;a:8:{s:3:"sha";s:40:"f41e8bdde7a7be50fc38ce4c714b05d42050dfb5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 06-01";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-04 17:37:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1515;a:8:{s:3:"sha";s:40:"c1ad9ae143a9dbbd3051f4760850d35aede98500";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Map 05-04 +Fixed Bowser Orientation";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-04 16:58:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1516;a:8:{s:3:"sha";s:40:"b1752eabf104f151733f40627311d05632d343bc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"Added Map 05-03 Added Support for multiple Texturepacks -Added Original Mario Textures";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-04 16:06:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:921;a:8:{s:3:"sha";s:40:"a01ee3c0abc86d12751e031303a97cbccf36ccac";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:143:"Added Map 05-02 +Added Original Mario Textures";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-04 16:06:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1517;a:8:{s:3:"sha";s:40:"a01ee3c0abc86d12751e031303a97cbccf36ccac";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:143:"Added Map 05-02 Fixed Trampoline testure Fixed Mob AI on Pillar Added X-Axis Reversion for Mobs -Fixed Vine and Cloud Texture for MC-Texturepack";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-04 13:54:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:922;a:8:{s:3:"sha";s:40:"a5b46410d1e32a8d6f3ac89bf10127ff25890e36";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added alternative MC Textures";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-03 18:53:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:923;a:8:{s:3:"sha";s:40:"a3d80d05e728a179d7f43e43e5f0a4351079fe67";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Plant sprites to main sprite sheet";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-03 16:18:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:924;a:8:{s:3:"sha";s:40:"b6cad652109004155184bf64bfbe550c6ca1e8dc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"test commit (github has problems ?)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-03 14:37:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:925;a:8:{s:3:"sha";s:40:"1732fde485ccde205a53334b9c1fd8da5aab9233";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Fixed Power reset on Level Change";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-30 10:58:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:926;a:8:{s:3:"sha";s:40:"f3eb7cd258d71d45a9636eb40d438e0cedffa5d5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:114:"Added Map 05-01 +Fixed Vine and Cloud Texture for MC-Texturepack";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-04 13:54:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1518;a:8:{s:3:"sha";s:40:"a5b46410d1e32a8d6f3ac89bf10127ff25890e36";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Added alternative MC Textures";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-03 18:53:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1519;a:8:{s:3:"sha";s:40:"a3d80d05e728a179d7f43e43e5f0a4351079fe67";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Plant sprites to main sprite sheet";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-03 16:18:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1520;a:8:{s:3:"sha";s:40:"b6cad652109004155184bf64bfbe550c6ca1e8dc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"test commit (github has problems ?)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-10-03 14:37:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1521;a:8:{s:3:"sha";s:40:"1732fde485ccde205a53334b9c1fd8da5aab9233";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Fixed Power reset on Level Change";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-30 10:58:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1522;a:8:{s:3:"sha";s:40:"f3eb7cd258d71d45a9636eb40d438e0cedffa5d5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:114:"Added Map 05-01 Added Bill Blaster Added Bullet Bills Fixed Block Artifact in 04-04 -Fixed impossible Jump in 04-02";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-29 13:11:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:927;a:8:{s:3:"sha";s:40:"6d66d7c1c76b4f3ae66fdcbc07a1a49991abb617";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 04-04";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-29 12:02:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:928;a:8:{s:3:"sha";s:40:"6b416a716e4f57d7c5b8e36fc28b36a563e40308";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 04-03";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 20:49:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:929;a:8:{s:3:"sha";s:40:"7c3909f2c327704748bd876b5666badac8832dc3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:92:"BuzzyBeetle and Fixes +Fixed impossible Jump in 04-02";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-29 13:11:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1523;a:8:{s:3:"sha";s:40:"6d66d7c1c76b4f3ae66fdcbc07a1a49991abb617";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 04-04";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-29 12:02:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1524;a:8:{s:3:"sha";s:40:"6b416a716e4f57d7c5b8e36fc28b36a563e40308";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 04-03";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 20:49:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1525;a:8:{s:3:"sha";s:40:"7c3909f2c327704748bd876b5666badac8832dc3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:92:"BuzzyBeetle and Fixes Fixed non-Moving KoopaShell Is Killing Mobs -Added BuzzyBeetle to 04-02";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 20:16:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:930;a:8:{s:3:"sha";s:40:"78506723fedddf38f4ce4e7ad14622475335a6ac";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Added Map 04-02 -Added WarpZone to Map 01-02";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 19:54:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:931;a:8:{s:3:"sha";s:40:"90f171a5364be56797617f1bb019c85fddff86d0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Fixed resetting of Power when restarting game";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 17:51:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:932;a:8:{s:3:"sha";s:40:"4393aa1ce606c980e6a956d0d4c84b3cb98e7b61";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Added Map 04-01 +Added BuzzyBeetle to 04-02";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 20:16:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1526;a:8:{s:3:"sha";s:40:"78506723fedddf38f4ce4e7ad14622475335a6ac";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Added Map 04-02 +Added WarpZone to Map 01-02";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 19:54:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1527;a:8:{s:3:"sha";s:40:"90f171a5364be56797617f1bb019c85fddff86d0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Fixed resetting of Power when restarting game";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 17:51:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1528;a:8:{s:3:"sha";s:40:"4393aa1ce606c980e6a956d0d4c84b3cb98e7b61";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Added Map 04-01 Added Lakitu -Added Spikeball";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 17:41:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:933;a:8:{s:3:"sha";s:40:"aed1b064244329991f96b67198f49a78386dae0a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"Added Map 03-04 -Fixed VisionRects in CastleLevel 01-04 && 02-04";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 13:44:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:934;a:8:{s:3:"sha";s:40:"acf145735686882b9a69733afe40ba7bc696366b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 03-04";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 12:59:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:935;a:8:{s:3:"sha";s:40:"c6f9116eac9873f7a12f7b38ce184fec7de656ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:83:"Added Map 03-02 +Added Spikeball";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 17:41:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1529;a:8:{s:3:"sha";s:40:"aed1b064244329991f96b67198f49a78386dae0a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"Added Map 03-04 +Fixed VisionRects in CastleLevel 01-04 && 02-04";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 13:44:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1530;a:8:{s:3:"sha";s:40:"acf145735686882b9a69733afe40ba7bc696366b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Map 03-04";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 12:59:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1531;a:8:{s:3:"sha";s:40:"c6f9116eac9873f7a12f7b38ce184fec7de656ed";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:83:"Added Map 03-02 Added EmptyMap - Template -Fixed KoopaShell turning when killing Mob";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 12:41:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:936;a:8:{s:3:"sha";s:40:"88beac5534b74ba82504eae8ddaa96d3607aae5a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:146:"Added Map 03-01 +Fixed KoopaShell turning when killing Mob";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-28 12:41:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1532;a:8:{s:3:"sha";s:40:"88beac5534b74ba82504eae8ddaa96d3607aae5a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:146:"Added Map 03-01 Added Jumping Paratroopas Added Jumpimg Paratroopas to Map 02-01 Added Hammerbros Fixed Non-Colliding Entities -Added Hammer-Entity";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-27 19:00:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:937;a:8:{s:3:"sha";s:40:"56ffb9707edf4cc006690e5f8e6b5f7f2c1c7298";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Added Trampoline -Fixed PlayerPower resetting on Level Change";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-27 16:05:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:938;a:8:{s:3:"sha";s:40:"a67dca391c0705d742216d1d722d0bc27f01e3f9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Crouching to Big Mario";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-27 11:33:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:939;a:8:{s:3:"sha";s:40:"0ebb0723dd153994f1504479e5eacad12b29fb36";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Map 02-04 -Added Fireball";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-26 20:43:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:940;a:8:{s:3:"sha";s:40:"b348923eb2dfd0c16c89eb6d654b398ced35bc75";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:150:"Halfed the Updatetime (Added alot more RAM) +Added Hammer-Entity";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-27 19:00:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1533;a:8:{s:3:"sha";s:40:"56ffb9707edf4cc006690e5f8e6b5f7f2c1c7298";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:60:"Added Trampoline +Fixed PlayerPower resetting on Level Change";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-27 16:05:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1534;a:8:{s:3:"sha";s:40:"a67dca391c0705d742216d1d722d0bc27f01e3f9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added Crouching to Big Mario";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-27 11:33:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1535;a:8:{s:3:"sha";s:40:"0ebb0723dd153994f1504479e5eacad12b29fb36";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Map 02-04 +Added Fireball";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-26 20:43:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1536;a:8:{s:3:"sha";s:40:"b348923eb2dfd0c16c89eb6d654b398ced35bc75";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:150:"Halfed the Updatetime (Added alot more RAM) Trading Ram for Performance #likeajavaprogrammer -Added EntityCache for only colliding with nearby entities";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-26 19:43:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:941;a:8:{s:3:"sha";s:40:"0dc5d65f05fd7709fa5181cd8c7ddcef2198b5c0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"Added FlowerPower ❀ ❀ ❀ +Added EntityCache for only colliding with nearby entities";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-26 19:43:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1537;a:8:{s:3:"sha";s:40:"0dc5d65f05fd7709fa5181cd8c7ddcef2198b5c0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"Added FlowerPower ❀ ❀ ❀ Added Flowers to Blocks -Added ShootingMarioPower";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-26 18:18:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:942;a:8:{s:3:"sha";s:40:"97e02994b0bd5a4b621ebfbeb3c8a3e02a90832c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:119:"Added Map 02-03 +Added ShootingMarioPower";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-26 18:18:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1538;a:8:{s:3:"sha";s:40:"97e02994b0bd5a4b621ebfbeb3c8a3e02a90832c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:119:"Added Map 02-03 Added Flying Cheep-Cheeps Added Swim Animations Centralized Cheat KeySwitches -Fixed Plants in Map 02-02";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-26 17:23:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:943;a:8:{s:3:"sha";s:40:"bba120fab15d51644fd48edd30a7191f55bfa5f3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:86:"Added (Underwater) Level 02-02 +Fixed Plants in Map 02-02";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-26 17:23:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1539;a:8:{s:3:"sha";s:40:"bba120fab15d51644fd48edd30a7191f55bfa5f3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:86:"Added (Underwater) Level 02-02 Added UnderwaterPhysics Added Cheep-Cheep -Added Blooper";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-26 14:00:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:944;a:8:{s:3:"sha";s:40:"988821fd2f5fecfadae6aca7bedae1122fcef37e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:118:"Added LevelChoose Map 00-01 +Added Blooper";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-26 14:00:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1540;a:8:{s:3:"sha";s:40:"988821fd2f5fecfadae6aca7bedae1122fcef37e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:118:"Added LevelChoose Map 00-01 Added Teleport Zones (seamless) Added Graphics for Pipe-Moving -Fixed vec2i subtraction-Bug";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-25 18:44:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:945;a:8:{s:3:"sha";s:40:"ac80524da4e5088e192e183e84990265ab2a6a6e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Finished Map 02-01";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-25 12:43:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:946;a:8:{s:3:"sha";s:40:"0c9e1278866c26e5880bbbcf037711a482ae3e2a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Map 02-01 -Added Map 01-01 Stuff (unfinished)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-24 19:42:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:947;a:8:{s:3:"sha";s:40:"f026f85c1baa04315aa6e85be598535c872aeb28";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:106:"Added Life and Death +Fixed vec2i subtraction-Bug";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-25 18:44:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1541;a:8:{s:3:"sha";s:40:"ac80524da4e5088e192e183e84990265ab2a6a6e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Finished Map 02-01";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-25 12:43:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1542;a:8:{s:3:"sha";s:40:"0c9e1278866c26e5880bbbcf037711a482ae3e2a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Map 02-01 +Added Map 01-01 Stuff (unfinished)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-24 19:42:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1543;a:8:{s:3:"sha";s:40:"f026f85c1baa04315aa6e85be598535c872aeb28";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:106:"Added Life and Death Added Mario-Lifes Added Respawn Added Rescurrection -Added 100 Coins Effect (+ 1 Life)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-23 18:42:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:948;a:8:{s:3:"sha";s:40:"8df9fd077b7b972b0846ed26fa19eb1e462bef6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:203:"Map 01-04 + MANY Map Features +Added 100 Coins Effect (+ 1 Life)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-23 18:42:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1544;a:8:{s:3:"sha";s:40:"8df9fd077b7b972b0846ed26fa19eb1e462bef6d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:203:"Map 01-04 + MANY Map Features Dont walk out of map Added Bowser + Toad Added CastleBlocks, Lava, Fireball-Circles Added Map 01-04 Updated Debug Map + Info.png -Added Bridge, BridgeLever, BridgeDestroyZone";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-23 17:34:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:949;a:8:{s:3:"sha";s:40:"a9bec2990d56bb18156e41577c57a95ccacd5c89";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:90:"Map 01-03 +Added Bridge, BridgeLever, BridgeDestroyZone";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-23 17:34:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1545;a:8:{s:3:"sha";s:40:"a9bec2990d56bb18156e41577c57a95ccacd5c89";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:90:"Map 01-03 Added Map 01-03 Added ParaTroopa Added Pillar, MushroomPlatform -Updated Info.png";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-22 18:16:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:950;a:8:{s:3:"sha";s:40:"85329293cfc217252489c8452842584ee5c2cf6a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated debug map";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-22 14:20:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:951;a:8:{s:3:"sha";s:40:"d87fc4e884c5891d609eaaa9b69b64fae8cacd3f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:163:"Big Mario, Ceiling and Resources +Updated Info.png";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-22 18:16:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1546;a:8:{s:3:"sha";s:40:"85329293cfc217252489c8452842584ee5c2cf6a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Updated debug map";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-22 14:20:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1547;a:8:{s:3:"sha";s:40:"d87fc4e884c5891d609eaaa9b69b64fae8cacd3f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:163:"Big Mario, Ceiling and Resources Added Mushrooms (=> Big Mario) Added destructable Ceiling Added CrazyCoinBox instaed of HP-Mushrooms Updated Maps -Updated Info.png";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-22 13:39:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:952;a:8:{s:3:"sha";s:40:"8a7ab0871859fff6dab1ef66f6a2bc2553b6e1f1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Updated Info.png";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-21 20:13:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:953;a:8:{s:3:"sha";s:40:"763d9e1cc844c44e7c6c2fc981927c37d4a10a53";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Missed a few files in last commit -.-";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-21 20:11:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:954;a:8:{s:3:"sha";s:40:"299e046fdadb81170164b8f433c62c7b752a040e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:66:"╚(•⌂•)╝Finally multiple Maps -Tip: Press F6 for Debug-Map";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-21 20:10:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:955;a:8:{s:3:"sha";s:40:"b74a16744087d5e00da6187d21a8fc5ec85fe364";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:186:"Mapping !! +Updated Info.png";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-22 13:39:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1548;a:8:{s:3:"sha";s:40:"8a7ab0871859fff6dab1ef66f6a2bc2553b6e1f1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Updated Info.png";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-21 20:13:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1549;a:8:{s:3:"sha";s:40:"763d9e1cc844c44e7c6c2fc981927c37d4a10a53";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Missed a few files in last commit -.-";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-21 20:11:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1550;a:8:{s:3:"sha";s:40:"299e046fdadb81170164b8f433c62c7b752a040e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:66:"╚(•⌂•)╝Finally multiple Maps +Tip: Press F6 for Debug-Map";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-21 20:10:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1551;a:8:{s:3:"sha";s:40:"b74a16744087d5e00da6187d21a8fc5ec85fe364";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:186:"Mapping !! Added Map 01-02 The old Map-01-01 is now debug Added original Map 01-01 Added Blocks: DarkGround, DarkHill, DarkCeiling Added fancy "Hole map explodes" effect -Updated Info.png";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-21 15:09:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:956;a:8:{s:3:"sha";s:40:"0725c89995afc2ef4b58bc967d36b8c7c4cc117c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:87:"Fixed Relicts from Trying to make Update independent from Performance :( -Second Try ...";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-21 12:15:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:957;a:8:{s:3:"sha";s:40:"8bba2002a447724e90444aa7ba23b49e0a4ce783";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"Fixed Relicts from Trying to make Update independent from Performance :(";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-21 10:25:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:958;a:8:{s:3:"sha";s:40:"6b3d91f703a0a727369e218e0e7fcbb21dafe08a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:137:"Made Update independent from Updaterate +Updated Info.png";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-21 15:09:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1552;a:8:{s:3:"sha";s:40:"0725c89995afc2ef4b58bc967d36b8c7c4cc117c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:87:"Fixed Relicts from Trying to make Update independent from Performance :( +Second Try ...";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-21 12:15:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1553;a:8:{s:3:"sha";s:40:"8bba2002a447724e90444aa7ba23b49e0a4ce783";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:72:"Fixed Relicts from Trying to make Update independent from Performance :(";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-21 10:25:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1554;a:8:{s:3:"sha";s:40:"6b3d91f703a0a727369e218e0e7fcbb21dafe08a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:137:"Made Update independent from Updaterate Tryed to make Update independent from Updaterate -Failed (is commented out) --> Look @ this later";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-20 09:26:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:959;a:8:{s:3:"sha";s:40:"12cbc204583cb38e0037e6cb65bae9db3c18fc78";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"More Performance by better sorting";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-20 08:57:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:960;a:8:{s:3:"sha";s:40:"b76d3f1df52f6221bc5a595f14944aa7a6e9dbc7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:245:"Koopas and Collisions +Failed (is commented out) --> Look @ this later";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-20 09:26:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1555;a:8:{s:3:"sha";s:40:"12cbc204583cb38e0037e6cb65bae9db3c18fc78";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"More Performance by better sorting";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-20 08:57:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1556;a:8:{s:3:"sha";s:40:"b76d3f1df52f6221bc5a595f14944aa7a6e9dbc7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:245:"Koopas and Collisions Added Koopa / KoopaShell Fixed Double Collisions @@ -932,35 +1018,35 @@ Killing Entitys that fall out of Map Update BollKeySwitches statically Updated Map with Fancy Pipes and Koopas Player jumps when hopping on Mob -Fixed duplicate PipeZoneColor";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-19 13:22:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:961;a:8:{s:3:"sha";s:40:"11e395eb4374e8ffdbb692b4ba0665999d3bef8f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:124:"Doubled the Performance on large WindowSizes ¯\_(ツ)_/¯ +Fixed duplicate PipeZoneColor";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-19 13:22:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1557;a:8:{s:3:"sha";s:40:"11e395eb4374e8ffdbb692b4ba0665999d3bef8f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:124:"Doubled the Performance on large WindowSizes ¯\_(ツ)_/¯ Added EntityCache -Added new Rendering Method "Render per Texture"";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-18 19:09:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:962;a:8:{s:3:"sha";s:40:"8b1f9caa9975392c4600435e59df0bf66185cef0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:66:"A few things +Added new Rendering Method "Render per Texture"";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-18 19:09:26";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1558;a:8:{s:3:"sha";s:40:"8b1f9caa9975392c4600435e59df0bf66185cef0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:66:"A few things Refactoring StopWatch -and Persistent Coins for MapGen";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-18 18:08:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:963;a:8:{s:3:"sha";s:40:"dc81412669748f9dcc3d6213fd62d47d4ae4daba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:122:"Small things and fixes +and Persistent Coins for MapGen";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-18 18:08:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1559;a:8:{s:3:"sha";s:40:"dc81412669748f9dcc3d6213fd62d47d4ae4daba";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:122:"Small things and fixes Fixed Particle Flood Added Coin Grinder to map_01_01 Fixed StartOffset is moving -Animated HUD-Coin";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-18 13:54:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:964;a:8:{s:3:"sha";s:40:"67fb2b97d84d9a54d39cf3932903f5e094aac67e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:127:"Coins Coins Coins +Animated HUD-Coin";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-18 13:54:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1560;a:8:{s:3:"sha";s:40:"67fb2b97d84d9a54d39cf3932903f5e094aac67e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:127:"Coins Coins Coins Added Fancy Coin Collect Animation Coin Counter finished -Added DoMax und DoMin Methods to the Vector-Classes";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-18 11:55:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:965;a:8:{s:3:"sha";s:40:"958e555f9fc47974f5c09479369e4bfca3505eac";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:138:"HUD and other miracles +Added DoMax und DoMin Methods to the Vector-Classes";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-18 11:55:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1561;a:8:{s:3:"sha";s:40:"958e555f9fc47974f5c09479369e4bfca3505eac";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:138:"HUD and other miracles Added HUD Added Coin Display (Press P) Updated Map (Moved Test-Pipe-Network to right) -Added NumberDisplay Graphics";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-18 09:36:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:966;a:8:{s:3:"sha";s:40:"8eed42010a0748fd9194e91eb55de731cfca1b51";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:148:"ヽ༼ຈل͜ຈ༽ノ Particlesヽ༼ຈل͜ຈ༽ノ +Added NumberDisplay Graphics";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-18 09:36:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1562;a:8:{s:3:"sha";s:40:"8eed42010a0748fd9194e91eb55de731cfca1b51";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:148:"ヽ༼ຈل͜ຈ༽ノ Particlesヽ༼ຈل͜ຈ༽ノ Added Particle Engine Added Death Particles for Player (F8) -Added Death Particles for Goomba";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-18 07:20:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:967;a:8:{s:3:"sha";s:40:"66f50f7426f03fff224a2bd75b141278be58a2b5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:171:"Offset (++) +Added Death Particles for Goomba";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-18 07:20:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1563;a:8:{s:3:"sha";s:40:"66f50f7426f03fff224a2bd75b141278be58a2b5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:171:"Offset (++) Added Operators to Rect2i and Rect2d Fixed Multiplikation of two Vectors Added OffsetCalculator Class -Added semi-good OffsetZone Support (needs further looks)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-17 14:36:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:968;a:8:{s:3:"sha";s:40:"8d2b14ff9d29d416f2176df9c47dab61f00b623b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:263:"Fixes and Features :3 +Added semi-good OffsetZone Support (needs further looks)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-17 14:36:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1564;a:8:{s:3:"sha";s:40:"8d2b14ff9d29d416f2176df9c47dab61f00b623b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:263:"Fixes and Features :3 Fixed wrong movement in end of pipes Added Watches for RenderingTime/UpdateTime @@ -968,55 +1054,55 @@ Added Switches for Debugmode/Minimap/FlyMode Added Colliding Flymode Added FlagController for Player Fixed killing Entities in UpdateLoop -Fixed suicidal Mobs :)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-17 11:53:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:969;a:8:{s:3:"sha";s:40:"e03444cbed5dc6d322b1103a15237be78053ec4d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"Fixed Pipes +Fixed suicidal Mobs :)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-17 11:53:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1565;a:8:{s:3:"sha";s:40:"e03444cbed5dc6d322b1103a15237be78053ec4d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"Fixed Pipes Fixed X/Y Correction in Pipes -Added Speed Attribut to Pipezones";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-17 06:34:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:970;a:8:{s:3:"sha";s:40:"9ac1c660f250db1d4aaa60396ba34f9be4de57f0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"Cleanup ... +Added Speed Attribut to Pipezones";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-17 06:34:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1566;a:8:{s:3:"sha";s:40:"9ac1c660f250db1d4aaa60396ba34f9be4de57f0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:78:"Cleanup ... -Cleaned up to Standard C# rules (Codemaid) (will now be standard)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-17 06:08:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:971;a:8:{s:3:"sha";s:40:"d1f247d2c4e16a2593bb6dc3705908bb32bf54d2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:206:"Finished Pipe System +Cleaned up to Standard C# rules (Codemaid) (will now be standard)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-17 06:08:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1567;a:8:{s:3:"sha";s:40:"d1f247d2c4e16a2593bb6dc3705908bb32bf54d2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:206:"Finished Pipe System Added 14 Different PipeZones Added Colors for all PipeZones Added Debug Rendering for Pipezones Fixed MovementDelta in Pipezones Toogle DebugMode with F10 -Reformatted Code with CodeMaid";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-16 18:53:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:972;a:8:{s:3:"sha";s:40:"b1a3f9eeedafe96690201dcb1a61423065eaea3d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:87:"Piped !!!1111einseinself +Reformatted Code with CodeMaid";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-16 18:53:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1568;a:8:{s:3:"sha";s:40:"b1a3f9eeedafe96690201dcb1a61423065eaea3d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:87:"Piped !!!1111einseinself -Added rudimentary support for (N->S)Pipes (Will finish later)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-16 14:42:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:973;a:8:{s:3:"sha";s:40:"6921f584321371baf9f454de967a474eb51e9923";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"ProjectfileFix +Added rudimentary support for (N->S)Pipes (Will finish later)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-16 14:42:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1569;a:8:{s:3:"sha";s:40:"6921f584321371baf9f454de967a474eb51e9923";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"ProjectfileFix -Removed inexistent ClassDiagramm Entry";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-16 14:22:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:974;a:8:{s:3:"sha";s:40:"77fa78d6e9ed58bfaa9d0495d75bb6ce986f9b0b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:295:"Major Refactoring +Removed inexistent ClassDiagramm Entry";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-16 14:22:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1570;a:8:{s:3:"sha";s:40:"77fa78d6e9ed58bfaa9d0495d75bb6ce986f9b0b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:295:"Major Refactoring Added Proper Zones for Pipes (still not functional) Added More Debug Output (Better Zones, PipeZones ...) Added Controller-System for Dynamic Entities (every Entity has Stack of Controllers) Fixed wrong Namespaces in SuperBitBros.Entities -Refactored Folder, Changed Namespaces";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-16 14:21:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:975;a:8:{s:3:"sha";s:40:"11d6687299bfae14a39837cbd63b99771e2fad76";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:162:"Added alot of Code +Refactored Folder, Changed Namespaces";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-16 14:21:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1571;a:8:{s:3:"sha";s:40:"11d6687299bfae14a39837cbd63b99771e2fad76";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:162:"Added alot of Code Added FPS / UPS Counte Fixed PiranhaPlant Hitbox Added Minimap (Debug) Added Debug Strings Added Dependencies QuickFont -Added OffsetBox (Debug)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-15 18:47:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:976;a:8:{s:3:"sha";s:40:"94161000195176d5c4363631bb12e37ef8830ef7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Updated Map And InfoFile";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-15 16:16:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:977;a:8:{s:3:"sha";s:40:"3c7cde6236d22a42b0fdf1004948c06556223043";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:169:"Zones and Triggers +Added OffsetBox (Debug)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-15 18:47:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1572;a:8:{s:3:"sha";s:40:"94161000195176d5c4363631bb12e37ef8830ef7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Updated Map And InfoFile";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-15 16:16:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1573;a:8:{s:3:"sha";s:40:"3c7cde6236d22a42b0fdf1004948c06556223043";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:169:"Zones and Triggers Addded Triggersystem Added DebugView Added abstract Class for PipeSystem (unfinished) Added proper OnLoadEvent -Added More Math Things to Vec2d & Vec2i";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-15 16:15:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:978;a:8:{s:3:"sha";s:40:"bb5f9ea5a0183bc15228882cb00a89b94663fe16";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:136:"Additions And Fixes +Added More Math Things to Vec2d & Vec2i";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-15 16:15:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1574;a:8:{s:3:"sha";s:40:"bb5f9ea5a0183bc15228882cb00a89b94663fe16";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:136:"Additions And Fixes Added PipeNetwork to MapFiles Added own Vector and Rectangle Classes -Fixed Offset (with new Vector and Rect methods)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-15 13:12:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:979;a:8:{s:3:"sha";s:40:"01554fcf7e7045115b46abbc7c22e1c27ab830ab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:264:"Major Improvements +Fixed Offset (with new Vector and Rect methods)";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-15 13:12:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1575;a:8:{s:3:"sha";s:40:"01554fcf7e7045115b46abbc7c22e1c27ab830ab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:264:"Major Improvements New Map Format (Multi Layer for entites / blocks / trigger) OpenRasterFormat Read Class Added ICSharpCode Reference (for Unzipping) Fixed (hopefully) namespace confusion Removed Map 2&3 (needs convert to ORA Format) -Added Info.png for map colors";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-14 23:32:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:980;a:8:{s:3:"sha";s:40:"6892c42e11f73dfd158b95c8fa15cb661ed6fcb8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:203:"Fixes and Content +Added Info.png for map colors";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-14 23:32:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1576;a:8:{s:3:"sha";s:40:"6892c42e11f73dfd158b95c8fa15cb661ed6fcb8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:203:"Fixes and Content Fixed Hitbox of Piranha Plant Added Support for Multiple Air Block Can now run Map 1-3 Fixed Multiple Blocking-Issues Added Non-Gravity Coins -Remapped Lvl 1 with secret underground room";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-14 15:26:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:981;a:8:{s:3:"sha";s:40:"d51f18ef14ec1c0754be846de21d79c6786ea674";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Changed Map from debug version to real 01_01";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-13 16:27:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:982;a:8:{s:3:"sha";s:40:"e4de62c4889776aebf3c3a0cf4d80e9f258a3e31";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:158:"Added Things +Remapped Lvl 1 with secret underground room";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-14 15:26:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1577;a:8:{s:3:"sha";s:40:"d51f18ef14ec1c0754be846de21d79c6786ea674";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Changed Map from debug version to real 01_01";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-13 16:27:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1578;a:8:{s:3:"sha";s:40:"e4de62c4889776aebf3c3a0cf4d80e9f258a3e31";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:158:"Added Things Added Crazy Boxes Better Graphics Added Mob Class @@ -1024,32 +1110,33 @@ Better Collisions Added PushBack Physics Made Goombas Move Added Player -Added SuperCrazyCoinBox";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-13 15:12:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:983;a:8:{s:3:"sha";s:40:"df2860643ae5e72d40fcd1a2eaa8acb325671574";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:188:"Can now Parse Map 1 !!! +Added SuperCrazyCoinBox";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-13 15:12:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1579;a:8:{s:3:"sha";s:40:"df2860643ae5e72d40fcd1a2eaa8acb325671574";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:188:"Can now Parse Map 1 !!! Added All Maps Added Piranha Plant Added Block Managing Only collisioon on nearby blocks => PERFORMANCE Better Junping physics Friction and gliding -Improved Sprited";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-08 15:49:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:984;a:8:{s:3:"sha";s:40:"0212194c3cec6e4dbe830f0dd9f19d7d0170c153";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"More Stuff +Improved Sprited";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-08 15:49:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1580;a:8:{s:3:"sha";s:40:"0212194c3cec6e4dbe830f0dd9f19d7d0170c153";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:76:"More Stuff Improved Gravity Added Animations Added Coins -Collision Detection";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-07 21:16:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:985;a:8:{s:3:"sha";s:40:"1951256626af95e5f46a02143c94aec17e665e6f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:143:"Aded Basic Jump'n'Run Mechanic +Collision Detection";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-07 21:16:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1581;a:8:{s:3:"sha";s:40:"1951256626af95e5f46a02143c94aec17e665e6f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:143:"Aded Basic Jump'n'Run Mechanic Added Block Sprites Added Mario Sprites Added Jumping, Moving, Scrolling Added Texturing -Improved OpenGL Classes";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-05 19:33:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:986;a:8:{s:3:"sha";s:40:"935eebfb6e6911d7cfffa5eef13ed0159906630e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"First Commit: -Basic Stuff, mostly unfinished";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-04 16:19:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:987;a:8:{s:3:"sha";s:40:"d2e9883c831c979e5c8050a9b90b19e31fa7299a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:319;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-04 09:24:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:988;a:8:{s:3:"sha";s:40:"8d84152726df2bce052fca4950cddc973f9984cb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:154:"Improved Euler Blogpost: +Improved OpenGL Classes";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-05 19:33:04";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1582;a:8:{s:3:"sha";s:40:"935eebfb6e6911d7cfffa5eef13ed0159906630e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"First Commit: +Basic Stuff, mostly unfinished";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-04 16:19:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1583;a:8:{s:3:"sha";s:40:"d2e9883c831c979e5c8050a9b90b19e31fa7299a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial commit";s:10:"repository";a:13:{s:2:"id";i:12586955;s:4:"name";s:12:"SuperBitBros";s:9:"full_name";s:22:"Mikescher/SuperBitBros";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:41:"https://github.com/Mikescher/SuperBitBros";s:8:"language";s:2:"C#";s:8:"creation";r:506;s:4:"size";i:4200;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:59:"https://api.github.com/repos/Mikescher/SuperBitBros/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2013-09-04 09:24:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1584;a:8:{s:3:"sha";s:40:"315f37c826bf990d1e597a39f6dfa29f9514bca6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Updated BefunUtils/index.markdown";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 13:18:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1585;a:8:{s:3:"sha";s:40:"7500ee5b5a9c5235f38c72417915e7b2017909a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Updated BefunGen to >> BefunUtils";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-29 12:41:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1586;a:8:{s:3:"sha";s:40:"9ee572fa9f0a2ee82db6f44cf08a8f606fcba038";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:48:"Added Markdown description for BefunGen/BefunRep";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-08 10:31:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1587;a:8:{s:3:"sha";s:40:"5bd4ce2185d6ed2e36ba36bd7147dd74512a4962";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:56:"New Blogpost and made BlogPost/ControllerID non-required";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-11-06 09:12:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1588;a:8:{s:3:"sha";s:40:"371d8814367ffb42f4640e6b785d4ddbacfea8e6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"fixed a few js errors in BFJoustBot_script";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-15 09:33:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1589;a:8:{s:3:"sha";s:40:"63669229eb748532b51680bac7a6657422d30c4a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"updated to new version of extendedGitGraph";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-15 09:29:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1590;a:8:{s:3:"sha";s:40:"fcd839c12e78b70426b34829fd0c10c8d1a060de";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:141:"WHY THE FUCKERING STAGGERING SHIT DID I DELETE THIS FUCKING LINE ... WHAT THE FUCK +.. 1 hour fucking searching why nothing is fucking working";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-15 08:32:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1591;a:8:{s:3:"sha";s:40:"8d84152726df2bce052fca4950cddc973f9984cb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:154:"Improved Euler Blogpost: - Better links to problems - Show Abbreviated code message - Download link to github - - More prominent download button";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 12:13:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:989;a:8:{s:3:"sha";s:40:"a83b746f9dd7a64977df034666ee4722d64dc1a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Fixed Link in BefunGen desc";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 11:24:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:990;a:8:{s:3:"sha";s:40:"b2caa78e07125172257649845af5d73446c05a2b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added (CustomCode) Blogpost 'BFJoustBot'";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-29 20:10:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:991;a:8:{s:3:"sha";s:40:"0fec5bc9b6e7ce8db56c29475a8c499ae697dc19";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Fixed Filesystem Uppercase (for *-nix systems) [4]";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-29 15:05:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:992;a:8:{s:3:"sha";s:40:"1a165fbae503322478715d16c57454fd97812ab0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Fixed Filesystem Uppercase (for *-nix systems) [3]";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-29 15:04:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:993;a:8:{s:3:"sha";s:40:"ebefdf888a6674fcb023eea40db606a9d51d792e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Fixed Filesystem Uppercase (for *-nix systems) [2]";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-29 15:04:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:994;a:8:{s:3:"sha";s:40:"da7583392cddedc7094623f89b7593ee5690e614";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Fixed Filesystem Uppercase (for *-nix systems)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-29 15:00:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:995;a:8:{s:3:"sha";s:40:"58eb50f0ad427b3d747d290059490436f6b1473b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added custom Blogposts for ProblemEulerBefunge";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-28 00:37:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:996;a:8:{s:3:"sha";s:40:"144ded47507d53f088de9fec2e248e89f592605e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Removed EulerProblem data";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-28 00:37:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:997;a:8:{s:3:"sha";s:40:"1969ee87c051c9708d4e842555552e747582cca2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Data for Blogpost_Euler_2";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 20:37:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:998;a:8:{s:3:"sha";s:40:"ff5ecbc14485299c4cfefb18a2c22a64fd7fc756";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Visible & Enabled to BlogPost";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 15:37:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:999;a:8:{s:3:"sha";s:40:"5c940826de16e7d8d0de567bfede075f38b07f28";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Updated Project Euler Blogpost data";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 15:37:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1000;a:8:{s:3:"sha";s:40:"293b19872672b6a9b2353651ebd6a3cdeeed7df8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Fixed Disqus css + Added Admin-Linklist";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-06 13:50:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1001;a:8:{s:3:"sha";s:40:"9cffea9ec31fa49e518090a82f9b208c1aac551f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added Disqus Widget to [programs/view] and [blog/view]";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-06 13:39:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1002;a:8:{s:3:"sha";s:40:"6718ad0470f9a142335d1a69762b6c95a72c83c4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added big preview to programs/view images";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-03 17:25:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1003;a:8:{s:3:"sha";s:40:"bcc5f635ba99602f3645c86c4515b73199c603a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Description column in programs/view is now stretched";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-03 17:13:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1004;a:8:{s:3:"sha";s:40:"e8f30937834c1ce571595c72a378d8e7fd29629f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added English Disclaimer";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-19 15:17:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1005;a:8:{s:3:"sha";s:40:"ee0885242d5c2f0727bdd270846b5cfcaeba8ffe";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Changed Log Images for MS v4";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-19 15:11:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1006;a:8:{s:3:"sha";s:40:"056412637a1914ec39e0d46722746804507a3578";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Fixed Highscore API (MD5 test)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 20:38:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1007;a:8:{s:3:"sha";s:40:"0d6cd4463031508e1574fe9ea0c13f37bd51b048";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"More small fixes for prod";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 19:46:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1008;a:8:{s:3:"sha";s:40:"59d911e68272a3c522af4ebf99a5f66896bddbd9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Added new programs - fixed a few things ....";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 18:10:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1009;a:8:{s:3:"sha";s:40:"f8df6da103a4851d7f691b8aae9a08fc6c0cc711";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Fixed mysql_real_escape_char errors";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 14:37:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1010;a:8:{s:3:"sha";s:40:"57b12e9916d60f7c3d2e6bdf0e1c203f2e744a67";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"More changes because of case-sensitive filesystems -.-";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 13:43:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1011;a:8:{s:3:"sha";s:40:"5f0682cd177c748f99f3d36fea44cf3460779063";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"More changes because of case-sensitive filesystems -.-";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 13:43:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1012;a:8:{s:3:"sha";s:40:"2c5f34c071d9b2ba1d80e528b951e9cdb156d014";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"More changes because of case-sensitive filesystems -.-";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 13:42:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1013;a:8:{s:3:"sha";s:40:"2af3e05fe1a62039347d425966182bc98d5d8a8a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Searching";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 12:57:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1014;a:8:{s:3:"sha";s:40:"193c9f376d510b6801a8b93b0426ce236e8bad26";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"really, FUCK YOU";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-30 18:22:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1015;a:8:{s:3:"sha";s:40:"83e16a84168a92eb6ae52af1141a509ebd40574b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"fuck you git";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-30 18:22:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1016;a:8:{s:3:"sha";s:40:"c4692fee0ab78431e89cd4f6c31b99a7ce55d4e2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"Changed {{core.ignorecase}} to false + - More prominent download button";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 12:13:25";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1592;a:8:{s:3:"sha";s:40:"a83b746f9dd7a64977df034666ee4722d64dc1a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Fixed Link in BefunGen desc";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-12 11:24:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1593;a:8:{s:3:"sha";s:40:"b2caa78e07125172257649845af5d73446c05a2b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added (CustomCode) Blogpost 'BFJoustBot'";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-29 20:10:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1594;a:8:{s:3:"sha";s:40:"0fec5bc9b6e7ce8db56c29475a8c499ae697dc19";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Fixed Filesystem Uppercase (for *-nix systems) [4]";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-29 15:05:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1595;a:8:{s:3:"sha";s:40:"1a165fbae503322478715d16c57454fd97812ab0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Fixed Filesystem Uppercase (for *-nix systems) [3]";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-29 15:04:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1596;a:8:{s:3:"sha";s:40:"ebefdf888a6674fcb023eea40db606a9d51d792e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Fixed Filesystem Uppercase (for *-nix systems) [2]";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-29 15:04:12";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1597;a:8:{s:3:"sha";s:40:"da7583392cddedc7094623f89b7593ee5690e614";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Fixed Filesystem Uppercase (for *-nix systems)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-29 15:00:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1598;a:8:{s:3:"sha";s:40:"58eb50f0ad427b3d747d290059490436f6b1473b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:46:"Added custom Blogposts for ProblemEulerBefunge";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-28 00:37:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1599;a:8:{s:3:"sha";s:40:"144ded47507d53f088de9fec2e248e89f592605e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Removed EulerProblem data";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-28 00:37:30";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1600;a:8:{s:3:"sha";s:40:"1969ee87c051c9708d4e842555552e747582cca2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Added Data for Blogpost_Euler_2";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-17 20:37:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1601;a:8:{s:3:"sha";s:40:"ff5ecbc14485299c4cfefb18a2c22a64fd7fc756";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Added Visible & Enabled to BlogPost";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 15:37:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1602;a:8:{s:3:"sha";s:40:"5c940826de16e7d8d0de567bfede075f38b07f28";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Updated Project Euler Blogpost data";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-13 15:37:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1603;a:8:{s:3:"sha";s:40:"293b19872672b6a9b2353651ebd6a3cdeeed7df8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Fixed Disqus css + Added Admin-Linklist";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-06 13:50:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1604;a:8:{s:3:"sha";s:40:"9cffea9ec31fa49e518090a82f9b208c1aac551f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Added Disqus Widget to [programs/view] and [blog/view]";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-06 13:39:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1605;a:8:{s:3:"sha";s:40:"6718ad0470f9a142335d1a69762b6c95a72c83c4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added big preview to programs/view images";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-03 17:25:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1606;a:8:{s:3:"sha";s:40:"bcc5f635ba99602f3645c86c4515b73199c603a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Description column in programs/view is now stretched";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-09-03 17:13:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1607;a:8:{s:3:"sha";s:40:"e8f30937834c1ce571595c72a378d8e7fd29629f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added English Disclaimer";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-19 15:17:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1608;a:8:{s:3:"sha";s:40:"ee0885242d5c2f0727bdd270846b5cfcaeba8ffe";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Changed Log Images for MS v4";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-19 15:11:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1609;a:8:{s:3:"sha";s:40:"056412637a1914ec39e0d46722746804507a3578";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Fixed Highscore API (MD5 test)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 20:38:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1610;a:8:{s:3:"sha";s:40:"0d6cd4463031508e1574fe9ea0c13f37bd51b048";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"More small fixes for prod";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 19:46:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1611;a:8:{s:3:"sha";s:40:"59d911e68272a3c522af4ebf99a5f66896bddbd9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Added new programs - fixed a few things ....";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 18:10:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1612;a:8:{s:3:"sha";s:40:"f8df6da103a4851d7f691b8aae9a08fc6c0cc711";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Fixed mysql_real_escape_char errors";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 14:37:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1613;a:8:{s:3:"sha";s:40:"57b12e9916d60f7c3d2e6bdf0e1c203f2e744a67";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"More changes because of case-sensitive filesystems -.-";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 13:43:16";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1614;a:8:{s:3:"sha";s:40:"5f0682cd177c748f99f3d36fea44cf3460779063";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"More changes because of case-sensitive filesystems -.-";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 13:43:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1615;a:8:{s:3:"sha";s:40:"2c5f34c071d9b2ba1d80e528b951e9cdb156d014";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"More changes because of case-sensitive filesystems -.-";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 13:42:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1616;a:8:{s:3:"sha";s:40:"2af3e05fe1a62039347d425966182bc98d5d8a8a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Searching";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 12:57:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1617;a:8:{s:3:"sha";s:40:"193c9f376d510b6801a8b93b0426ce236e8bad26";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"really, FUCK YOU";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-30 18:22:54";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1618;a:8:{s:3:"sha";s:40:"83e16a84168a92eb6ae52af1141a509ebd40574b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"fuck you git";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-30 18:22:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1619;a:8:{s:3:"sha";s:40:"c4692fee0ab78431e89cd4f6c31b99a7ce55d4e2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:85:"Changed {{core.ignorecase}} to false -// git config --unset-all core.ignorecase false";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-30 18:10:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1017;a:8:{s:3:"sha";s:40:"a287b1b1a55b81fb42e3ef22a44c7d6a5e5b0941";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Fixed Footer "always bottom"";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-30 18:04:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1018;a:8:{s:3:"sha";s:40:"af53da14d272c78b3aea1c9c42883e93870c3b95";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"more changes for prod server";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-30 17:47:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1019;a:8:{s:3:"sha";s:40:"41196fb8da708361f585ac9723177e72c1d9cbea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Fixed Bugs when moving to prod";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-29 20:33:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1020;a:8:{s:3:"sha";s:40:"a489dafd3a822e8dc2f0f0cf2ba7932a773a7ecb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added new favicon";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-29 20:32:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1021;a:8:{s:3:"sha";s:40:"21a2b3c36fe5c99e5ce642b5148fdca01d23fe68";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Fixed merge errors";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-20 19:36:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1022;a:8:{s:3:"sha";s:40:"fc3dffad30037ac6e0a1d4dd90114a09c8a2b6b7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:104:"Merge remote-tracking branch 'www.mikescher.de/master' +// git config --unset-all core.ignorecase false";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-30 18:10:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1620;a:8:{s:3:"sha";s:40:"a287b1b1a55b81fb42e3ef22a44c7d6a5e5b0941";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Fixed Footer "always bottom"";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-30 18:04:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1621;a:8:{s:3:"sha";s:40:"af53da14d272c78b3aea1c9c42883e93870c3b95";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"more changes for prod server";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-30 17:47:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1622;a:8:{s:3:"sha";s:40:"41196fb8da708361f585ac9723177e72c1d9cbea";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Fixed Bugs when moving to prod";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-29 20:33:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1623;a:8:{s:3:"sha";s:40:"a489dafd3a822e8dc2f0f0cf2ba7932a773a7ecb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Added new favicon";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-29 20:32:36";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1624;a:8:{s:3:"sha";s:40:"21a2b3c36fe5c99e5ce642b5148fdca01d23fe68";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Fixed merge errors";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-20 19:36:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1625;a:8:{s:3:"sha";s:40:"fc3dffad30037ac6e0a1d4dd90114a09c8a2b6b7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:104:"Merge remote-tracking branch 'www.mikescher.de/master' Conflicts: - www/protected/views/msmain/admin.php";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-20 19:31:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1023;a:8:{s:3:"sha";s:40:"b5327bf993cb642e088b5a904851b4a78b06abc8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added custom Hitcounter component";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-20 19:29:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1024;a:8:{s:3:"sha";s:40:"f0027dd84e7dbc1056856da1548c8c8527562dbf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"[TEST] Added Hit counter";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-20 16:10:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1025;a:8:{s:3:"sha";s:40:"d7e056a4eee643640583ab5ee1d4210d7a386f51";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added Highscore to programs/view";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-20 14:37:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1026;a:8:{s:3:"sha";s:40:"e4a08ce32d67b7c3f39cf305e843b37265187ef7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Finished Highscore API";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-20 14:18:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1027;a:8:{s:3:"sha";s:40:"49b7368f44a283ccb77fb4298a0410d1a9052b86";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Download counter";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-19 17:35:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1028;a:8:{s:3:"sha";s:40:"10ac7f4ec1f64b530463daadb0f1705fca100a8b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"rem workspace.xml";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-19 17:34:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1029;a:8:{s:3:"sha";s:40:"09488796d8f07cf585832ddc50073e52cf96461f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Finished BlogPost";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-19 16:25:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1030;a:8:{s:3:"sha";s:40:"c2a829ac6adfd40c8799a7ea2cd90c516c8b24ef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Removed workspace.xml";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-19 16:25:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1031;a:8:{s:3:"sha";s:40:"0609b5d048d0bc6c811a2ecee797dcc2cea63e5e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"little things";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-16 17:10:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1032;a:8:{s:3:"sha";s:40:"03e0ae32147c194b88f48ae364a2430b4500e82d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"More BefunGen desc";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-16 17:10:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1033;a:8:{s:3:"sha";s:40:"14f3d5df3b6076b5dc3399a0b79087cb4ad96d33";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Improved Blogpost view";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-12 14:42:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1034;a:8:{s:3:"sha";s:40:"abcc540713896f594759e6199bded19d401cdec9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Blogposts";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-11 17:29:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1035;a:8:{s:3:"sha";s:40:"4ca578cfdeb71971e1d002efc7db287cb7e1e9b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Parsedown + ParsedownExtra + Prism";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-10 20:32:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1036;a:8:{s:3:"sha";s:40:"e17154d28c3834d26fb16978abc153d83402a889";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Worked on BefunGen Descriptions";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-08 15:46:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1037;a:8:{s:3:"sha";s:40:"6a797015cb1ff056e0b1313f23b9efbd995ef23e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Delete Descriptions when deleting program (+ more)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 13:45:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1038;a:8:{s:3:"sha";s:40:"427b5b1dc488c04bc8f29a6ae15fa488dea229ff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"Added proper Description Implementation and Layout for programs";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-05 19:15:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1039;a:8:{s:3:"sha";s:40:"eb5c4fd7e037c251ff00941adbb1311a94fcc03d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Description for BefunGen";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 15:33:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1040;a:8:{s:3:"sha";s:40:"ff99efc1f71eec550eca319892ade63a1649dd5d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Updated todo and desc";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-01 17:08:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1041;a:8:{s:3:"sha";s:40:"aa2ac1fea3022ab1f5633055e06e1d8b298a033c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Merge remote-tracking branch 'www.mikescher.de/master'";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-01 15:12:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1042;a:8:{s:3:"sha";s:40:"1f3aee675c07209fb408190ae14ed907668fd7dd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added new descriptions for progs";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-01 15:12:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1043;a:8:{s:3:"sha";s:40:"e2d523fe6c385b89a0e96180778a3220ae3ec919";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"Added TODO's";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-01 07:09:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1044;a:8:{s:3:"sha";s:40:"6e39aefd5235fdd4d852e90f1b02cf1576bc481d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:91:"Added various things + www/protected/views/msmain/admin.php";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-20 19:31:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1626;a:8:{s:3:"sha";s:40:"b5327bf993cb642e088b5a904851b4a78b06abc8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added custom Hitcounter component";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-20 19:29:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1627;a:8:{s:3:"sha";s:40:"f0027dd84e7dbc1056856da1548c8c8527562dbf";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"[TEST] Added Hit counter";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-20 16:10:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1628;a:8:{s:3:"sha";s:40:"d7e056a4eee643640583ab5ee1d4210d7a386f51";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added Highscore to programs/view";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-20 14:37:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1629;a:8:{s:3:"sha";s:40:"e4a08ce32d67b7c3f39cf305e843b37265187ef7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Finished Highscore API";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-20 14:18:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1630;a:8:{s:3:"sha";s:40:"49b7368f44a283ccb77fb4298a0410d1a9052b86";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Download counter";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-19 17:35:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1631;a:8:{s:3:"sha";s:40:"10ac7f4ec1f64b530463daadb0f1705fca100a8b";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"rem workspace.xml";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-19 17:34:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1632;a:8:{s:3:"sha";s:40:"09488796d8f07cf585832ddc50073e52cf96461f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Finished BlogPost";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-19 16:25:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1633;a:8:{s:3:"sha";s:40:"c2a829ac6adfd40c8799a7ea2cd90c516c8b24ef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Removed workspace.xml";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-19 16:25:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1634;a:8:{s:3:"sha";s:40:"0609b5d048d0bc6c811a2ecee797dcc2cea63e5e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"little things";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-16 17:10:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1635;a:8:{s:3:"sha";s:40:"03e0ae32147c194b88f48ae364a2430b4500e82d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"More BefunGen desc";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-16 17:10:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1636;a:8:{s:3:"sha";s:40:"14f3d5df3b6076b5dc3399a0b79087cb4ad96d33";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Improved Blogpost view";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-12 14:42:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1637;a:8:{s:3:"sha";s:40:"abcc540713896f594759e6199bded19d401cdec9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Blogposts";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-11 17:29:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1638;a:8:{s:3:"sha";s:40:"4ca578cfdeb71971e1d002efc7db287cb7e1e9b1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:40:"Added Parsedown + ParsedownExtra + Prism";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-10 20:32:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1639;a:8:{s:3:"sha";s:40:"e17154d28c3834d26fb16978abc153d83402a889";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Worked on BefunGen Descriptions";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-08 15:46:09";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1640;a:8:{s:3:"sha";s:40:"6a797015cb1ff056e0b1313f23b9efbd995ef23e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Delete Descriptions when deleting program (+ more)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-06 13:45:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1641;a:8:{s:3:"sha";s:40:"427b5b1dc488c04bc8f29a6ae15fa488dea229ff";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"Added proper Description Implementation and Layout for programs";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-05 19:15:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1642;a:8:{s:3:"sha";s:40:"eb5c4fd7e037c251ff00941adbb1311a94fcc03d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Description for BefunGen";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-03 15:33:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1643;a:8:{s:3:"sha";s:40:"ff99efc1f71eec550eca319892ade63a1649dd5d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Updated todo and desc";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-01 17:08:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1644;a:8:{s:3:"sha";s:40:"aa2ac1fea3022ab1f5633055e06e1d8b298a033c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:54:"Merge remote-tracking branch 'www.mikescher.de/master'";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-01 15:12:27";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1645;a:8:{s:3:"sha";s:40:"1f3aee675c07209fb408190ae14ed907668fd7dd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:32:"Added new descriptions for progs";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-01 15:12:02";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1646;a:8:{s:3:"sha";s:40:"e2d523fe6c385b89a0e96180778a3220ae3ec919";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"Added TODO's";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-07-01 07:09:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1647;a:8:{s:3:"sha";s:40:"6e39aefd5235fdd4d852e90f1b02cf1576bc481d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:91:"Added various things Translated Log + Short Prog Desc to Eng -Added Category filter to progs";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-30 20:51:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1045;a:8:{s:3:"sha";s:40:"ccf18ad491e2d1a79c88ccfa80c189946f1ab829";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"Add Favicon";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-18 14:18:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1046;a:8:{s:3:"sha";s:40:"2ebe66027219cd59aecfacc877d804e60605fe7f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added ProgOfTheDay to AdminArea (+Bugfix)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-16 18:36:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1047;a:8:{s:3:"sha";s:40:"e7c7881afb89b67fef1eb92db851d1ed0d04fa13";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added "update" API";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-16 17:48:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1048;a:8:{s:3:"sha";s:40:"a037c1c65d45a785b8c547e8a94ef9819ae3d516";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Added Managing and viewing of ProgramUpdates";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-16 17:00:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1049;a:8:{s:3:"sha";s:40:"006cf76ff9801708388942e2386e6407853e7fb8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added Code for Updates (Normalized Updates Table)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-12 13:37:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1050;a:8:{s:3:"sha";s:40:"d44c74e361d8fa3913b8e6b8b84d5373d8b6af27";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Adedd initial Layout for programs/view";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-12 12:36:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1051;a:8:{s:3:"sha";s:40:"91b79a9472b26cfc1068cde2f0938ac9d53604d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Added Favicon";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-10 18:04:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1052;a:8:{s:3:"sha";s:40:"5f839356bb085810fcd0c9df4e261f6177ddc59e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added Titles to pages";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-10 11:27:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1053;a:8:{s:3:"sha";s:40:"9a200136e7fc3a2978d686111e9fe9ea8b5cc7b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"Added TODO's";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-10 06:59:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1054;a:8:{s:3:"sha";s:40:"ebd369adcfbd384348ece2d85a6d843f45a1498c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added newest update from EGH";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-08 13:32:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1055;a:8:{s:3:"sha";s:40:"2f5c31b696d71449f2c6b59e20f3b9b215d847dd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Improved ExtendedGitGraph Design in /about";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-08 13:31:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1056;a:8:{s:3:"sha";s:40:"02aa4a2cf4eff970ddb0a055c6c47f0cc9ba9718";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Added (zu /about & /admin)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 17:53:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1057;a:8:{s:3:"sha";s:40:"a6c751a63602ad49531e47125f8ba181da393d2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Adminpage";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-06 17:31:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1058;a:8:{s:3:"sha";s:40:"4b9310d69cba83f395a7358b068ffbd60ee86223";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added CRUD for Logs";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-06 17:31:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1059;a:8:{s:3:"sha";s:40:"53211ea3590589a78d8753ddb98b1ab8c9ddcb2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"Added proper Log to msmain/index + added msmain/log + alot more";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-06 10:02:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1060;a:8:{s:3:"sha";s:40:"d478647418ff64d90d6700ab5fdcca97681f213e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Better MVC in programs/index (logic -> controller)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-06 07:47:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1061;a:8:{s:3:"sha";s:40:"610cd7c0a4ae9e5c7f4060fc3fe4760cde85f0c4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Markdown support";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-05 09:29:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1062;a:8:{s:3:"sha";s:40:"1e8fafebe459a819fc74fda9587593c570e963af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added Widget to msmain/index: "ExpandedLogHeader"";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-05 08:11:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1063;a:8:{s:3:"sha";s:40:"12b6a3359ee5c0aec3f90c46d96da0e7963afd4c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added FullProgPreview to Indexpage";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-04 16:06:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1064;a:8:{s:3:"sha";s:40:"fc2123252351eb053e829f379ea949c0346776ef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"Added initial Design for CollapsedHeader (index page)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-04 11:33:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1065;a:8:{s:3:"sha";s:40:"5b2a5bec36985a019b7c5b46759df28c1b1a0bfb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Renamed SiteController -> MSMainController";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-04 07:33:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1066;a:8:{s:3:"sha";s:40:"f9cf82ea9e2fc18b06f839c505cd3b41d5ce6e44";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:1:".";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-03 21:17:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1067;a:8:{s:3:"sha";s:40:"df2d966eb4706e3a8a494b42ec5e342811ceed9c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Added new Images for programs/index (+ other things)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-03 12:24:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1068;a:8:{s:3:"sha";s:40:"1b23097722effdb16ea2498719d710792328f7eb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Removed YiiLite";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-03 07:40:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1069;a:8:{s:3:"sha";s:40:"34a87ee6a02f37104dd3491a434e71b440171483";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Further improved thumbnailPreview CSS";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-03 07:01:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1070;a:8:{s:3:"sha";s:40:"94c006f371153b5a9e5ad485299c0a7a862ad8a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added Pagination to Programs/index";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-02 17:31:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1071;a:8:{s:3:"sha";s:40:"ad5226a1d166a97d19bf4c2c10bb0c671bd1835d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Adjustments to The ProgramsView";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 19:29:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1072;a:8:{s:3:"sha";s:40:"b5fd33e012197530e54320cb7fbad6c9484d1e5d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Worked on Programs/Index page";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 15:19:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1073;a:8:{s:3:"sha";s:40:"e8f7c5d093fcf99b226cd926dbd982c7d6a76ddb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Removed demos from repo";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 12:35:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1074;a:8:{s:3:"sha";s:40:"07c59e0b635d6bc627a43a380bb7d68ca409ae21";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Configured URLManager for use with Program-View-URLs";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 09:26:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1075;a:8:{s:3:"sha";s:40:"98fb0f1cec41af8942a4feca6682f895ddc509c1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Renamed "Programme" to "Programs"/"Program"";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 09:02:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1076;a:8:{s:3:"sha";s:40:"fa36f26f2e16d3e59e768c606bab17a419d5ebf0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added LogIn (pw in db)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 08:38:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1077;a:8:{s:3:"sha";s:40:"d74a13f6611a9d35a0799a84249acac214b9419d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added Code for DailyProg";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 07:35:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1078;a:8:{s:3:"sha";s:40:"52104782518dee949e24371231497ed5b91cdb53";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Added Code for Prog Display";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-23 09:22:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1079;a:8:{s:3:"sha";s:40:"9ab5db591175caebc930b3848f79dfd548f92e92";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Started fixing CSS";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-23 07:46:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1080;a:8:{s:3:"sha";s:40:"78940da7ccaa11138d1aa61b5e5c45f80704e0a8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added Logo Animation";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-20 17:23:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1081;a:8:{s:3:"sha";s:40:"116f64e692c7d9b6f5c5104713ca985e205043a7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Added Logo";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-19 15:50:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1082;a:8:{s:3:"sha";s:40:"ed31f9c6d61aba4763bded1a77b664322663159e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Bootstrap theme "Flatly"";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-19 13:27:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1083;a:8:{s:3:"sha";s:40:"02b5b0e70a5f4021428e1c9c93acd87c5671936f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Various things";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-19 08:35:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1084;a:8:{s:3:"sha";s:40:"35444de5d5817f84843b96be688d5938735ec4a2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"Added (slidely adjusted) auto generated CRUD for db::Programme";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-19 08:16:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1085;a:8:{s:3:"sha";s:40:"dec918c268990b256f5936484467a4e1d28629fe";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"reformatting config";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-14 21:55:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1086;a:8:{s:3:"sha";s:40:"3bba1068fa1480caad0ddef3580323692fca18e6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"renamed readme ... again";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-14 13:49:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1087;a:8:{s:3:"sha";s:40:"812220ed8ebec4a99d41ae92e2b6b4b770d0b133";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Contactform on Aboutpage";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-14 12:14:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1088;a:8:{s:3:"sha";s:40:"a2b684eee121028ea945cd67b169df988229de77";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added About page";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-14 09:15:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1089;a:8:{s:3:"sha";s:40:"b8d8e888d2b6fccdcbb1290fb204353e971565b6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Started working on Navbar";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 16:25:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1090;a:8:{s:3:"sha";s:40:"1feb434a9ab5c8d46cf7489c42fbceb2d9e9a249";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added demo: default";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 16:25:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1091;a:8:{s:3:"sha";s:40:"374648bce32f2ae9e36bccac0a0d925cf6b77c1a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Configures MOD REWRITE + URLMANAGER";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 12:58:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1092;a:8:{s:3:"sha";s:40:"5dfb77ec5ef00c4f3dac3f7fdd37262059e3954c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added PHPStorm IDE";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 12:30:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1093;a:8:{s:3:"sha";s:40:"826c4bdfb3e33fcbcf4647d517c8161e2f66e1a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Added Yiistrap";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 12:06:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1094;a:8:{s:3:"sha";s:40:"5e21ecb401d86fa242732a0c6208881ceede5f89";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added dev/prod config";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 11:16:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1095;a:8:{s:3:"sha";s:40:"99d29b432b25bdcf1d293ed8df8e822ca4682ff9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added new (clean) yii boilerplate";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 10:40:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1096;a:8:{s:3:"sha";s:40:"1d6d975a16d2a45ebd68c1ad4ec14ef1ed62d682";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Removed ... EVERYTHING";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 10:38:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1097;a:8:{s:3:"sha";s:40:"68c1e325f25c3554e791af43512e7edb56c5e19e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Failed at adding gii";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 09:47:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1098;a:8:{s:3:"sha";s:40:"2f2ca4d5e43d0ab031821f5b6fcf734c316b64ef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Renamed (=> Removed) Readme";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-12 10:14:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1099;a:8:{s:3:"sha";s:40:"ffdc17efd59c800c2c27d54cbbbd84f1b3b616c4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added DB Access + Error page";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-12 08:11:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1100;a:8:{s:3:"sha";s:40:"3efba81ebc94b8db59514b4a5685a8da35d3e3fc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added example styles";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 11:26:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1101;a:8:{s:3:"sha";s:40:"f044f5ef9a412ac0ce1b17ecd8af2ed337225262";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"A little bit of testing";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 10:31:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1102;a:8:{s:3:"sha";s:40:"0db46dd09742f96782fc41bf193dc0c492355fa9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial Commit";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:336;s:4:"size";i:8160;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 10:16:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1103;a:8:{s:3:"sha";s:40:"6d04f76c1445d0f244363bccf82e141165e475ae";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Fixed TbTabs for more than one dropdown Tab";s:10:"repository";a:13:{s:2:"id";i:22617301;s:4:"name";s:8:"yiistrap";s:9:"full_name";s:18:"Mikescher/yiistrap";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/yiistrap";s:8:"language";s:3:"PHP";s:8:"creation";r:353;s:4:"size";i:4563;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/yiistrap/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 19:40:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1104;a:8:{s:3:"sha";s:40:"cee062965f7c6dfbb7b512699f7ec6dde946b88a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added 2 more level";s:10:"repository";a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";r:370;s:4:"size";i:21280;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 13:38:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1105;a:8:{s:3:"sha";s:40:"1ec945b64464adf0a78b1901c54d364afd96ef66";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"Added Konami";s:10:"repository";a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";r:370;s:4:"size";i:21280;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 20:17:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1106;a:8:{s:3:"sha";s:40:"babef33a1222504591149f7be3296e233e3550a1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"Fixed lvl 1";s:10:"repository";a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";r:370;s:4:"size";i:21280;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 18:36:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1107;a:8:{s:3:"sha";s:40:"9bc0d11b67b4f5809e03a271f7a201f5e9d6e8b2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Marked spawn tile in debug tileset";s:10:"repository";a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";r:370;s:4:"size";i:21280;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 17:59:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1108;a:8:{s:3:"sha";s:40:"346a8e34feb61f131251bf775d3839785c11c7ca";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added background hell";s:10:"repository";a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";r:370;s:4:"size";i:21280;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 17:34:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1109;a:8:{s:3:"sha";s:40:"1a98a05eb060b1ba2add6bcefb1d7909d2066fab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"added gitkeeps to empty dirs";s:10:"repository";a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";r:370;s:4:"size";i:21280;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 14:37:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1110;a:8:{s:3:"sha";s:40:"277811b0bdd841292fc8fe4dd02ea5c68059e068";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"[INITIAL] Commiting current status";s:10:"repository";a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";r:370;s:4:"size";i:21280;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 14:30:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1111;a:8:{s:3:"sha";s:40:"a2d19985e71c21d07cbb18d2e86c936412d5231d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"added [R]eset";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 19:36:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1112;a:8:{s:3:"sha";s:40:"453d50f1c053ea8d34e8204785a7c616899948e3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"More MapPieces & DebugInfos";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 19:21:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1113;a:8:{s:3:"sha";s:40:"809192ba959cdff3185f246bee263e723e3c3002";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Merge remote-tracking branch 'origin/master'";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 16:23:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1114;a:8:{s:3:"sha";s:40:"0d66c2dea1a228725451145c546b87e7b614b14c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Fixed things 4 android";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 16:23:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1115;a:8:{s:3:"sha";s:40:"38e018febf8906620c677ca4a60f6f3fd4f8eb9e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Fixed last commit";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 13:47:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1116;a:8:{s:3:"sha";s:40:"1d13c5b754eace34f0d4bc668d5d91621f15a5e2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Merge remote-tracking branch 'origin/master'";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 13:36:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1117;a:8:{s:3:"sha";s:40:"82be5b223ec7ae8a3ea3efddbb52243c02733032";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:6:"things";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 13:36:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1118;a:8:{s:3:"sha";s:40:"30f911bf4f4d7713fea4512df65e5ea68da70331";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Remove FloorTiles when OOB";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 11:51:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1119;a:8:{s:3:"sha";s:40:"95572ac86f2ed6b713cd8b7d5f2b307522d12d16";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"More Map Pieces";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 10:40:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1120;a:8:{s:3:"sha";s:40:"f8ca4a84518d442434e306e3c8f3503249e3c646";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"More maps & physics";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 10:19:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1121;a:8:{s:3:"sha";s:40:"cb8cd2190f2099b41b222e39e78d398c9a62c998";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Tiled maps etc";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 00:32:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1122;a:8:{s:3:"sha";s:40:"520973d010e6baafa61454ed45e018d85748fd48";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Reimplemented Colors + cam";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-10 22:24:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1123;a:8:{s:3:"sha";s:40:"faf6e215008548deee3a2dbc495354056abee8fc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"A little bit FPS independency";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-10 18:59:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1124;a:8:{s:3:"sha";s:40:"59b679756aff97af19b5824f15f335e331fd7627";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added Collision Detection";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-10 17:41:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1125;a:8:{s:3:"sha";s:40:"d6f8f324ad358f8c9b37c7c3b17f3126536a6d58";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Custom Entity system";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-10 15:19:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1126;a:8:{s:3:"sha";s:40:"553fdb261ee5000b526b426d7a9cb9da8765f3d0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Scene2D actors + colors + jumping";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-09 23:59:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1127;a:8:{s:3:"sha";s:40:"bc201739b817af770ed04215234723a5f60b7249";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Simple Screens and so";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-09 22:42:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1128;a:8:{s:3:"sha";s:40:"76cc7e8e476c1dd759f1d9b7f84423089a6fdfa1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added GameScreen";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-09 22:24:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1129;a:8:{s:3:"sha";s:40:"9fe821bf53dd7dc080e15da8099c928a23c68696";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"changed .gitignore";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=2";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:438;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-09 20:48:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}}} \ No newline at end of file +Added Category filter to progs";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-30 20:51:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1648;a:8:{s:3:"sha";s:40:"ccf18ad491e2d1a79c88ccfa80c189946f1ab829";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"Add Favicon";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-18 14:18:31";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1649;a:8:{s:3:"sha";s:40:"2ebe66027219cd59aecfacc877d804e60605fe7f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:41:"Added ProgOfTheDay to AdminArea (+Bugfix)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-16 18:36:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1650;a:8:{s:3:"sha";s:40:"e7c7881afb89b67fef1eb92db851d1ed0d04fa13";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added "update" API";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-16 17:48:59";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1651;a:8:{s:3:"sha";s:40:"a037c1c65d45a785b8c547e8a94ef9819ae3d516";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Added Managing and viewing of ProgramUpdates";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-16 17:00:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1652;a:8:{s:3:"sha";s:40:"006cf76ff9801708388942e2386e6407853e7fb8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added Code for Updates (Normalized Updates Table)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-12 13:37:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1653;a:8:{s:3:"sha";s:40:"d44c74e361d8fa3913b8e6b8b84d5373d8b6af27";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:38:"Adedd initial Layout for programs/view";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-12 12:36:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1654;a:8:{s:3:"sha";s:40:"91b79a9472b26cfc1068cde2f0938ac9d53604d1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"Added Favicon";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-10 18:04:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1655;a:8:{s:3:"sha";s:40:"5f839356bb085810fcd0c9df4e261f6177ddc59e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added Titles to pages";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-10 11:27:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1656;a:8:{s:3:"sha";s:40:"9a200136e7fc3a2978d686111e9fe9ea8b5cc7b9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"Added TODO's";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-10 06:59:35";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1657;a:8:{s:3:"sha";s:40:"ebd369adcfbd384348ece2d85a6d843f45a1498c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added newest update from EGH";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-08 13:32:00";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1658;a:8:{s:3:"sha";s:40:"2f5c31b696d71449f2c6b59e20f3b9b215d847dd";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Improved ExtendedGitGraph Design in /about";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-08 13:31:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1659;a:8:{s:3:"sha";s:40:"02aa4a2cf4eff970ddb0a055c6c47f0cc9ba9718";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:45:"Added (zu /about & /admin)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-07 17:53:13";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1660;a:8:{s:3:"sha";s:40:"a6c751a63602ad49531e47125f8ba181da393d2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Added Adminpage";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-06 17:31:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1661;a:8:{s:3:"sha";s:40:"4b9310d69cba83f395a7358b068ffbd60ee86223";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added CRUD for Logs";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-06 17:31:05";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1662;a:8:{s:3:"sha";s:40:"53211ea3590589a78d8753ddb98b1ab8c9ddcb2f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:63:"Added proper Log to msmain/index + added msmain/log + alot more";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-06 10:02:56";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1663;a:8:{s:3:"sha";s:40:"d478647418ff64d90d6700ab5fdcca97681f213e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:50:"Better MVC in programs/index (logic -> controller)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-06 07:47:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1664;a:8:{s:3:"sha";s:40:"610cd7c0a4ae9e5c7f4060fc3fe4760cde85f0c4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added Markdown support";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-05 09:29:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1665;a:8:{s:3:"sha";s:40:"1e8fafebe459a819fc74fda9587593c570e963af";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:49:"Added Widget to msmain/index: "ExpandedLogHeader"";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-05 08:11:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1666;a:8:{s:3:"sha";s:40:"12b6a3359ee5c0aec3f90c46d96da0e7963afd4c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added FullProgPreview to Indexpage";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-04 16:06:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1667;a:8:{s:3:"sha";s:40:"fc2123252351eb053e829f379ea949c0346776ef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:53:"Added initial Design for CollapsedHeader (index page)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-04 11:33:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1668;a:8:{s:3:"sha";s:40:"5b2a5bec36985a019b7c5b46759df28c1b1a0bfb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:42:"Renamed SiteController -> MSMainController";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-04 07:33:24";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1669;a:8:{s:3:"sha";s:40:"f9cf82ea9e2fc18b06f839c505cd3b41d5ce6e44";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:1:".";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-03 21:17:48";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1670;a:8:{s:3:"sha";s:40:"df2d966eb4706e3a8a494b42ec5e342811ceed9c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Added new Images for programs/index (+ other things)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-03 12:24:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1671;a:8:{s:3:"sha";s:40:"1b23097722effdb16ea2498719d710792328f7eb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"Removed YiiLite";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-03 07:40:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1672;a:8:{s:3:"sha";s:40:"34a87ee6a02f37104dd3491a434e71b440171483";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:37:"Further improved thumbnailPreview CSS";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-03 07:01:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1673;a:8:{s:3:"sha";s:40:"94c006f371153b5a9e5ad485299c0a7a862ad8a5";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Added Pagination to Programs/index";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-06-02 17:31:14";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1674;a:8:{s:3:"sha";s:40:"ad5226a1d166a97d19bf4c2c10bb0c671bd1835d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:31:"Adjustments to The ProgramsView";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 19:29:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1675;a:8:{s:3:"sha";s:40:"b5fd33e012197530e54320cb7fbad6c9484d1e5d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"Worked on Programs/Index page";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 15:19:57";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1676;a:8:{s:3:"sha";s:40:"e8f7c5d093fcf99b226cd926dbd982c7d6a76ddb";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"Removed demos from repo";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 12:35:08";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1677;a:8:{s:3:"sha";s:40:"07c59e0b635d6bc627a43a380bb7d68ca409ae21";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:52:"Configured URLManager for use with Program-View-URLs";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 09:26:17";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1678;a:8:{s:3:"sha";s:40:"98fb0f1cec41af8942a4feca6682f895ddc509c1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Renamed "Programme" to "Programs"/"Program"";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 09:02:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1679;a:8:{s:3:"sha";s:40:"fa36f26f2e16d3e59e768c606bab17a419d5ebf0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Added LogIn (pw in db)";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 08:38:11";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1680;a:8:{s:3:"sha";s:40:"d74a13f6611a9d35a0799a84249acac214b9419d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Added Code for DailyProg";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-28 07:35:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1681;a:8:{s:3:"sha";s:40:"52104782518dee949e24371231497ed5b91cdb53";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Added Code for Prog Display";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-23 09:22:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1682;a:8:{s:3:"sha";s:40:"9ab5db591175caebc930b3848f79dfd548f92e92";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Started fixing CSS";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-23 07:46:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1683;a:8:{s:3:"sha";s:40:"78940da7ccaa11138d1aa61b5e5c45f80704e0a8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added Logo Animation";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-20 17:23:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1684;a:8:{s:3:"sha";s:40:"116f64e692c7d9b6f5c5104713ca985e205043a7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:10:"Added Logo";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-19 15:50:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1685;a:8:{s:3:"sha";s:40:"ed31f9c6d61aba4763bded1a77b664322663159e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Bootstrap theme "Flatly"";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-19 13:27:22";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1686;a:8:{s:3:"sha";s:40:"02b5b0e70a5f4021428e1c9c93acd87c5671936f";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Various things";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-19 08:35:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1687;a:8:{s:3:"sha";s:40:"35444de5d5817f84843b96be688d5938735ec4a2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:62:"Added (slidely adjusted) auto generated CRUD for db::Programme";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-19 08:16:43";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1688;a:8:{s:3:"sha";s:40:"dec918c268990b256f5936484467a4e1d28629fe";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"reformatting config";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-14 21:55:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1689;a:8:{s:3:"sha";s:40:"3bba1068fa1480caad0ddef3580323692fca18e6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"renamed readme ... again";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-14 13:49:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1690;a:8:{s:3:"sha";s:40:"812220ed8ebec4a99d41ae92e2b6b4b770d0b133";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:30:"Added Contactform on Aboutpage";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-14 12:14:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1691;a:8:{s:3:"sha";s:40:"a2b684eee121028ea945cd67b169df988229de77";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added About page";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-14 09:15:32";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1692;a:8:{s:3:"sha";s:40:"b8d8e888d2b6fccdcbb1290fb204353e971565b6";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Started working on Navbar";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 16:25:37";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1693;a:8:{s:3:"sha";s:40:"1feb434a9ab5c8d46cf7489c42fbceb2d9e9a249";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added demo: default";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 16:25:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1694;a:8:{s:3:"sha";s:40:"374648bce32f2ae9e36bccac0a0d925cf6b77c1a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:35:"Configures MOD REWRITE + URLMANAGER";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 12:58:34";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1695;a:8:{s:3:"sha";s:40:"5dfb77ec5ef00c4f3dac3f7fdd37262059e3954c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added PHPStorm IDE";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 12:30:23";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1696;a:8:{s:3:"sha";s:40:"826c4bdfb3e33fcbcf4647d517c8161e2f66e1a0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Added Yiistrap";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 12:06:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1697;a:8:{s:3:"sha";s:40:"5e21ecb401d86fa242732a0c6208881ceede5f89";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added dev/prod config";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 11:16:39";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1698;a:8:{s:3:"sha";s:40:"99d29b432b25bdcf1d293ed8df8e822ca4682ff9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added new (clean) yii boilerplate";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 10:40:42";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1699;a:8:{s:3:"sha";s:40:"1d6d975a16d2a45ebd68c1ad4ec14ef1ed62d682";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Removed ... EVERYTHING";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 10:38:38";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1700;a:8:{s:3:"sha";s:40:"68c1e325f25c3554e791af43512e7edb56c5e19e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Failed at adding gii";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-13 09:47:46";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1701;a:8:{s:3:"sha";s:40:"2f2ca4d5e43d0ab031821f5b6fcf734c316b64ef";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"Renamed (=> Removed) Readme";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-12 10:14:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1702;a:8:{s:3:"sha";s:40:"ffdc17efd59c800c2c27d54cbbbd84f1b3b616c4";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"Added DB Access + Error page";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-12 08:11:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1703;a:8:{s:3:"sha";s:40:"3efba81ebc94b8db59514b4a5685a8da35d3e3fc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Added example styles";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 11:26:44";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1704;a:8:{s:3:"sha";s:40:"f044f5ef9a412ac0ce1b17ecd8af2ed337225262";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:23:"A little bit of testing";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 10:31:29";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1705;a:8:{s:3:"sha";s:40:"0db46dd09742f96782fc41bf193dc0c492355fa9";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Initial Commit";s:10:"repository";a:13:{s:2:"id";i:20250588;s:4:"name";s:16:"www.mikescher.de";s:9:"full_name";s:26:"Mikescher/www.mikescher.de";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Mikescher/www.mikescher.de";s:8:"language";s:3:"PHP";s:8:"creation";r:523;s:4:"size";i:8356;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Mikescher/www.mikescher.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-05-06 10:16:20";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1706;a:8:{s:3:"sha";s:40:"6d04f76c1445d0f244363bccf82e141165e475ae";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:43:"Fixed TbTabs for more than one dropdown Tab";s:10:"repository";a:13:{s:2:"id";i:22617301;s:4:"name";s:8:"yiistrap";s:9:"full_name";s:18:"Mikescher/yiistrap";s:5:"owner";s:9:"Mikescher";s:8:"owner_id";i:175731;s:16:"owner_avatar-url";s:50:"https://avatars.githubusercontent.com/u/175731?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:37:"https://github.com/Mikescher/yiistrap";s:8:"language";s:3:"PHP";s:8:"creation";r:540;s:4:"size";i:4563;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:55:"https://api.github.com/repos/Mikescher/yiistrap/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-04 19:40:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1707;a:8:{s:3:"sha";s:40:"cee062965f7c6dfbb7b512699f7ec6dde946b88a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"Added 2 more level";s:10:"repository";a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";r:557;s:4:"size";i:27020;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-14 13:38:47";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1708;a:8:{s:3:"sha";s:40:"1ec945b64464adf0a78b1901c54d364afd96ef66";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:12:"Added Konami";s:10:"repository";a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";r:557;s:4:"size";i:27020;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 20:17:53";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1709;a:8:{s:3:"sha";s:40:"babef33a1222504591149f7be3296e233e3550a1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:11:"Fixed lvl 1";s:10:"repository";a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";r:557;s:4:"size";i:27020;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 18:36:10";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1710;a:8:{s:3:"sha";s:40:"9bc0d11b67b4f5809e03a271f7a201f5e9d6e8b2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"Marked spawn tile in debug tileset";s:10:"repository";a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";r:557;s:4:"size";i:27020;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 17:59:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1711;a:8:{s:3:"sha";s:40:"346a8e34feb61f131251bf775d3839785c11c7ca";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Added background hell";s:10:"repository";a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";r:557;s:4:"size";i:27020;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 17:34:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1712;a:8:{s:3:"sha";s:40:"1a98a05eb060b1ba2add6bcefb1d7909d2066fab";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:28:"added gitkeeps to empty dirs";s:10:"repository";a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";r:557;s:4:"size";i:27020;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 14:37:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1713;a:8:{s:3:"sha";s:40:"277811b0bdd841292fc8fe4dd02ea5c68059e068";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:34:"[INITIAL] Commiting current status";s:10:"repository";a:13:{s:2:"id";i:24758789;s:4:"name";s:10:"JumpingJoe";s:9:"full_name";s:26:"Sam-Development/JumpingJoe";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/JumpingJoe";s:8:"language";s:4:"Java";s:8:"creation";r:557;s:4:"size";i:27020;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/JumpingJoe/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-10-03 14:30:49";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1714;a:8:{s:3:"sha";s:40:"a27015822596b8726965950b197eb2cec27ecb3a";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:33:"Added (and used) GentLix Template";s:10:"repository";a:13:{s:2:"id";i:27968883;s:4:"name";s:10:"sam-dev.de";s:9:"full_name";s:26:"Sam-Development/sam-dev.de";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/sam-dev.de";s:8:"language";s:3:"PHP";s:8:"creation";r:574;s:4:"size";i:19012;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/sam-dev.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-13 17:56:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1715;a:8:{s:3:"sha";s:40:"9a25c51d07d03152e30a221d76b72532af4c12c7";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:24:"Executes subrion.install";s:10:"repository";a:13:{s:2:"id";i:27968883;s:4:"name";s:10:"sam-dev.de";s:9:"full_name";s:26:"Sam-Development/sam-dev.de";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/sam-dev.de";s:8:"language";s:3:"PHP";s:8:"creation";r:574;s:4:"size";i:19012;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/sam-dev.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-13 16:49:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1716;a:8:{s:3:"sha";s:40:"12e10780ee46431c22da87b222798d34828ffdd8";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"Added CMS (Subrion)";s:10:"repository";a:13:{s:2:"id";i:27968883;s:4:"name";s:10:"sam-dev.de";s:9:"full_name";s:26:"Sam-Development/sam-dev.de";s:5:"owner";s:15:"Sam-Development";s:8:"owner_id";i:9008527;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/9008527?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:45:"https://github.com/Sam-Development/sam-dev.de";s:8:"language";s:3:"PHP";s:8:"creation";r:574;s:4:"size";i:19012;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:63:"https://api.github.com/repos/Sam-Development/sam-dev.de/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-12-13 16:32:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1717;a:8:{s:3:"sha";s:40:"a2d19985e71c21d07cbb18d2e86c936412d5231d";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:13:"added [R]eset";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 19:36:01";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1718;a:8:{s:3:"sha";s:40:"453d50f1c053ea8d34e8204785a7c616899948e3";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:27:"More MapPieces & DebugInfos";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 19:21:52";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1719;a:8:{s:3:"sha";s:40:"809192ba959cdff3185f246bee263e723e3c3002";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Merge remote-tracking branch 'origin/master'";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 16:23:15";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1720;a:8:{s:3:"sha";s:40:"0d66c2dea1a228725451145c546b87e7b614b14c";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:22:"Fixed things 4 android";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 16:23:07";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1721;a:8:{s:3:"sha";s:40:"38e018febf8906620c677ca4a60f6f3fd4f8eb9e";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:17:"Fixed last commit";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 13:47:58";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1722;a:8:{s:3:"sha";s:40:"1d13c5b754eace34f0d4bc668d5d91621f15a5e2";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:44:"Merge remote-tracking branch 'origin/master'";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 13:36:33";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1723;a:8:{s:3:"sha";s:40:"82be5b223ec7ae8a3ea3efddbb52243c02733032";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:6:"things";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 13:36:03";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1724;a:8:{s:3:"sha";s:40:"30f911bf4f4d7713fea4512df65e5ea68da70331";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Remove FloorTiles when OOB";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 11:51:41";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1725;a:8:{s:3:"sha";s:40:"95572ac86f2ed6b713cd8b7d5f2b307522d12d16";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:15:"More Map Pieces";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 10:40:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1726;a:8:{s:3:"sha";s:40:"f8ca4a84518d442434e306e3c8f3503249e3c646";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:19:"More maps & physics";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 10:19:51";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1727;a:8:{s:3:"sha";s:40:"cb8cd2190f2099b41b222e39e78d398c9a62c998";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:14:"Tiled maps etc";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-11 00:32:28";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1728;a:8:{s:3:"sha";s:40:"520973d010e6baafa61454ed45e018d85748fd48";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:26:"Reimplemented Colors + cam";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-10 22:24:55";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1729;a:8:{s:3:"sha";s:40:"faf6e215008548deee3a2dbc495354056abee8fc";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:29:"A little bit FPS independency";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-10 18:59:50";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1730;a:8:{s:3:"sha";s:40:"59b679756aff97af19b5824f15f335e331fd7627";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:25:"Added Collision Detection";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-10 17:41:06";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1731;a:8:{s:3:"sha";s:40:"d6f8f324ad358f8c9b37c7c3b17f3126536a6d58";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:20:"Custom Entity system";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-10 15:19:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1732;a:8:{s:3:"sha";s:40:"553fdb261ee5000b526b426d7a9cb9da8765f3d0";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:39:"Added Scene2D actors + colors + jumping";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-09 23:59:18";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1733;a:8:{s:3:"sha";s:40:"bc201739b817af770ed04215234723a5f60b7249";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:21:"Simple Screens and so";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-09 22:42:19";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1734;a:8:{s:3:"sha";s:40:"76cc7e8e476c1dd759f1d9b7f84423089a6fdfa1";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:16:"Added GameScreen";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-09 22:24:45";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}i:1735;a:8:{s:3:"sha";s:40:"9fe821bf53dd7dc080e15da8099c928a23c68696";s:11:"author_name";s:14:"Mike Schwörer";s:11:"author_mail";s:21:"mailport@mikescher.de";s:12:"author_login";s:9:"Mikescher";s:9:"author_id";i:175731;s:7:"message";s:18:"changed .gitignore";s:10:"repository";a:13:{s:2:"id";i:22794555;s:4:"name";s:11:"ColorRunner";s:9:"full_name";s:20:"Anastron/ColorRunner";s:5:"owner";s:8:"Anastron";s:8:"owner_id";i:4252830;s:16:"owner_avatar-url";s:51:"https://avatars.githubusercontent.com/u/4252830?v=3";s:17:"owner_gravatar-id";s:0:"";s:3:"url";s:39:"https://github.com/Anastron/ColorRunner";s:8:"language";s:4:"Java";s:8:"creation";r:642;s:4:"size";i:892;s:14:"default_branch";s:6:"master";s:11:"commits_url";s:57:"https://api.github.com/repos/Anastron/ColorRunner/commits";}s:4:"date";O:8:"DateTime":3:{s:4:"date";s:19:"2014-08-09 20:48:40";s:13:"timezone_type";i:2;s:8:"timezone";s:1:"Z";}}}} \ No newline at end of file