mrmcd intro/outro
This commit is contained in:
		
							parent
							
								
									8a5913d655
								
							
						
					
					
						commit
						4c90654e39
					
				
					 8 changed files with 3403 additions and 0 deletions
				
			
		
							
								
								
									
										113
									
								
								mrmcd2014/__init__.py
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										113
									
								
								mrmcd2014/__init__.py
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,113 @@ | ||||||
|  | #!/usr/bin/python3 | ||||||
|  | 
 | ||||||
|  | import svg.path, random | ||||||
|  | from lxml import etree | ||||||
|  | from renderlib import * | ||||||
|  | 
 | ||||||
|  | # URL to Schedule-XML | ||||||
|  | scheduleUrl = 'http://fahrplan.mrmcd.net/schedule.xml' | ||||||
|  | 
 | ||||||
|  | def introFrames(parameters): | ||||||
|  | 	title = parameters['$title'] | ||||||
|  | 	rnd = random.Random() | ||||||
|  | 	rnd.seed(title) | ||||||
|  | 	frames = 0 | ||||||
|  | 
 | ||||||
|  | 	yield ( | ||||||
|  | 		('namesbar', 'style', 'opacity', 0), | ||||||
|  | 		('title', 'text', None, ''), | ||||||
|  | 	) | ||||||
|  | 
 | ||||||
|  | 	for char in range(0, len(title) + 1): | ||||||
|  | 		for holdframe in range(0, rnd.randint(2, 10)): | ||||||
|  | 			frames += 1 | ||||||
|  | 			yield ( | ||||||
|  | 				('title', 'text', None, title[:char]), | ||||||
|  | 			) | ||||||
|  | 
 | ||||||
|  | 	frames = 4*fps | ||||||
|  | 	for i in range(0, frames): | ||||||
|  | 		yield ( | ||||||
|  | 			('namesbar', 'style', 'opacity', 1), | ||||||
|  | 		) | ||||||
|  | 
 | ||||||
|  | def outroFrames(parameters): | ||||||
|  | 
 | ||||||
|  | 	frames = int(0.5*fps) | ||||||
|  | 	for i in range(0, frames): | ||||||
|  | 		yield ( | ||||||
|  | 			('license', 'style', 'opacity', 0), | ||||||
|  | 			('bar1', 'style', 'opacity', 0), | ||||||
|  | 			('bar2', 'style', 'opacity', 0), | ||||||
|  | 			('bar3', 'style', 'opacity', 0), | ||||||
|  | 		) | ||||||
|  | 
 | ||||||
|  | 	frames = int(0.5*fps)+1 | ||||||
|  | 	for i in range(0, frames): | ||||||
|  | 		yield ( | ||||||
|  | 			('license', 'style', 'opacity', 1), | ||||||
|  | 			('bar1', 'style', 'opacity', 0), | ||||||
|  | 			('bar2', 'style', 'opacity', 0), | ||||||
|  | 			('bar3', 'style', 'opacity', 0), | ||||||
|  | 		) | ||||||
|  | 
 | ||||||
|  | 	frames = int(0.5*fps) | ||||||
|  | 	for i in range(0, frames): | ||||||
|  | 		yield ( | ||||||
|  | 			('license', 'style', 'opacity', 1), | ||||||
|  | 			('bar1', 'style', 'opacity', 1), | ||||||
|  | 			('bar2', 'style', 'opacity', 0), | ||||||
|  | 			('bar3', 'style', 'opacity', 0), | ||||||
|  | 		) | ||||||
|  | 
 | ||||||
|  | 	frames = int(0.5*fps)+1 | ||||||
|  | 	for i in range(0, frames): | ||||||
|  | 		yield ( | ||||||
|  | 			('license', 'style', 'opacity', 1), | ||||||
|  | 			('bar1', 'style', 'opacity', 1), | ||||||
|  | 			('bar2', 'style', 'opacity', 1), | ||||||
|  | 			('bar3', 'style', 'opacity', 0), | ||||||
|  | 		) | ||||||
|  | 
 | ||||||
|  | 	frames = int(3.5*fps) | ||||||
|  | 	for i in range(0, frames): | ||||||
|  | 		yield ( | ||||||
|  | 			('license', 'style', 'opacity', 1), | ||||||
|  | 			('bar1', 'style', 'opacity', 1), | ||||||
|  | 			('bar2', 'style', 'opacity', 1), | ||||||
|  | 			('bar3', 'style', 'opacity', 1), | ||||||
|  | 		) | ||||||
|  | 
 | ||||||
|  | def debug(): | ||||||
|  | 	# render('intro.svg', | ||||||
|  | 	# 	'../intro.dv', | ||||||
|  | 	# 	introFrames, | ||||||
|  | 	# 	{ | ||||||
|  | 	# 		'$id': 5985, | ||||||
|  | 	# 		'$title': 'Dem Stromnetz auf die Finger geguckt', | ||||||
|  | 	# 		'$subtitle': 'Netzfrequenz messen for fun and profit', | ||||||
|  | 	# 		'$personnames': 'gonium' | ||||||
|  | 	# 	} | ||||||
|  | 	# ) | ||||||
|  | 
 | ||||||
|  | 	render('outro.svg', | ||||||
|  | 		'../outro.dv', | ||||||
|  | 		outroFrames | ||||||
|  | 	) | ||||||
|  | 
 | ||||||
|  | def tasks(queue): | ||||||
|  | 	# iterate over all events extracted from the schedule xml-export | ||||||
|  | 	for event in events(scheduleUrl): | ||||||
|  | 
 | ||||||
|  | 		# generate a task description and put them into the queue | ||||||
|  | 		queue.put(Rendertask( | ||||||
|  | 			infile = 'intro.svg', | ||||||
|  | 			outfile = str(event['id'])+".dv", | ||||||
|  | 			sequence = introFrames, | ||||||
|  | 			parameters = { | ||||||
|  | 				'$id': event['id'], | ||||||
|  | 				'$title': event['title'], | ||||||
|  | 				'$subtitle': event['subtitle'], | ||||||
|  | 				'$personnames': event['personnames'] | ||||||
|  | 			} | ||||||
|  | 		)) | ||||||
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								mrmcd2014/artwork/fonts/abel/Abel-Regular.ttf
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								mrmcd2014/artwork/fonts/abel/Abel-Regular.ttf
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										92
									
								
								mrmcd2014/artwork/fonts/abel/OFL.txt
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										92
									
								
								mrmcd2014/artwork/fonts/abel/OFL.txt
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,92 @@ | ||||||
|  | Copyright (c) 2011, Matthew Desmond (http://www.madtype.com | mattdesmond@gmail.com),with Reserved Font Name Abel. | ||||||
|  | This Font Software is licensed under the SIL Open Font License, Version 1.1. | ||||||
|  | This license is copied below, and is also available with a FAQ at: | ||||||
|  | http://scripts.sil.org/OFL | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | ----------------------------------------------------------- | ||||||
|  | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 | ||||||
|  | ----------------------------------------------------------- | ||||||
|  | 
 | ||||||
|  | PREAMBLE | ||||||
|  | The goals of the Open Font License (OFL) are to stimulate worldwide | ||||||
|  | development of collaborative font projects, to support the font creation | ||||||
|  | efforts of academic and linguistic communities, and to provide a free and | ||||||
|  | open framework in which fonts may be shared and improved in partnership | ||||||
|  | with others. | ||||||
|  | 
 | ||||||
|  | The OFL allows the licensed fonts to be used, studied, modified and | ||||||
|  | redistributed freely as long as they are not sold by themselves. The | ||||||
|  | fonts, including any derivative works, can be bundled, embedded,  | ||||||
|  | redistributed and/or sold with any software provided that any reserved | ||||||
|  | names are not used by derivative works. The fonts and derivatives, | ||||||
|  | however, cannot be released under any other type of license. The | ||||||
|  | requirement for fonts to remain under this license does not apply | ||||||
|  | to any document created using the fonts or their derivatives. | ||||||
|  | 
 | ||||||
|  | DEFINITIONS | ||||||
|  | "Font Software" refers to the set of files released by the Copyright | ||||||
|  | Holder(s) under this license and clearly marked as such. This may | ||||||
|  | include source files, build scripts and documentation. | ||||||
|  | 
 | ||||||
|  | "Reserved Font Name" refers to any names specified as such after the | ||||||
|  | copyright statement(s). | ||||||
|  | 
 | ||||||
|  | "Original Version" refers to the collection of Font Software components as | ||||||
|  | distributed by the Copyright Holder(s). | ||||||
|  | 
 | ||||||
|  | "Modified Version" refers to any derivative made by adding to, deleting, | ||||||
|  | or substituting -- in part or in whole -- any of the components of the | ||||||
|  | Original Version, by changing formats or by porting the Font Software to a | ||||||
|  | new environment. | ||||||
|  | 
 | ||||||
|  | "Author" refers to any designer, engineer, programmer, technical | ||||||
|  | writer or other person who contributed to the Font Software. | ||||||
|  | 
 | ||||||
|  | PERMISSION & CONDITIONS | ||||||
|  | Permission is hereby granted, free of charge, to any person obtaining | ||||||
|  | a copy of the Font Software, to use, study, copy, merge, embed, modify, | ||||||
|  | redistribute, and sell modified and unmodified copies of the Font | ||||||
|  | Software, subject to the following conditions: | ||||||
|  | 
 | ||||||
|  | 1) Neither the Font Software nor any of its individual components, | ||||||
|  | in Original or Modified Versions, may be sold by itself. | ||||||
|  | 
 | ||||||
|  | 2) Original or Modified Versions of the Font Software may be bundled, | ||||||
|  | redistributed and/or sold with any software, provided that each copy | ||||||
|  | contains the above copyright notice and this license. These can be | ||||||
|  | included either as stand-alone text files, human-readable headers or | ||||||
|  | in the appropriate machine-readable metadata fields within text or | ||||||
|  | binary files as long as those fields can be easily viewed by the user. | ||||||
|  | 
 | ||||||
|  | 3) No Modified Version of the Font Software may use the Reserved Font | ||||||
|  | Name(s) unless explicit written permission is granted by the corresponding | ||||||
|  | Copyright Holder. This restriction only applies to the primary font name as | ||||||
|  | presented to the users. | ||||||
|  | 
 | ||||||
|  | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font | ||||||
|  | Software shall not be used to promote, endorse or advertise any | ||||||
|  | Modified Version, except to acknowledge the contribution(s) of the | ||||||
|  | Copyright Holder(s) and the Author(s) or with their explicit written | ||||||
|  | permission. | ||||||
|  | 
 | ||||||
|  | 5) The Font Software, modified or unmodified, in part or in whole, | ||||||
|  | must be distributed entirely under this license, and must not be | ||||||
|  | distributed under any other license. The requirement for fonts to | ||||||
|  | remain under this license does not apply to any document created | ||||||
|  | using the Font Software. | ||||||
|  | 
 | ||||||
|  | TERMINATION | ||||||
|  | This license becomes null and void if any of the above conditions are | ||||||
|  | not met. | ||||||
|  | 
 | ||||||
|  | DISCLAIMER | ||||||
|  | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||||||
|  | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF | ||||||
|  | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT | ||||||
|  | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE | ||||||
|  | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | ||||||
|  | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL | ||||||
|  | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||||||
|  | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM | ||||||
|  | OTHER DEALINGS IN THE FONT SOFTWARE. | ||||||
							
								
								
									
										520
									
								
								mrmcd2014/artwork/fonts/dinschab_2012/DIN_Schablonierschrift.otf
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										520
									
								
								mrmcd2014/artwork/fonts/dinschab_2012/DIN_Schablonierschrift.otf
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,520 @@ | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | <!DOCTYPE html> | ||||||
|  | <html> | ||||||
|  |   <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# githubog: http://ogp.me/ns/fb/githubog#"> | ||||||
|  |     <meta charset='utf-8'> | ||||||
|  |     <meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||||||
|  |         <title>din-schablonierschrift/fonts/DIN_Schablonierschrift.otf at master · marians/din-schablonierschrift · GitHub</title> | ||||||
|  |     <link rel="search" type="application/opensearchdescription+xml" href="/opensearch.xml" title="GitHub" /> | ||||||
|  |     <link rel="fluid-icon" href="https://github.com/fluidicon.png" title="GitHub" /> | ||||||
|  |     <link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-114.png" /> | ||||||
|  |     <link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114.png" /> | ||||||
|  |     <link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-144.png" /> | ||||||
|  |     <link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144.png" /> | ||||||
|  |     <link rel="logo" type="image/svg" href="https://github-media-downloads.s3.amazonaws.com/github-logo.svg" /> | ||||||
|  |     <meta property="og:image" content="https://github.global.ssl.fastly.net/images/modules/logos_page/Octocat.png"> | ||||||
|  |     <meta name="hostname" content="fe3.rs.github.com"> | ||||||
|  |     <meta name="ruby" content="ruby 1.9.3p194-tcs-github-tcmalloc (2012-05-25, TCS patched 2012-05-27, GitHub v1.0.32) [x86_64-linux]"> | ||||||
|  |     <link rel="assets" href="https://github.global.ssl.fastly.net/"> | ||||||
|  |     <link rel="xhr-socket" href="/_sockets" /> | ||||||
|  |      | ||||||
|  |      | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |     <meta name="msapplication-TileImage" content="/windows-tile.png" /> | ||||||
|  |     <meta name="msapplication-TileColor" content="#ffffff" /> | ||||||
|  |     <meta name="selected-link" value="repo_source" data-pjax-transient /> | ||||||
|  |     <meta content="collector.githubapp.com" name="octolytics-host" /><meta content="github" name="octolytics-app-id" /> | ||||||
|  | 
 | ||||||
|  |      | ||||||
|  |      | ||||||
|  |     <link rel="icon" type="image/x-icon" href="/favicon.ico" /> | ||||||
|  | 
 | ||||||
|  |     <meta content="authenticity_token" name="csrf-param" /> | ||||||
|  | <meta content="h3SycwU2qi6tMkNdjZGJSh94wg/xy/xnPaO4/o1hN3k=" name="csrf-token" /> | ||||||
|  | 
 | ||||||
|  |     <link href="https://github.global.ssl.fastly.net/assets/github-000b49d741b30fe45589fa4960f17061c41e6662.css" media="all" rel="stylesheet" type="text/css" /> | ||||||
|  |     <link href="https://github.global.ssl.fastly.net/assets/github2-b9852678c42b26293ff18b004f0459df4330f3da.css" media="all" rel="stylesheet" type="text/css" /> | ||||||
|  |      | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |       <script src="https://github.global.ssl.fastly.net/assets/frameworks-8c90145ced3264909647872c925b3f983056d3d1.js" type="text/javascript"></script> | ||||||
|  |       <script src="https://github.global.ssl.fastly.net/assets/github-87f1e83ee58d5acb53241ab43775bf403e0f7d15.js" type="text/javascript"></script> | ||||||
|  |        | ||||||
|  |       <meta http-equiv="x-pjax-version" content="8df38e35274ba41e916df33d79894270"> | ||||||
|  | 
 | ||||||
|  |         <link data-pjax-transient rel='permalink' href='/marians/din-schablonierschrift/blob/f27ebcb816792481cd074acb7f3f566208b22db4/fonts/DIN_Schablonierschrift.otf'> | ||||||
|  |   <meta property="og:title" content="din-schablonierschrift"/> | ||||||
|  |   <meta property="og:type" content="githubog:gitrepository"/> | ||||||
|  |   <meta property="og:url" content="https://github.com/marians/din-schablonierschrift"/> | ||||||
|  |   <meta property="og:image" content="https://github.global.ssl.fastly.net/images/gravatars/gravatar-user-420.png"/> | ||||||
|  |   <meta property="og:site_name" content="GitHub"/> | ||||||
|  |   <meta property="og:description" content="din-schablonierschrift - DIN Schablonierschrift - a technocratic and open stencil font "/> | ||||||
|  | 
 | ||||||
|  |   <meta name="description" content="din-schablonierschrift - DIN Schablonierschrift - a technocratic and open stencil font " /> | ||||||
|  | 
 | ||||||
|  |   <meta content="273727" name="octolytics-dimension-user_id" /><meta content="marians" name="octolytics-dimension-user_login" /><meta content="6137659" name="octolytics-dimension-repository_id" /><meta content="marians/din-schablonierschrift" name="octolytics-dimension-repository_nwo" /><meta content="true" name="octolytics-dimension-repository_public" /><meta content="false" name="octolytics-dimension-repository_is_fork" /><meta content="6137659" name="octolytics-dimension-repository_network_root_id" /><meta content="marians/din-schablonierschrift" name="octolytics-dimension-repository_network_root_nwo" /> | ||||||
|  |   <link href="https://github.com/marians/din-schablonierschrift/commits/master.atom" rel="alternate" title="Recent Commits to din-schablonierschrift:master" type="application/atom+xml" /> | ||||||
|  | 
 | ||||||
|  |   </head> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |   <body class="logged_out page-blob macintosh vis-public env-production "> | ||||||
|  | 
 | ||||||
|  |     <div class="wrapper"> | ||||||
|  |        | ||||||
|  |        | ||||||
|  |        | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |        | ||||||
|  |       <div class="header header-logged-out"> | ||||||
|  |   <div class="container clearfix"> | ||||||
|  | 
 | ||||||
|  |     <a class="header-logo-wordmark" href="https://github.com/"> | ||||||
|  |       <span class="mega-octicon octicon-logo-github"></span> | ||||||
|  |     </a> | ||||||
|  | 
 | ||||||
|  |     <div class="header-actions"> | ||||||
|  |         <a class="button primary" href="/signup">Sign up</a> | ||||||
|  |       <a class="button" href="/login?return_to=%2Fmarians%2Fdin-schablonierschrift%2Fblob%2Fmaster%2Ffonts%2FDIN_Schablonierschrift.otf">Sign in</a> | ||||||
|  |     </div> | ||||||
|  | 
 | ||||||
|  |     <div class="command-bar js-command-bar  in-repository"> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |       <ul class="top-nav"> | ||||||
|  |           <li class="explore"><a href="/explore">Explore</a></li> | ||||||
|  |         <li class="features"><a href="/features">Features</a></li> | ||||||
|  |           <li class="enterprise"><a href="https://enterprise.github.com/">Enterprise</a></li> | ||||||
|  |           <li class="blog"><a href="/blog">Blog</a></li> | ||||||
|  |       </ul> | ||||||
|  |         <form accept-charset="UTF-8" action="/search" class="command-bar-form" id="top_search_form" method="get"> | ||||||
|  | 
 | ||||||
|  | <input type="text" data-hotkey=" s" name="q" id="js-command-bar-field" placeholder="Search or type a command" tabindex="1" autocapitalize="off" | ||||||
|  |      | ||||||
|  |      | ||||||
|  |       data-repo="marians/din-schablonierschrift" | ||||||
|  |       data-branch="master" | ||||||
|  |       data-sha="f711b0c648071b9ca7a1d832bcef4db4bc8d6ac7" | ||||||
|  |   > | ||||||
|  | 
 | ||||||
|  |     <input type="hidden" name="nwo" value="marians/din-schablonierschrift" /> | ||||||
|  | 
 | ||||||
|  |     <div class="select-menu js-menu-container js-select-menu search-context-select-menu"> | ||||||
|  |       <span class="minibutton select-menu-button js-menu-target"> | ||||||
|  |         <span class="js-select-button">This repository</span> | ||||||
|  |       </span> | ||||||
|  | 
 | ||||||
|  |       <div class="select-menu-modal-holder js-menu-content js-navigation-container"> | ||||||
|  |         <div class="select-menu-modal"> | ||||||
|  | 
 | ||||||
|  |           <div class="select-menu-item js-navigation-item js-this-repository-navigation-item selected"> | ||||||
|  |             <span class="select-menu-item-icon octicon octicon-check"></span> | ||||||
|  |             <input type="radio" class="js-search-this-repository" name="search_target" value="repository" checked="checked" /> | ||||||
|  |             <div class="select-menu-item-text js-select-button-text">This repository</div> | ||||||
|  |           </div> <!-- /.select-menu-item --> | ||||||
|  | 
 | ||||||
|  |           <div class="select-menu-item js-navigation-item js-all-repositories-navigation-item"> | ||||||
|  |             <span class="select-menu-item-icon octicon octicon-check"></span> | ||||||
|  |             <input type="radio" name="search_target" value="global" /> | ||||||
|  |             <div class="select-menu-item-text js-select-button-text">All repositories</div> | ||||||
|  |           </div> <!-- /.select-menu-item --> | ||||||
|  | 
 | ||||||
|  |         </div> | ||||||
|  |       </div> | ||||||
|  |     </div> | ||||||
|  | 
 | ||||||
|  |   <span class="octicon help tooltipped downwards" title="Show command bar help"> | ||||||
|  |     <span class="octicon octicon-question"></span> | ||||||
|  |   </span> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |   <input type="hidden" name="ref" value="cmdform"> | ||||||
|  | 
 | ||||||
|  | </form> | ||||||
|  |     </div> | ||||||
|  | 
 | ||||||
|  |   </div> | ||||||
|  | </div> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |        | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |           <div class="site" itemscope itemtype="http://schema.org/WebPage"> | ||||||
|  |      | ||||||
|  |     <div class="pagehead repohead instapaper_ignore readability-menu"> | ||||||
|  |       <div class="container"> | ||||||
|  |          | ||||||
|  | 
 | ||||||
|  | <ul class="pagehead-actions"> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |   <li> | ||||||
|  |   <a href="/login?return_to=%2Fmarians%2Fdin-schablonierschrift" | ||||||
|  |   class="minibutton with-count js-toggler-target star-button entice tooltipped upwards" | ||||||
|  |   title="You must be signed in to use this feature" rel="nofollow"> | ||||||
|  |   <span class="octicon octicon-star"></span>Star | ||||||
|  | </a> | ||||||
|  | <a class="social-count js-social-count" href="/marians/din-schablonierschrift/stargazers"> | ||||||
|  |   1 | ||||||
|  | </a> | ||||||
|  | 
 | ||||||
|  |   </li> | ||||||
|  | 
 | ||||||
|  |     <li> | ||||||
|  |       <a href="/login?return_to=%2Fmarians%2Fdin-schablonierschrift" | ||||||
|  |         class="minibutton with-count js-toggler-target fork-button entice tooltipped upwards" | ||||||
|  |         title="You must be signed in to fork a repository" rel="nofollow"> | ||||||
|  |         <span class="octicon octicon-git-branch"></span>Fork | ||||||
|  |       </a> | ||||||
|  |       <a href="/marians/din-schablonierschrift/network" class="social-count"> | ||||||
|  |         0 | ||||||
|  |       </a> | ||||||
|  |     </li> | ||||||
|  | </ul> | ||||||
|  | 
 | ||||||
|  |         <h1 itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="entry-title public"> | ||||||
|  |           <span class="repo-label"><span>public</span></span> | ||||||
|  |           <span class="mega-octicon octicon-repo"></span> | ||||||
|  |           <span class="author"> | ||||||
|  |             <a href="/marians" class="url fn" itemprop="url" rel="author"><span itemprop="title">marians</span></a></span | ||||||
|  |           ><span class="repohead-name-divider">/</span><strong | ||||||
|  |           ><a href="/marians/din-schablonierschrift" class="js-current-repository js-repo-home-link">din-schablonierschrift</a></strong> | ||||||
|  | 
 | ||||||
|  |           <span class="page-context-loader"> | ||||||
|  |             <img alt="Octocat-spinner-32" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" /> | ||||||
|  |           </span> | ||||||
|  | 
 | ||||||
|  |         </h1> | ||||||
|  |       </div><!-- /.container --> | ||||||
|  |     </div><!-- /.repohead --> | ||||||
|  | 
 | ||||||
|  |     <div class="container"> | ||||||
|  | 
 | ||||||
|  |       <div class="repository-with-sidebar repo-container "> | ||||||
|  | 
 | ||||||
|  |         <div class="repository-sidebar"> | ||||||
|  |              | ||||||
|  | 
 | ||||||
|  | <div class="repo-nav repo-nav-full js-repository-container-pjax js-octicon-loaders"> | ||||||
|  |   <div class="repo-nav-contents"> | ||||||
|  |     <ul class="repo-menu"> | ||||||
|  |       <li class="tooltipped leftwards" title="Code"> | ||||||
|  |         <a href="/marians/din-schablonierschrift" aria-label="Code" class="js-selected-navigation-item selected" data-gotokey="c" data-pjax="true" data-selected-links="repo_source repo_downloads repo_commits repo_tags repo_branches /marians/din-schablonierschrift"> | ||||||
|  |           <span class="octicon octicon-code"></span> <span class="full-word">Code</span> | ||||||
|  |           <img alt="Octocat-spinner-32" class="mini-loader" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" /> | ||||||
|  | </a>      </li> | ||||||
|  | 
 | ||||||
|  |         <li class="tooltipped leftwards" title="Issues"> | ||||||
|  |           <a href="/marians/din-schablonierschrift/issues" aria-label="Issues" class="js-selected-navigation-item js-disable-pjax" data-gotokey="i" data-selected-links="repo_issues /marians/din-schablonierschrift/issues"> | ||||||
|  |             <span class="octicon octicon-issue-opened"></span> <span class="full-word">Issues</span> | ||||||
|  |             <span class='counter'>2</span> | ||||||
|  |             <img alt="Octocat-spinner-32" class="mini-loader" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" /> | ||||||
|  | </a>        </li> | ||||||
|  | 
 | ||||||
|  |       <li class="tooltipped leftwards" title="Pull Requests"><a href="/marians/din-schablonierschrift/pulls" aria-label="Pull Requests" class="js-selected-navigation-item js-disable-pjax" data-gotokey="p" data-selected-links="repo_pulls /marians/din-schablonierschrift/pulls"> | ||||||
|  |             <span class="octicon octicon-git-pull-request"></span> <span class="full-word">Pull Requests</span> | ||||||
|  |             <span class='counter'>0</span> | ||||||
|  |             <img alt="Octocat-spinner-32" class="mini-loader" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" /> | ||||||
|  | </a>      </li> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |     </ul> | ||||||
|  |     <div class="repo-menu-separator"></div> | ||||||
|  |     <ul class="repo-menu"> | ||||||
|  | 
 | ||||||
|  |       <li class="tooltipped leftwards" title="Pulse"> | ||||||
|  |         <a href="/marians/din-schablonierschrift/pulse" aria-label="Pulse" class="js-selected-navigation-item " data-pjax="true" data-selected-links="pulse /marians/din-schablonierschrift/pulse"> | ||||||
|  |           <span class="octicon octicon-pulse"></span> <span class="full-word">Pulse</span> | ||||||
|  |           <img alt="Octocat-spinner-32" class="mini-loader" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" /> | ||||||
|  | </a>      </li> | ||||||
|  | 
 | ||||||
|  |       <li class="tooltipped leftwards" title="Graphs"> | ||||||
|  |         <a href="/marians/din-schablonierschrift/graphs" aria-label="Graphs" class="js-selected-navigation-item " data-pjax="true" data-selected-links="repo_graphs repo_contributors /marians/din-schablonierschrift/graphs"> | ||||||
|  |           <span class="octicon octicon-graph"></span> <span class="full-word">Graphs</span> | ||||||
|  |           <img alt="Octocat-spinner-32" class="mini-loader" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" /> | ||||||
|  | </a>      </li> | ||||||
|  | 
 | ||||||
|  |       <li class="tooltipped leftwards" title="Network"> | ||||||
|  |         <a href="/marians/din-schablonierschrift/network" aria-label="Network" class="js-selected-navigation-item js-disable-pjax" data-selected-links="repo_network /marians/din-schablonierschrift/network"> | ||||||
|  |           <span class="octicon octicon-git-branch"></span> <span class="full-word">Network</span> | ||||||
|  |           <img alt="Octocat-spinner-32" class="mini-loader" height="16" src="https://github.global.ssl.fastly.net/images/spinners/octocat-spinner-32.gif" width="16" /> | ||||||
|  | </a>      </li> | ||||||
|  | 
 | ||||||
|  |     </ul> | ||||||
|  | 
 | ||||||
|  |   </div> | ||||||
|  | </div> | ||||||
|  | 
 | ||||||
|  |             <div class="only-with-full-nav"> | ||||||
|  |                | ||||||
|  | 
 | ||||||
|  |    | ||||||
|  | 
 | ||||||
|  | <div class="clone-url open" | ||||||
|  |   data-protocol-type="http" | ||||||
|  |   data-url="/users/set_protocol?protocol_selector=http&protocol_type=clone"> | ||||||
|  |   <h3><strong>HTTPS</strong> clone URL</h3> | ||||||
|  | 
 | ||||||
|  |   <input type="text" class="clone js-url-field" | ||||||
|  |          value="https://github.com/marians/din-schablonierschrift.git" readonly="readonly"> | ||||||
|  | 
 | ||||||
|  |   <span class="js-zeroclipboard url-box-clippy minibutton zeroclipboard-button" data-clipboard-text="https://github.com/marians/din-schablonierschrift.git" data-copied-hint="copied!" title="copy to clipboard"><span class="octicon octicon-clippy"></span></span> | ||||||
|  | </div> | ||||||
|  | 
 | ||||||
|  |    | ||||||
|  | 
 | ||||||
|  | <div class="clone-url " | ||||||
|  |   data-protocol-type="subversion" | ||||||
|  |   data-url="/users/set_protocol?protocol_selector=subversion&protocol_type=clone"> | ||||||
|  |   <h3><strong>Subversion</strong> checkout URL</h3> | ||||||
|  | 
 | ||||||
|  |   <input type="text" class="clone js-url-field" | ||||||
|  |          value="https://github.com/marians/din-schablonierschrift" readonly="readonly"> | ||||||
|  | 
 | ||||||
|  |   <span class="js-zeroclipboard url-box-clippy minibutton zeroclipboard-button" data-clipboard-text="https://github.com/marians/din-schablonierschrift" data-copied-hint="copied!" title="copy to clipboard"><span class="octicon octicon-clippy"></span></span> | ||||||
|  | </div> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | <p class="clone-options">You can clone with | ||||||
|  |     <a href="#" class="js-clone-selector" data-protocol="http">HTTPS</a>, | ||||||
|  |     <a href="#" class="js-clone-selector" data-protocol="subversion">Subversion</a>, | ||||||
|  |   and <a href="https://help.github.com/articles/which-remote-url-should-i-use">other methods.</a> | ||||||
|  | </p> | ||||||
|  | 
 | ||||||
|  |   <a href="http://mac.github.com" class="minibutton sidebar-button"> | ||||||
|  |     <span class="octicon octicon-device-desktop"></span> | ||||||
|  |     Clone in Desktop | ||||||
|  |   </a> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |                 <a href="/marians/din-schablonierschrift/archive/master.zip" | ||||||
|  |                    class="minibutton sidebar-button" | ||||||
|  |                    title="Download this repository as a zip file" | ||||||
|  |                    rel="nofollow"> | ||||||
|  |                   <span class="octicon octicon-cloud-download"></span> | ||||||
|  |                   Download ZIP | ||||||
|  |                 </a> | ||||||
|  |             </div> | ||||||
|  |         </div><!-- /.repository-sidebar --> | ||||||
|  | 
 | ||||||
|  |         <div id="js-repo-pjax-container" class="repository-content context-loader-container" data-pjax-container> | ||||||
|  |            | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | <!-- blob contrib key: blob_contributors:v21:d55e37454a0e48da679a62b2771c8652 --> | ||||||
|  | <!-- blob contrib frag key: views10/v8/blob_contributors:v21:d55e37454a0e48da679a62b2771c8652 --> | ||||||
|  | 
 | ||||||
|  | <p title="This is a placeholder element" class="js-history-link-replace hidden"></p> | ||||||
|  | 
 | ||||||
|  | <a href="/marians/din-schablonierschrift/find/master" data-pjax data-hotkey="t" style="display:none">Show File Finder</a> | ||||||
|  | 
 | ||||||
|  | <div class="file-navigation"> | ||||||
|  |    | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | <div class="select-menu js-menu-container js-select-menu" > | ||||||
|  |   <span class="minibutton select-menu-button js-menu-target" data-hotkey="w" | ||||||
|  |     data-master-branch="master" | ||||||
|  |     data-ref="master"> | ||||||
|  |     <span class="octicon octicon-git-branch"></span> | ||||||
|  |     <i>branch:</i> | ||||||
|  |     <span class="js-select-button">master</span> | ||||||
|  |   </span> | ||||||
|  | 
 | ||||||
|  |   <div class="select-menu-modal-holder js-menu-content js-navigation-container" data-pjax> | ||||||
|  | 
 | ||||||
|  |     <div class="select-menu-modal"> | ||||||
|  |       <div class="select-menu-header"> | ||||||
|  |         <span class="select-menu-title">Switch branches/tags</span> | ||||||
|  |         <span class="octicon octicon-remove-close js-menu-close"></span> | ||||||
|  |       </div> <!-- /.select-menu-header --> | ||||||
|  | 
 | ||||||
|  |       <div class="select-menu-filters"> | ||||||
|  |         <div class="select-menu-text-filter"> | ||||||
|  |           <input type="text" id="context-commitish-filter-field" class="js-filterable-field js-navigation-enable" placeholder="Filter branches/tags"> | ||||||
|  |         </div> | ||||||
|  |         <div class="select-menu-tabs"> | ||||||
|  |           <ul> | ||||||
|  |             <li class="select-menu-tab"> | ||||||
|  |               <a href="#" data-tab-filter="branches" class="js-select-menu-tab">Branches</a> | ||||||
|  |             </li> | ||||||
|  |             <li class="select-menu-tab"> | ||||||
|  |               <a href="#" data-tab-filter="tags" class="js-select-menu-tab">Tags</a> | ||||||
|  |             </li> | ||||||
|  |           </ul> | ||||||
|  |         </div><!-- /.select-menu-tabs --> | ||||||
|  |       </div><!-- /.select-menu-filters --> | ||||||
|  | 
 | ||||||
|  |       <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="branches"> | ||||||
|  | 
 | ||||||
|  |         <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring"> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |             <div class="select-menu-item js-navigation-item selected"> | ||||||
|  |               <span class="select-menu-item-icon octicon octicon-check"></span> | ||||||
|  |               <a href="/marians/din-schablonierschrift/blob/master/fonts/DIN_Schablonierschrift.otf" class="js-navigation-open select-menu-item-text js-select-button-text css-truncate-target" data-name="master" data-skip-pjax="true" rel="nofollow" title="master">master</a> | ||||||
|  |             </div> <!-- /.select-menu-item --> | ||||||
|  |         </div> | ||||||
|  | 
 | ||||||
|  |           <div class="select-menu-no-results">Nothing to show</div> | ||||||
|  |       </div> <!-- /.select-menu-list --> | ||||||
|  | 
 | ||||||
|  |       <div class="select-menu-list select-menu-tab-bucket js-select-menu-tab-bucket" data-tab-filter="tags"> | ||||||
|  |         <div data-filterable-for="context-commitish-filter-field" data-filterable-type="substring"> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |         </div> | ||||||
|  | 
 | ||||||
|  |         <div class="select-menu-no-results">Nothing to show</div> | ||||||
|  |       </div> <!-- /.select-menu-list --> | ||||||
|  | 
 | ||||||
|  |     </div> <!-- /.select-menu-modal --> | ||||||
|  |   </div> <!-- /.select-menu-modal-holder --> | ||||||
|  | </div> <!-- /.select-menu --> | ||||||
|  | 
 | ||||||
|  |   <div class="breadcrumb"> | ||||||
|  |     <span class='repo-root js-repo-root'><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/marians/din-schablonierschrift" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">din-schablonierschrift</span></a></span></span><span class="separator"> / </span><span itemscope="" itemtype="http://data-vocabulary.org/Breadcrumb"><a href="/marians/din-schablonierschrift/tree/master/fonts" data-branch="master" data-direction="back" data-pjax="true" itemscope="url"><span itemprop="title">fonts</span></a></span><span class="separator"> / </span><strong class="final-path">DIN_Schablonierschrift.otf</strong> <span class="js-zeroclipboard minibutton zeroclipboard-button" data-clipboard-text="fonts/DIN_Schablonierschrift.otf" data-copied-hint="copied!" title="copy to clipboard"><span class="octicon octicon-clippy"></span></span> | ||||||
|  |   </div> | ||||||
|  | </div> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |    | ||||||
|  |   <div class="commit file-history-tease"> | ||||||
|  |     <img class="main-avatar" height="24" src="https://2.gravatar.com/avatar/843d203327675d4e5dcb7167e86ed9f7?d=https%3A%2F%2Fidenticons.github.com%2Facddb1548c89e43ccfdbb538a6b490da.png&s=140" width="24" /> | ||||||
|  |     <span class="author"><a href="/marians" rel="author">marians</a></span> | ||||||
|  |     <time class="js-relative-date" datetime="2012-10-09T06:27:08-07:00" title="2012-10-09 06:27:08">October 09, 2012</time> | ||||||
|  |     <div class="commit-title"> | ||||||
|  |         <a href="/marians/din-schablonierschrift/commit/0937b84a5daba9505c9327ff42fed5625b4fbc87" class="message" data-pjax="true" title="New fonts export with uppercase glyphs on lowercase positions">New fonts export with uppercase glyphs on lowercase positions</a> | ||||||
|  |     </div> | ||||||
|  | 
 | ||||||
|  |     <div class="participation"> | ||||||
|  |       <p class="quickstat"><a href="#blob_contributors_box" rel="facebox"><strong>1</strong> contributor</a></p> | ||||||
|  |        | ||||||
|  |     </div> | ||||||
|  |     <div id="blob_contributors_box" style="display:none"> | ||||||
|  |       <h2 class="facebox-header">Users who have contributed to this file</h2> | ||||||
|  |       <ul class="facebox-user-list"> | ||||||
|  |         <li class="facebox-user-list-item"> | ||||||
|  |           <img height="24" src="https://2.gravatar.com/avatar/843d203327675d4e5dcb7167e86ed9f7?d=https%3A%2F%2Fidenticons.github.com%2Facddb1548c89e43ccfdbb538a6b490da.png&s=140" width="24" /> | ||||||
|  |           <a href="/marians">marians</a> | ||||||
|  |         </li> | ||||||
|  |       </ul> | ||||||
|  |     </div> | ||||||
|  |   </div> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | <div id="files" class="bubble"> | ||||||
|  |   <div class="file"> | ||||||
|  |     <div class="meta"> | ||||||
|  |       <div class="info"> | ||||||
|  |         <span class="icon"><b class="octicon octicon-file-text"></b></span> | ||||||
|  |         <span class="mode" title="File Mode">file</span> | ||||||
|  |         <span>15.488 kb</span> | ||||||
|  |       </div> | ||||||
|  |       <div class="actions"> | ||||||
|  |         <div class="button-group"> | ||||||
|  |           <a href="/marians/din-schablonierschrift/raw/master/fonts/DIN_Schablonierschrift.otf" class="button minibutton " id="raw-url">Raw</a> | ||||||
|  |           <a href="/marians/din-schablonierschrift/commits/master/fonts/DIN_Schablonierschrift.otf" class="button minibutton " rel="nofollow">History</a> | ||||||
|  |         </div><!-- /.button-group --> | ||||||
|  |             <a class="minibutton danger empty-icon js-entice" href="" | ||||||
|  |                data-entice="You must be signed in and on a branch to make or propose changes"> | ||||||
|  |             Delete | ||||||
|  |           </a> | ||||||
|  |       </div><!-- /.actions --> | ||||||
|  | 
 | ||||||
|  |     </div> | ||||||
|  |         <div class="blob-wrapper data type-text js-blob-data"> | ||||||
|  |       <div class="image js-image"> | ||||||
|  |           <a href="/marians/din-schablonierschrift/blob/master/fonts/DIN_Schablonierschrift.otf?raw=true">View Raw</a> | ||||||
|  |       </div> | ||||||
|  |     <!-- CSVs/TSVs can get pretty big, and they're not being shown if they fail blob.large? --> | ||||||
|  |   </div> | ||||||
|  | 
 | ||||||
|  |   </div> | ||||||
|  | </div> | ||||||
|  | 
 | ||||||
|  | <a href="#jump-to-line" rel="facebox[.linejump]" data-hotkey="l" class="js-jump-to-line" style="display:none">Jump to Line</a> | ||||||
|  | <div id="jump-to-line" style="display:none"> | ||||||
|  |   <form accept-charset="UTF-8" class="js-jump-to-line-form"> | ||||||
|  |     <input class="linejump-input js-jump-to-line-field" type="text" placeholder="Jump to line…" autofocus> | ||||||
|  |     <button type="submit" class="button">Go</button> | ||||||
|  |   </form> | ||||||
|  | </div> | ||||||
|  | 
 | ||||||
|  |         </div> | ||||||
|  | 
 | ||||||
|  |       </div><!-- /.repo-container --> | ||||||
|  |       <div class="modal-backdrop"></div> | ||||||
|  |     </div><!-- /.container --> | ||||||
|  |   </div><!-- /.site --> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |     </div><!-- /.wrapper --> | ||||||
|  | 
 | ||||||
|  |       <div class="container"> | ||||||
|  |   <div class="site-footer"> | ||||||
|  |     <ul class="site-footer-links right"> | ||||||
|  |       <li><a href="https://status.github.com/">Status</a></li> | ||||||
|  |       <li><a href="http://developer.github.com">API</a></li> | ||||||
|  |       <li><a href="http://training.github.com">Training</a></li> | ||||||
|  |       <li><a href="http://shop.github.com">Shop</a></li> | ||||||
|  |       <li><a href="/blog">Blog</a></li> | ||||||
|  |       <li><a href="/about">About</a></li> | ||||||
|  | 
 | ||||||
|  |     </ul> | ||||||
|  | 
 | ||||||
|  |     <a href="/"> | ||||||
|  |       <span class="mega-octicon octicon-mark-github"></span> | ||||||
|  |     </a> | ||||||
|  | 
 | ||||||
|  |     <ul class="site-footer-links"> | ||||||
|  |       <li>© 2013 <span title="0.07025s from fe3.rs.github.com">GitHub</span>, Inc.</li> | ||||||
|  |         <li><a href="/site/terms">Terms</a></li> | ||||||
|  |         <li><a href="/site/privacy">Privacy</a></li> | ||||||
|  |         <li><a href="/security">Security</a></li> | ||||||
|  |         <li><a href="/contact">Contact</a></li> | ||||||
|  |     </ul> | ||||||
|  |   </div><!-- /.site-footer --> | ||||||
|  | </div><!-- /.container --> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |     <div class="fullscreen-overlay js-fullscreen-overlay" id="fullscreen_overlay"> | ||||||
|  |   <div class="fullscreen-container js-fullscreen-container"> | ||||||
|  |     <div class="textarea-wrap"> | ||||||
|  |       <textarea name="fullscreen-contents" id="fullscreen-contents" class="js-fullscreen-contents" placeholder="" data-suggester="fullscreen_suggester"></textarea> | ||||||
|  |           <div class="suggester-container"> | ||||||
|  |               <div class="suggester fullscreen-suggester js-navigation-container" id="fullscreen_suggester" | ||||||
|  |                  data-url="/marians/din-schablonierschrift/suggestions/commit"> | ||||||
|  |               </div> | ||||||
|  |           </div> | ||||||
|  |     </div> | ||||||
|  |   </div> | ||||||
|  |   <div class="fullscreen-sidebar"> | ||||||
|  |     <a href="#" class="exit-fullscreen js-exit-fullscreen tooltipped leftwards" title="Exit Zen Mode"> | ||||||
|  |       <span class="mega-octicon octicon-screen-normal"></span> | ||||||
|  |     </a> | ||||||
|  |     <a href="#" class="theme-switcher js-theme-switcher tooltipped leftwards" | ||||||
|  |       title="Switch themes"> | ||||||
|  |       <span class="octicon octicon-color-mode"></span> | ||||||
|  |     </a> | ||||||
|  |   </div> | ||||||
|  | </div> | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  | 
 | ||||||
|  |     <div id="ajax-error-message" class="flash flash-error"> | ||||||
|  |       <span class="octicon octicon-alert"></span> | ||||||
|  |       <a href="#" class="octicon octicon-remove-close close ajax-error-dismiss"></a> | ||||||
|  |       Something went wrong with that request. Please try again. | ||||||
|  |     </div> | ||||||
|  | 
 | ||||||
|  |      | ||||||
|  |   </body> | ||||||
|  | </html> | ||||||
|  | 
 | ||||||
							
								
								
									
										504
									
								
								mrmcd2014/artwork/fonts/dinschab_2012/dinschab_2012.pdf
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										504
									
								
								mrmcd2014/artwork/fonts/dinschab_2012/dinschab_2012.pdf
									
										
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										1042
									
								
								mrmcd2014/artwork/intro.svg
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1042
									
								
								mrmcd2014/artwork/intro.svg
									
										
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							| After Width: | Height: | Size: 103 KiB | 
							
								
								
									
										1132
									
								
								mrmcd2014/artwork/outro.svg
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1132
									
								
								mrmcd2014/artwork/outro.svg
									
										
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							| After Width: | Height: | Size: 115 KiB | 
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 MaZderMind
						MaZderMind