├── .gitignore ├── 2E.py ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── E2.py ├── README.md ├── e ├── e.Dockerfile ├── e.R ├── e.adb ├── e.aheui ├── e.ahk ├── e.applescript ├── e.arnoldc ├── e.asm ├── e.b ├── e.bas ├── e.bat ├── e.bf ├── e.birl ├── e.bmp ├── e.bro ├── e.c ├── e.cbl ├── e.cc ├── e.cfm ├── e.chai ├── e.chpl ├── e.cljc ├── e.cmd ├── e.coffee ├── e.cpp ├── e.cr ├── e.cs ├── e.d ├── e.dart ├── e.delphi ├── e.dfy ├── e.e ├── e.e.py ├── e.el ├── e.emojic ├── e.epf ├── e.eps ├── e.erl ├── e.ex ├── e.f77 ├── e.f90 ├── e.fbx ├── e.flutter.dart ├── e.fs ├── e.fsharp.fs ├── e.g4 ├── e.gb ├── e.go ├── e.groovy ├── e.gz ├── e.hc ├── e.hh ├── e.hs ├── e.html ├── e.html.erb ├── e.idr ├── e.ijs ├── e.il ├── e.ino ├── e.inverted ├── e.io ├── e.java ├── e.jpg ├── e.js ├── e.jsfuck.js ├── e.json ├── e.jsx ├── e.kt ├── e.linux.arm.S ├── e.lisp ├── e.lol ├── e.lua ├── e.m ├── e.mbr.asm ├── e.mc ├── e.md ├── e.ml ├── e.nim ├── e.odt ├── e.pas ├── e.pde ├── e.php ├── e.php3 ├── e.pl ├── e.png ├── e.pro ├── e.properties ├── e.ps ├── e.ps1 ├── e.pub ├── e.py ├── e.q ├── e.qml ├── e.rb ├── e.red ├── e.rkt ├── e.rle ├── e.rs ├── e.s ├── e.sb2 ├── e.scala ├── e.scd ├── e.scm ├── e.sh ├── e.sm ├── e.smv ├── e.sol ├── e.sqf ├── e.sql ├── e.st ├── e.stl ├── e.svg ├── e.swift ├── e.t ├── e.tcl ├── e.tex ├── e.tf ├── e.tiff ├── e.toml ├── e.txt ├── e.v ├── e.vbs ├── e.vhd ├── e.vim ├── e.vue ├── e.wat ├── e.wav ├── e.x68 ├── e.xz ├── e.yml ├── e.zig ├── e_dos.asm ├── e_iOS_arm32.S ├── e_iOS_arm64.S ├── e_lc3.asm ├── e_linux_riscv64.S ├── e_macOS_32.S ├── e_macOS_64.S ├── e_mips.asm ├── e_standalone.asm ├── e_win32.asm ├── e_win64.asm ├── eaas.sh ├── ebig.py ├── eee-3.ebuild ├── eee.awk ├── eee.c ├── eeee.jl ├── eeeee.mp3 ├── eeeeee.py ├── eeeeeeee.jpeg └── posteeeer.pdf /.gitignore: -------------------------------------------------------------------------------- 1 | **/.backup 2 | **/gst.im 3 | a 4 | b 5 | c 6 | d 7 | f 8 | g 9 | h 10 | i 11 | j 12 | k 13 | l 14 | m 15 | n 16 | o 17 | p 18 | q 19 | r 20 | s 21 | t 22 | u 23 | v 24 | w 25 | x 26 | y 27 | z 28 | -------------------------------------------------------------------------------- /2E.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3.7 2 | 3 | import sys 4 | 5 | 6 | if len(sys.argv) is not 3: 7 | print('usage : 2E.py [input file] [output file]') 8 | exit(-1) 9 | 10 | inFile = open(sys.argv[1], mode='rb') 11 | outFile = open(sys.argv[2], mode='w') 12 | 13 | for buffer in iter(lambda: inFile.read(1), b''): 14 | binStr = bin(int(buffer.hex(), base=16))[2:].zfill(8) 15 | for c in binStr: 16 | if c == '1': 17 | outFile.write('E') 18 | elif c == '0': 19 | outFile.write('e') 20 | else: 21 | print('error!') 22 | exit(-1) 23 | 24 | 25 | inFile.close() 26 | outFile.close() -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required (VERSION 2.6) 2 | project (eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee) 3 | message("eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee") 4 | add_executable(eeeee e.c) 5 | add_custom_command(TARGET eeeee POST_BUILD COMMAND ${CMAKE_CURRENT_BINARY_DIR}/eeeee) 6 | 7 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Contributor Covenant Code of Conduct 2 | 3 | ## Our Pledge 4 | 5 | In the interest of fostering an open and welcoming environment, we as 6 | contributors and maintainers pledge to making participation in our project and 7 | our community a harassment-free experience for everyone, regardless of age, body 8 | size, disability, ethnicity, sex characteristics, gender identity and expression, 9 | level of experience, education, socio-economic status, nationality, personal 10 | appearance, race, religion, or sexual identity and orientation. 11 | 12 | ## Our Standards 13 | 14 | Examples of behavior that contributes to creating a positive environment 15 | include: 16 | 17 | * Using welcoming and inclusive language 18 | * Being respectful of differing viewpoints and experiences 19 | * Gracefully accepting constructive criticism 20 | * Focusing on what is best for the community 21 | * Showing empathy towards other community members 22 | 23 | Examples of unacceptable behavior by participants include: 24 | 25 | * The use of sexualized language or imagery and unwelcome sexual attention or 26 | advances 27 | * Trolling, insulting/derogatory comments, and personal or political attacks 28 | * Public or private harassment 29 | * Publishing others' private information, such as a physical or electronic 30 | address, without explicit permission 31 | * Other conduct which could reasonably be considered inappropriate in a 32 | professional setting 33 | 34 | ## Our Responsibilities 35 | 36 | Project maintainers are responsible for clarifying the standards of acceptable 37 | behavior and are expected to take appropriate and fair corrective action in 38 | response to any instances of unacceptable behavior. 39 | 40 | Project maintainers have the right and responsibility to remove, edit, or 41 | reject comments, commits, code, wiki edits, issues, and other contributions 42 | that are not aligned to this Code of Conduct, or to ban temporarily or 43 | permanently any contributor for other behaviors that they deem inappropriate, 44 | threatening, offensive, or harmful. 45 | 46 | ## Scope 47 | 48 | This Code of Conduct applies both within project spaces and in public spaces 49 | when an individual is representing the project or its community. Examples of 50 | representing a project or community include using an official project e-mail 51 | address, posting via an official social media account, or acting as an appointed 52 | representative at an online or offline event. Representation of a project may be 53 | further defined and clarified by project maintainers. 54 | 55 | ## Enforcement 56 | 57 | Instances of abusive, harassing, or otherwise unacceptable behavior may be 58 | reported by contacting the project team at eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee@tutanota.com. All 59 | complaints will be reviewed and investigated and will result in a response that 60 | is deemed necessary and appropriate to the circumstances. The project team is 61 | obligated to maintain confidentiality with regard to the reporter of an incident. 62 | Further details of specific enforcement policies may be posted separately. 63 | 64 | Project maintainers who do not follow or enforce the Code of Conduct in good 65 | faith may face temporary or permanent repercussions as determined by other 66 | members of the project's leadership. 67 | 68 | ## Attribution 69 | 70 | This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, 71 | available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html 72 | 73 | [homepage]: https://www.contributor-covenant.org 74 | 75 | For answers to common questions about this code of conduct, see 76 | https://www.contributor-covenant.org/faq 77 | -------------------------------------------------------------------------------- /E2.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3.7 2 | 3 | import sys 4 | import struct 5 | from array import * 6 | 7 | if len(sys.argv) is not 3: 8 | print('usage : E2.py [input file] [output file]') 9 | exit(-1) 10 | 11 | inFile = open(sys.argv[1], mode='rb') 12 | outFile = open(sys.argv[2], mode='wb') 13 | 14 | for buffer in iter(lambda: inFile.read(8), b''): 15 | bin_array = array('B') 16 | bin_str = '' 17 | for c in buffer: 18 | if c == ord('E'): 19 | bin_str += '1' 20 | elif c == ord('e'): 21 | bin_str += '0' 22 | else: 23 | print('error!') 24 | exit(-1) 25 | bin_array.append(int(bin_str, base=2)) 26 | bin_array.tofile(outFile) 27 | 28 | inFile.close() 29 | outFile.close() -------------------------------------------------------------------------------- /e: -------------------------------------------------------------------------------- 1 | ⓔ 2 | -------------------------------------------------------------------------------- /e.Dockerfile: -------------------------------------------------------------------------------- 1 | FROM busybox 2 | 3 | RUN seq 1 10000 | while read -r e; do echo -ne 'e'; done; echo e; 4 | 5 | CMD strings /dev/urandom | grep -oE 'e' | tr -d '\n' 6 | -------------------------------------------------------------------------------- /e.R: -------------------------------------------------------------------------------- 1 | while(T)cat("e") 2 | -------------------------------------------------------------------------------- /e.adb: -------------------------------------------------------------------------------- 1 | with Ada.Text_IO; use Ada.Text_IO; 2 | 3 | procedure Program is 4 | begin 5 | Ada.Text_IO.Put("e"); 6 | end Program; 7 | -------------------------------------------------------------------------------- /e.aheui: -------------------------------------------------------------------------------- 1 | 밝붇몋 2 | 뚜벌이 3 | 따밤툐 4 | -------------------------------------------------------------------------------- /e.ahk: -------------------------------------------------------------------------------- 1 | Loop 2 | MsgBox eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee `n 3 | -------------------------------------------------------------------------------- /e.applescript: -------------------------------------------------------------------------------- 1 | repeat 2 | say "e" 3 | log "e" 4 | end repeat -------------------------------------------------------------------------------- /e.arnoldc: -------------------------------------------------------------------------------- 1 | IT'S SHOWTIME 2 | STICK AROUND @NO PROBLEMO 3 | TALK TO THE HAND "e" 4 | CHILL 5 | YOU HAVE BEEN TERMINATED -------------------------------------------------------------------------------- /e.asm: -------------------------------------------------------------------------------- 1 | ; compile with: 2 | ; $ [ny]asm -felf(32|64) -oe.o e.asm 3 | ; $ (gcc|clang) -m(32|64) -oe e.o -nostdlib -nostartfiles 4 | 5 | section .text 6 | global _start 7 | 8 | %if __BITS__ == 32 9 | %define r(n) e%+n 10 | %define SYS_write 4 11 | %define rarg0 ebx 12 | %define rarg1 ecx 13 | %define rarg2 edx 14 | %define syscall int 0x80 15 | %else 16 | %define r(n) r%+n 17 | %define SYS_write 1 18 | %define rarg0 rdi 19 | %define rarg1 rsi 20 | %define rarg2 rdx 21 | default rel 22 | %endif 23 | 24 | ; size of a Linux pipe buffer 25 | %define PIPE_SIZE 0x10000 26 | %define STDOUT_FILENO 1 27 | 28 | ; Instead of simply storing a char in .rodata and write(2)-ing it 29 | ; over and over again, we first fill a buffer full of e's, and *then* 30 | ; write the entire buffer. This is much faster than the first option, 31 | ; because we only need to issue a syscall once every 65536 bytes. (Remember 32 | ; that doing a syscall requires the kernel to handle an interrupt etc etc etc.) 33 | 34 | _start: 35 | ; allocate space for the message 36 | mov r(cx), PIPE_SIZE 37 | mov r(bx), r(cx) ; we'll need it later 38 | sub r(sp), r(cx) 39 | 40 | ; quick memset(3) 41 | mov al, 'e' 42 | mov r(di), r(sp) 43 | rep stosb 44 | 45 | ; push+pop is actually a smaller encoding than mov for ints that fit within 8 bit 46 | push STDOUT_FILENO 47 | pop rarg0 48 | mov rarg1, r(sp) 49 | mov rarg2, r(bx) 50 | 51 | .loop: 52 | ; set this within the loop because the syscall's exit code is placed in r(ax) 53 | push SYS_write 54 | pop r(ax) 55 | syscall 56 | jmp short .loop 57 | -------------------------------------------------------------------------------- /e.b: -------------------------------------------------------------------------------- 1 | +++++ +++++ 2 | [ 3 | > 4 | +++++ +++++ 5 | <- 6 | ] 7 | 8 | >+ 9 | [.] 10 | -------------------------------------------------------------------------------- /e.bas: -------------------------------------------------------------------------------- 1 | 10 PRINT "e" 2 | 20 GOTO 10 3 | 4 | -------------------------------------------------------------------------------- /e.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | :e 3 | echo e 4 | goto e -------------------------------------------------------------------------------- /e.bf: -------------------------------------------------------------------------------- 1 | ++++++++++[>++++++++++<-]>+[.] 2 | -------------------------------------------------------------------------------- /e.birl: -------------------------------------------------------------------------------- 1 | HORA DO SHOW 2 | CE QUER VER ESSA PORRA? ("e"); 3 | BORA CUMPADE 0; 4 | BIRL 5 | -------------------------------------------------------------------------------- /e.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/dc7c259cbadabd5ea49d96eaa0d1e1503ddb8a91/e.bmp -------------------------------------------------------------------------------- /e.bro: -------------------------------------------------------------------------------- 1 | event bro_init() 2 | { 3 | local e = "e"; 4 | 5 | while ( e == "e" ) 6 | { 7 | print e; 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /e.c: -------------------------------------------------------------------------------- 1 | #include 2 | #define e "e" 3 | #define ee int 4 | #define eee main 5 | #define eeee ( 6 | #define eeeee ) 7 | #define eeeeee { 8 | #define eeeeeee } 9 | #define eeeeeeee for 10 | #define eeeeeeeee ; 11 | #define eeeeeeeeee printf 12 | #define eeeeeeeeeee return 13 | #define eeeeeeeeeeee on_exit 14 | #define eeeeeeeeeeeee [ 15 | #define eeeeeeeeeeeeee ] 16 | #define eeeeeeeeeeeeeee 0 17 | 18 | ee eee eeee eeeee eeeeee eeeeeeee eeee eeeeeeeee 19 | eeeeeeeee eeeee eeeeee eeeeeeeeee eeee e eeeee 20 | eeeeeeeee eeeeeee eeeeeee ee eeeeeeeeeeee eeee 21 | eeeee eeeeee eeeeeeeeeee e eeeeeeeeeeeee 22 | eeeeeeeeeeeeeee eeeeeeeeeeeeee eeeeeeeee eeeeeee 23 | -------------------------------------------------------------------------------- /e.cbl: -------------------------------------------------------------------------------- 1 | IDENTIFICATION DIVISION. 2 | PROGRAM-ID. eeeeeeeee. 3 | 4 | DATA DIVISION. 5 | WORKING-STORAGE SECTION. 6 | 01 e PIC X VALUE 0. 7 | 8 | PROCEDURE DIVISION. 9 | MAIN-PROCEDURE. 10 | PERFORM UNTIL e > e 11 | DISPLAY 'e' 12 | END-PERFORM. 13 | STOP RUN. 14 | 15 | -------------------------------------------------------------------------------- /e.cc: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | using namespace std; 4 | 5 | int main() 6 | { 7 | while('e') cout << "e"; 8 | return 'e'; 9 | } 10 | -------------------------------------------------------------------------------- /e.cfm: -------------------------------------------------------------------------------- 1 | 2 | while(true){ 3 | writeOutput('e'); 4 | } 5 | 6 | -------------------------------------------------------------------------------- /e.chai: -------------------------------------------------------------------------------- 1 | while (true) { 2 | print("e") 3 | } 4 | -------------------------------------------------------------------------------- /e.chpl: -------------------------------------------------------------------------------- 1 | coforall locale in Locales { 2 | on locale { 3 | coforall task_id in 0..#locale.maxTaskPar { 4 | while( true ) { 5 | write( "e" ); 6 | } 7 | } 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /e.cljc: -------------------------------------------------------------------------------- 1 | (ns e) 2 | 3 | (while true (print "e")) 4 | -------------------------------------------------------------------------------- /e.cmd: -------------------------------------------------------------------------------- 1 | do forever 2 | say e 3 | end 4 | 5 | -------------------------------------------------------------------------------- /e.coffee: -------------------------------------------------------------------------------- 1 | while 'e' 2 | console.log 'e' 3 | -------------------------------------------------------------------------------- /e.cpp: -------------------------------------------------------------------------------- 1 | #include 2 | #define e using 3 | #define ee namespace 4 | #define eee std 5 | #define eeee ; 6 | #define eeeee int 7 | #define eeeeee main 8 | #define eeeeeee ( 9 | #define eeeeeeee ) 10 | #define eeeeeeeee while 11 | #define eeeeeeeeee true 12 | #define eeeeeeeeeee { 13 | #define eeeeeeeeeeee } 14 | #define eeeeeeeeeeeee cout 15 | #define eeeeeeeeeeeeee cerr 16 | #define eeeeeeeeeeeeeee << 17 | #define eeeeeeeeeeeeeeee 'e' 18 | #define eeeeeeeeeeeeeeeee return 19 | 20 | e ee eee eeee 21 | eeeee eeeeee eeeeeee eeeeeeee 22 | eeeeeeeeeee 23 | eeeeeeeee eeeeeee eeeeeeeeee eeeeeeee 24 | eeeeeeeeeee 25 | eeeeeeeeeeeee eeeeeeeeeeeeeee eeeeeeeeeeeeeeee eeee 26 | eeeeeeeeeeeeee eeeeeeeeeeeeeee eeeeeeeeeeeeeeee eeee 27 | eeeeeeeeeeee 28 | eeeeeeeeeeeeeeeee eeeeeeeeeeeeeeee eeee 29 | eeeeeeeeeeee 30 | -------------------------------------------------------------------------------- /e.cr: -------------------------------------------------------------------------------- 1 | while true 2 | puts "e" 3 | end 4 | -------------------------------------------------------------------------------- /e.cs: -------------------------------------------------------------------------------- 1 | using Eeeeeee = System.Console; 2 | using eeee = System.Boolean; 3 | 4 | namespace e 5 | { 6 | class E 7 | { 8 | const eeee e = true; 9 | 10 | static void Main(string[] eeee) 11 | { 12 | while (e) 13 | { 14 | Eeeeeee.Write('e'); 15 | } 16 | } 17 | } 18 | } 19 | -------------------------------------------------------------------------------- /e.d: -------------------------------------------------------------------------------- 1 | import std.stdio; 2 | 3 | int main() { 4 | for(;;) { 5 | writefln("e"); 6 | } 7 | return 0; 8 | } 9 | -------------------------------------------------------------------------------- /e.dart: -------------------------------------------------------------------------------- 1 | import 'dart:io'; 2 | 3 | main(List args) { 4 | while (true) { 5 | stdout.write('e'); 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /e.delphi: -------------------------------------------------------------------------------- 1 | program e; 2 | begin 3 | while 4 | while true do 5 | begin 6 | writeln('e'); 7 | end; 8 | end. 9 | -------------------------------------------------------------------------------- /e.dfy: -------------------------------------------------------------------------------- 1 | method Main() { 2 | var e := 9999; 3 | while e > 0 4 | decreases e 5 | invariant e >= 0 6 | { 7 | print "e"; 8 | e := e - 1; 9 | } 10 | } -------------------------------------------------------------------------------- /e.e: -------------------------------------------------------------------------------- 1 | 循环判断首() 2 | 文本输入框e.内容=“e” 3 | 文本输入框ee.内容=“ee” 4 | 文本e = 删首尾空 (文本输入框e.内容) 5 | 文本ee = 删首尾空 (文本输入框ee.内容) 6 | 循环判断尾(文本e=文本ee) 7 | -------------------------------------------------------------------------------- /e.e.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | e = list("2.718281828459045235360287471352662497757247093699959574966967627724076630353547594571382178525166427427466391932003059921817413596629043572900334295260595630738132328627943490763233829880753195251019011573834187930702154089149934884167509244761460668082264800168477411853742345442437107539077744992069551702761838606261331384583000752044933826560297606737113200709328709127443747047230696977209310141692836819025515108657463772111252389784425056953696770785449969967946864454905987931636889230098793127736178215424999229576351482208269895193668033182528869398496465105820939239829488793320362509443117301238197068416140397019837679320683282376464804295311802328782509819455815301756717361332069811250996181881593041690351598888519345807273866738589422879228499892086805825749279610484198444363463244968487560233624827041978623209002160990235304369941849146314093431738143640546253152096183690888707016768396424378140592714563549061303107208510383750510115747704171898610687396965521267154688957035035402123407849819334321068170121005627880235193033224745015853904730419957777093503660416997329725088687696640355570716226844716256079882651787134195124665201030592123667719432527867539855894489697096409754591856956380236370162112047742722836489613422516445078182442352948636372141740238893441247963574370263755294448337998016125492278509257782562092622648326277933386566481627725164019105900491644998289315056604725802778631864155195653244258698294695930801915298721172556347546396447910145904090586298496791287406870504895858671747985466775757320568128845920541334053922000113786300945560688166740016984205580403363795376452030402432256613527836951177883863874439662532249850654995886234281899707733276171783928034946501434558897071942586398772754710962953741521115136835062752602326484728703920764310059584116612054529703023647254929666938115137322753645098889031360205724817658511806303644281231496550704751025446501172721155519486685080036853228183152196003735625279449515828418829478761085263981395599006737648292244375287184624578036192981971399147564488262603903381441823262515097482798777996437308997038886778227138360577297882412561190717663946507063304527954661855096666185664709711344474016070462621568071748187784437143698821855967095910259686200235371858874856965220005031173439207321139080329363447972735595527734907178379342163701205005451326383544000186323991490705479778056697853358048966906295119432473099587655236812859041383241160722602998330535370876138939639177957454016137223618789365260538155841587186925538606164779834025435128439612946035291332594279490433729908573158029095863138268329147711639633709240031689458636060645845925126994655724839186564209752685082307544254599376917041977780085362730941710163434907696423722294352366125572508814779223151974778060569672538017180776360346245927877846585065605078084421152969752189087401966090665180351650179250461950136658543663271254963990854914420001457476081930221206602433009641270489439039717719518069908699860663658323227870937650226014929101151717763594460202324930028040186772391028809786660565118326004368850881715723866984224220102495055188169480322100251542649463981287367765892768816359831247788652014117411091360116499507662907794364600585194199856016264790761532103872755712699251827568798930276176114616254935649590379804583818232336861201624373656984670378585330527583333793990752166069238053369887956513728559388349989470741618155012539706464817194670834819721448889879067650379590366967249499254527903372963616265897603949857674139735944102374432970935547798262961459144293645142861715858733974679189757121195618738578364475844842355558105002561149239151889309946342841393608038309166281881150371528496705974162562823609216807515017772538740256425347087908913729172282861151591568372524163077225440633787593105982676094420326192428531701878177296023541306067213604600038966109364709514141718577701418060644363681546444005331608778314317444081194942297559931401188868331483280270655383300469329011574414756313999722170380461709289457909627166226074071874997535921275608441473782330327033016823719364800217328573493594756433412994302485023573221459784328264142168487872167336701061509424345698440187331281010794512722373788612605816566805371439612788873252737389039289050686532413806279602593038772769778379286840932536588073398845721874602100531148335132385004782716937621800490479559795929059165547050577751430817511269898518840871856402603530558373783242292418562564425502267215598027401261797192804713960068916382866527700975276706977703643926022437284184088325184877047263844037953016690546593746161932384036389313136432713768884102681121989127522305625675625470172508634976536728860596675274086862740791285657699631378975303466061666980421826772456053066077389962421834085988207186468262321508028828635974683965435885668550377313129658797581050121491620765676995065971534476347032085321560367482860837865680307306265763346977429563464371670939719306087696349532884683361303882943104080029687386911706666614680001512114344225602387447432525076938707777519329994213727721125884360871583483562696166198057252661220679754062106208064988291845439530152998209250300549825704339055357016865312052649561485724925738620691740369521353373253166634546658859728665945113644137033139367211856955395210845840724432383558606310680696492485123263269951460359603729725319836842336390463213671011619282171115028280160448805880238203198149309636959673583274202498824568494127386056649135252670604623445054922758115170931492187959271800194096886698683703730220047531433818109270803001720593553052070070607223399946399057131158709963577735902719628506114651483752620956534671329002599439766311454590268589897911583709341937044115512192011716488056694593813118384376562062784631049034629395002945834116482411496975832601180073169943739350696629571241027323913874175492307186245454322203955273529524024590380574450289224688628533654221381572213116328811205214648980518009202471939171055539011394331668151582884368760696110250517100739276238555338627255353883096067164466237092264680967125406186950214317621166814009759528149390722260111268115310838731761732323526360583817315103459573653822353499293582283685100781088463434998351840445170427018938199424341009057537625776757111809008816418331920196262341628816652137471732547772778348877436651882875215668571950637193656539038944936642176400312152787022236646363575550356557694888654950027085392361710550213114741374410613444554419210133617299628569489919336918472947858072915608851039678195942983318648075608367955149663644896559294818785178403877332624705194505041984774201418394773120281588684570729054405751060128525805659470304683634459265255213700806875200959345360731622611872817392807462309468536782310609792159936001994623799343421068781349734695924646975250624695861690917857397659519939299399556754271465491045686070209901260681870498417807917392407194599632306025470790177452751318680998228473086076653686685551646770291133682756310722334672611370549079536583453863719623585631261838715677411873852772292259474337378569553845624680101390572787101651296663676445187246565373040244368414081448873295784734849000301947788802046032466084287535184836495919508288832320652212810419044804724794929134228495197002260131043006241071797150279343326340799596053144605323048852897291765987601666781193793237245385720960758227717848336161358261289622611812945592746276713779448758675365754486140761193112595851265575973457301533364263076798544338576171533346232527057200530398828949903425956623297578248873502925916682589445689465599265845476269452878051650172067478541788798227680653665064191097343452887833862172615626958265447820567298775642632532159429441803994321700009054265076309558846589517170914760743713689331946909098190450129030709956622662030318264936573369841955577696378762491885286568660760056602560544571133728684020557441603083705231224258722343885412317948138855007568938112493538631863528708379984569261998179452336408742959118074745341955142035172618420084550917084568236820089773945584267921427347756087964427920270831215015640634134161716644806981548376449157390012121704154787259199894382536495051477137939914720521952907939613762110723849429061635760459623125350606853765142311534966568371511660422079639446662116325515772907097847315627827759878813649195125748332879377157145909106484164267830994972367442017586226940215940792448054125536043131799269673915754241929660731239376354213923061787675395871143610408940996608947141834069836299367536262154524729846421375289107988438130609555262272083751862983706678722443019579379378607210725427728907173285487437435578196651171661833088112912024520404868220007234403502544820283425418788465360259150644527165770004452109773558589762265548494162171498953238342160011406295071849042778925855274303522139683567901807640604213830730877446017084268827226117718084266433365178000217190344923426426629226145600433738386833555534345300426481847398921562708609565062934040526494324426144566592129122564889356965500915430642613425266847259491431423939884543248632746184284665598533231221046625989014171210344608427161661900125719587079321756969854401339762209674945418540711844643394699016269835160784892451405894094639526780735457970030705116368251948770118976400282764841416058720618418529718915401968825328930914966534575357142731848201638464483249903788606900807270932767312758196656394114896171683298045513972950668760474091542042842999354102582911350224169076943166857424252250902693903481485645130306992519959043638402842926741257342244776558417788617173726546208549829449894678735092958165263207225899236876845701782303809656788311228930580914057261086588484587310165815116753332767488701482916741970151255978257270740643180860142814902414678047232759768426963393577354293018673943971638861176420900406866339885684168100387238921448317607011668450388721236436704331409115573328018297798873659091665961240202177855885487617616198937079438005666336488436508914480557103976521469602766258359905198704230017946553679") 3 | for _e_ in e: 4 | if ( _e_ == '.'): 5 | pass 6 | else: 7 | for __e__ in range(int(_e_)): 8 | print('e',end='') 9 | -------------------------------------------------------------------------------- /e.el: -------------------------------------------------------------------------------- 1 | (while t (princ "e")) 2 | -------------------------------------------------------------------------------- /e.emojic: -------------------------------------------------------------------------------- 1 | 🏁 🍇 2 | 🔁 👍 🍇 3 | 😀 🔤e🔤❗️ 4 | 🍉 5 | 🍉 6 | -------------------------------------------------------------------------------- /e.epf: -------------------------------------------------------------------------------- 1 | Cообщить ("еееееееееееееееееееееееее"); 2 | -------------------------------------------------------------------------------- /e.eps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/dc7c259cbadabd5ea49d96eaa0d1e1503ddb8a91/e.eps -------------------------------------------------------------------------------- /e.erl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env escript 2 | main(_) -> 3 | io:format("e"), 4 | main('e'). 5 | -------------------------------------------------------------------------------- /e.ex: -------------------------------------------------------------------------------- 1 | defmodule E do 2 | def e, do: (IO.write("e"); e()) 3 | end 4 | 5 | E.e() 6 | -------------------------------------------------------------------------------- /e.f77: -------------------------------------------------------------------------------- 1 | PROGRAM E 2 | PRINT*, 'e' 3 | END 4 | -------------------------------------------------------------------------------- /e.f90: -------------------------------------------------------------------------------- 1 | program e 2 | do 3 | write(*, "(a)", advance="no") "e" 4 | enddo 5 | endprogram e 6 | -------------------------------------------------------------------------------- /e.fbx: -------------------------------------------------------------------------------- 1 | ; FBX 6.1.0 projeeeeeeeeeeect fileeeeeeeeeeeee 2 | ; Creeeeeeeeeeeeeeeeeeeeeeeeated by Bleeeeeeeeeeeeeeeeeeeeeeeeendeeeeeeeeeeeer FBX Exporteeeeeeeeeer 3 | ; for support mail: ideasman42@gmail.com 4 | ; ---------------------------------------------------- 5 | 6 | FBXHeaderExtension: { 7 | FBXHeaderVersion: 1003 8 | FBXVersion: 6100 9 | CreationTimeStamp: { 10 | Version: 1000 11 | Year: 2018 12 | Month: 12 13 | Day: 11 14 | Hour: 10 15 | Minute: 55 16 | Second: 17 17 | Millisecond: 0 18 | } 19 | Creator: "FBX SDK/FBX Plugins build 20070228" 20 | OtherFlags: { 21 | FlagPLE: 0 22 | } 23 | } 24 | CreationTime: "2018-12-11 10:55:17:000" 25 | Creator: "Blender version 2.79 (sub 0)" 26 | 27 | ; Objeeeeeeeeeeeeect deeeeeeeeeeeeeeeeeeeeeeeeeeeefinitions 28 | ;------------------------------------------------------------------ 29 | 30 | Definitions: { 31 | Version: 100 32 | Count: 3 33 | ObjectType: "Model" { 34 | Count: 1 35 | } 36 | ObjectType: "Geometry" { 37 | Count: 1 38 | } 39 | ObjectType: "Material" { 40 | Count: 1 41 | } 42 | ObjectType: "Pose" { 43 | Count: 1 44 | } 45 | ObjectType: "GlobalSettings" { 46 | Count: 1 47 | } 48 | } 49 | 50 | ; Objeeeeeeeeeeeeeeeeeeeeeeeeeect propeeeeeeeeeeeeeeeeeeeerties 51 | ;------------------------------------------------------------------ 52 | 53 | Objects: { 54 | Model: "Model::e", "Mesh" { 55 | Version: 232 56 | Properties60: { 57 | Property: "QuaternionInterpolate", "bool", "",0 58 | Property: "Visibility", "Visibility", "A+",1 59 | Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000 60 | Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000002504348856,0.000000000000000,0.000000000000000 61 | Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000 62 | Property: "RotationOffset", "Vector3D", "",0,0,0 63 | Property: "RotationPivot", "Vector3D", "",0,0,0 64 | Property: "ScalingOffset", "Vector3D", "",0,0,0 65 | Property: "ScalingPivot", "Vector3D", "",0,0,0 66 | Property: "TranslationActive", "bool", "",0 67 | Property: "TranslationMin", "Vector3D", "",0,0,0 68 | Property: "TranslationMax", "Vector3D", "",0,0,0 69 | Property: "TranslationMinX", "bool", "",0 70 | Property: "TranslationMinY", "bool", "",0 71 | Property: "TranslationMinZ", "bool", "",0 72 | Property: "TranslationMaxX", "bool", "",0 73 | Property: "TranslationMaxY", "bool", "",0 74 | Property: "TranslationMaxZ", "bool", "",0 75 | Property: "RotationOrder", "enum", "",0 76 | Property: "RotationSpaceForLimitOnly", "bool", "",0 77 | Property: "AxisLen", "double", "",10 78 | Property: "PreRotation", "Vector3D", "",0,0,0 79 | Property: "PostRotation", "Vector3D", "",0,0,0 80 | Property: "RotationActive", "bool", "",0 81 | Property: "RotationMin", "Vector3D", "",0,0,0 82 | Property: "RotationMax", "Vector3D", "",0,0,0 83 | Property: "RotationMinX", "bool", "",0 84 | Property: "RotationMinY", "bool", "",0 85 | Property: "RotationMinZ", "bool", "",0 86 | Property: "RotationMaxX", "bool", "",0 87 | Property: "RotationMaxY", "bool", "",0 88 | Property: "RotationMaxZ", "bool", "",0 89 | Property: "RotationStiffnessX", "double", "",0 90 | Property: "RotationStiffnessY", "double", "",0 91 | Property: "RotationStiffnessZ", "double", "",0 92 | Property: "MinDampRangeX", "double", "",0 93 | Property: "MinDampRangeY", "double", "",0 94 | Property: "MinDampRangeZ", "double", "",0 95 | Property: "MaxDampRangeX", "double", "",0 96 | Property: "MaxDampRangeY", "double", "",0 97 | Property: "MaxDampRangeZ", "double", "",0 98 | Property: "MinDampStrengthX", "double", "",0 99 | Property: "MinDampStrengthY", "double", "",0 100 | Property: "MinDampStrengthZ", "double", "",0 101 | Property: "MaxDampStrengthX", "double", "",0 102 | Property: "MaxDampStrengthY", "double", "",0 103 | Property: "MaxDampStrengthZ", "double", "",0 104 | Property: "PreferedAngleX", "double", "",0 105 | Property: "PreferedAngleY", "double", "",0 106 | Property: "PreferedAngleZ", "double", "",0 107 | Property: "InheritType", "enum", "",0 108 | Property: "ScalingActive", "bool", "",0 109 | Property: "ScalingMin", "Vector3D", "",1,1,1 110 | Property: "ScalingMax", "Vector3D", "",1,1,1 111 | Property: "ScalingMinX", "bool", "",0 112 | Property: "ScalingMinY", "bool", "",0 113 | Property: "ScalingMinZ", "bool", "",0 114 | Property: "ScalingMaxX", "bool", "",0 115 | Property: "ScalingMaxY", "bool", "",0 116 | Property: "ScalingMaxZ", "bool", "",0 117 | Property: "GeometricTranslation", "Vector3D", "",0,0,0 118 | Property: "GeometricRotation", "Vector3D", "",0,0,0 119 | Property: "GeometricScaling", "Vector3D", "",1,1,1 120 | Property: "LookAtProperty", "object", "" 121 | Property: "UpVectorProperty", "object", "" 122 | Property: "Show", "bool", "",1 123 | Property: "NegativePercentShapeSupport", "bool", "",1 124 | Property: "DefaultAttributeIndex", "int", "",0 125 | Property: "Color", "Color", "A",0.8,0.8,0.8 126 | Property: "Size", "double", "",100 127 | Property: "Look", "enum", "",1 128 | } 129 | MultiLayer: 0 130 | MultiTake: 1 131 | Shading: Y 132 | Culling: "CullingOff" 133 | Vertices: 0.198500,-0.370000,0.000000,0.185519,-0.378205,0.000000,0.172565,-0.385806,0.000000,0.159625,-0.392781,0.000000, 134 | 0.146685,-0.399111,0.000000,0.133731,-0.404774,0.000000,0.120750,-0.409750,0.000000,0.107727,-0.414017,0.000000, 135 | 0.094648,-0.417556,0.000000,0.081500,-0.420344,0.000000,0.068269,-0.422361,0.000000,0.054940,-0.423587,0.000000, 136 | 0.041500,-0.424000,0.000000,0.020730,-0.423043,0.000000,0.001426,-0.420181,0.000000,-0.016406,-0.415422,0.000000, 137 | -0.032759,-0.408778,0.000000,-0.047626,-0.400259,0.000000,-0.061000,-0.389875,0.000000,-0.072874,-0.377637,0.000000, 138 | -0.083241,-0.363556,0.000000,-0.092094,-0.347641,0.000000,-0.099426,-0.329903,0.000000,-0.105230,-0.310352,0.000000, 139 | -0.109500,-0.289000,0.000000,0.206500,-0.289000,0.000000,0.204936,-0.249269,0.000000,0.200319,-0.213065,0.000000, 140 | 0.192766,-0.180375,0.000000,0.182389,-0.151185,0.000000,0.169304,-0.125481,0.000000,0.153625,-0.103250,0.000000, 141 | 0.135467,-0.084477,0.000000,0.114944,-0.069148,0.000000,0.092172,-0.057250,0.000000,0.067264,-0.048769,0.000000, 142 | 0.040335,-0.043690,0.000000,0.011500,-0.042000,0.000000,-0.018681,-0.043889,0.000000,-0.047111,-0.049444,0.000000, 143 | -0.073625,-0.058500,0.000000,-0.098056,-0.070889,0.000000,-0.120236,-0.086444,0.000000,-0.140000,-0.105000,0.000000, 144 | -0.157181,-0.126389,0.000000,-0.171611,-0.150444,0.000000,-0.183125,-0.177000,0.000000,-0.191556,-0.205889,0.000000, 145 | -0.196736,-0.236944,0.000000,-0.198500,-0.270000,0.000000,-0.196884,-0.300751,0.000000,-0.192074,-0.330759,0.000000, 146 | -0.184125,-0.359656,0.000000,-0.173093,-0.387074,0.000000,-0.159032,-0.412645,0.000000,-0.142000,-0.436000,0.000000, 147 | -0.122051,-0.456772,0.000000,-0.099241,-0.474593,0.000000,-0.073625,-0.489094,0.000000,-0.045259,-0.499907,0.000000, 148 | -0.014199,-0.506666,0.000000,0.019500,-0.509000,0.000000,0.037956,-0.508645,0.000000,0.055398,-0.507574,0.000000, 149 | 0.071937,-0.505781,0.000000,0.087685,-0.503259,0.000000,0.102752,-0.500001,0.000000,0.117250,-0.496000,0.000000, 150 | 0.131289,-0.491249,0.000000,0.144981,-0.485741,0.000000,0.158437,-0.479469,0.000000,0.171769,-0.472426,0.000000, 151 | 0.185086,-0.464605,0.000000,0.198500,-0.456000,0.000000,-0.107500,-0.230000,0.000000,-0.103897,-0.212901,0.000000, 152 | -0.099093,-0.197125,0.000000,-0.093094,-0.182703,0.000000,-0.085907,-0.169667,0.000000,-0.077541,-0.158047,0.000000, 153 | -0.068000,-0.147875,0.000000,-0.057293,-0.139182,0.000000,-0.045426,-0.132000,0.000000,-0.032406,-0.126359,0.000000, 154 | -0.018241,-0.122292,0.000000,-0.002936,-0.119828,0.000000,0.013500,-0.119000,0.000000,0.028743,-0.119885,0.000000, 155 | 0.042944,-0.122500,0.000000,0.056063,-0.126781,0.000000,0.068056,-0.132667,0.000000,0.078882,-0.140094,0.000000, 156 | 0.088500,-0.149000,0.000000,0.096868,-0.159323,0.000000,0.103944,-0.171000,0.000000,0.109687,-0.183969,0.000000, 157 | 0.114056,-0.198167,0.000000,0.117007,-0.213531,0.000000,0.118500,-0.230000,0.000000,0.198500,-0.370000,-0.010000, 158 | 0.185519,-0.378205,-0.010000,0.172565,-0.385806,-0.010000,0.159625,-0.392781,-0.010000,0.146685,-0.399111,-0.010000, 159 | 0.133731,-0.404774,-0.010000,0.120750,-0.409750,-0.010000,0.107727,-0.414017,-0.010000,0.094648,-0.417556,-0.010000, 160 | 0.081500,-0.420344,-0.010000,0.068269,-0.422361,-0.010000,0.054940,-0.423587,-0.010000,0.041500,-0.424000,-0.010000, 161 | 0.020730,-0.423043,-0.010000,0.001426,-0.420181,-0.010000,-0.016406,-0.415422,-0.010000,-0.032759,-0.408778,-0.010000, 162 | -0.047626,-0.400259,-0.010000,-0.061000,-0.389875,-0.010000,-0.072874,-0.377637,-0.010000,-0.083241,-0.363556,-0.010000, 163 | -0.092094,-0.347641,-0.010000,-0.099426,-0.329903,-0.010000,-0.105230,-0.310352,-0.010000,-0.109500,-0.289000,-0.010000, 164 | 0.206500,-0.289000,-0.010000,0.204936,-0.249269,-0.010000,0.200319,-0.213065,-0.010000,0.192766,-0.180375,-0.010000, 165 | 0.182389,-0.151185,-0.010000,0.169304,-0.125481,-0.010000,0.153625,-0.103250,-0.010000,0.135467,-0.084477,-0.010000, 166 | 0.114944,-0.069148,-0.010000,0.092172,-0.057250,-0.010000,0.067264,-0.048769,-0.010000,0.040335,-0.043690,-0.010000, 167 | 0.011500,-0.042000,-0.010000,-0.018681,-0.043889,-0.010000,-0.047111,-0.049444,-0.010000,-0.073625,-0.058500,-0.010000, 168 | -0.098056,-0.070889,-0.010000,-0.120236,-0.086444,-0.010000,-0.140000,-0.105000,-0.010000,-0.157181,-0.126389,-0.010000, 169 | -0.171611,-0.150444,-0.010000,-0.183125,-0.177000,-0.010000,-0.191556,-0.205889,-0.010000,-0.196736,-0.236944,-0.010000, 170 | -0.198500,-0.270000,-0.010000,-0.196884,-0.300751,-0.010000,-0.192074,-0.330759,-0.010000,-0.184125,-0.359656,-0.010000, 171 | -0.173093,-0.387074,-0.010000,-0.159032,-0.412645,-0.010000,-0.142000,-0.436000,-0.010000,-0.122051,-0.456772,-0.010000, 172 | -0.099241,-0.474593,-0.010000,-0.073625,-0.489094,-0.010000,-0.045259,-0.499907,-0.010000,-0.014199,-0.506666,-0.010000, 173 | 0.019500,-0.509000,-0.010000,0.037956,-0.508645,-0.010000,0.055398,-0.507574,-0.010000,0.071937,-0.505781,-0.010000, 174 | 0.087685,-0.503259,-0.010000,0.102752,-0.500001,-0.010000,0.117250,-0.496000,-0.010000,0.131289,-0.491249,-0.010000, 175 | 0.144981,-0.485741,-0.010000,0.158437,-0.479469,-0.010000,0.171769,-0.472426,-0.010000,0.185086,-0.464605,-0.010000, 176 | 0.198500,-0.456000,-0.010000,-0.107500,-0.230000,-0.010000,-0.103897,-0.212901,-0.010000,-0.099093,-0.197125,-0.010000, 177 | -0.093094,-0.182703,-0.010000,-0.085907,-0.169667,-0.010000,-0.077541,-0.158047,-0.010000,-0.068000,-0.147875,-0.010000, 178 | -0.057293,-0.139182,-0.010000,-0.045426,-0.132000,-0.010000,-0.032406,-0.126359,-0.010000,-0.018241,-0.122292,-0.010000, 179 | -0.002936,-0.119828,-0.010000,0.013500,-0.119000,-0.010000,0.028743,-0.119885,-0.010000,0.042944,-0.122500,-0.010000, 180 | 0.056063,-0.126781,-0.010000,0.068056,-0.132667,-0.010000,0.078882,-0.140094,-0.010000,0.088500,-0.149000,-0.010000, 181 | 0.096868,-0.159323,-0.010000,0.103944,-0.171000,-0.010000,0.109687,-0.183969,-0.010000,0.114056,-0.198167,-0.010000, 182 | 0.117007,-0.213531,-0.010000,0.118500,-0.230000,-0.010000 183 | PolygonVertexIndex: 38,36,-38,38,35,-37,39,35,-39,39,34,-36,40,34,-40,40,33,-35,41,33,-41,41,32,-34,42,32,-42,42,31,-33,43,31, 184 | -43,43,30,-32,44,86,-44,86,30,-44,44,85,-87,87,30,-87,44,84,-86,88,30,-88,44,83,-85,89,30,-89,89,29,-31,44, 185 | 82,-84,45,82,-45,90,29,-90,45,81,-83,91,29,-91,45,80,-82,92,29,-92,45,79,-81,93,29,-93,46,79,-46,93,28,-30, 186 | 46,78,-80,94,28,-94,46,77,-79,95,28,-95,47,77,-47,95,27,-29,47,76,-78,96,27,-96,47,75,-77,97,27,-97,48,75, 187 | -48,48,74,-76,97,26,-28,98,26,-98,48,98,-75,48,26,-99,49,26,-49,49,25,-27,50,24,-50,24,25,-50,50,23,-25,51, 188 | 23,-51,51,22,-24,51,21,-23,52,21,-52,52,20,-22,53,20,-53,53,19,-21,1,73,-1,53,18,-20,2,73,-2,3,73,-3, 189 | 54,18,-54,54,17,-19,4,73,-4,5,73,-5,54,16,-18,6,73,-6,54,15,-17,7,73,-7,55,15,-55,8,73,-8,55,14, 190 | -16,9,73,-9,55,13,-15,10,73,-10,11,73,-11,55,12,-14,12,73,-12,55,73,-13,56,73,-56,56,72,-74,57,72,-57,57, 191 | 71,-73,57,70,-72,58,70,-58,58,69,-71,58,68,-70,59,68,-59,59,67,-69,59,66,-68,60,66,-60,60,65,-67,60,64,-66, 192 | 60,63,-65,61,63,-61,61,62,-64,137,136,-136,137,135,-135,138,137,-135,138,134,-134,139,138,-134,139,133,-133,140,139,-133,140,132, 193 | -132,141,140,-132,141,131,-131,142,141,-131,142,130,-130,143,142,-186,185,142,-130,143,185,-185,186,185,-130,143,184,-184,187,186,-130,143, 194 | 183,-183,188,187,-130,188,129,-129,143,182,-182,144,143,-182,189,188,-129,144,181,-181,190,189,-129,144,180,-180,191,190,-129,144,179,-179, 195 | 192,191,-129,145,144,-179,192,128,-128,145,178,-178,193,192,-128,145,177,-177,194,193,-128,146,145,-177,194,127,-127,146,176,-176,195,194, 196 | -127,146,175,-175,196,195,-127,147,146,-175,147,174,-174,196,126,-126,197,196,-126,147,173,-198,147,197,-126,148,147,-126,148,125,-125,149, 197 | 148,-124,123,148,-125,149,123,-123,150,149,-123,150,122,-122,150,121,-121,151,150,-121,151,120,-120,152,151,-120,152,119,-119,100,99,-173, 198 | 152,118,-118,101,100,-173,102,101,-173,153,152,-118,153,117,-117,103,102,-173,104,103,-173,153,116,-116,105,104,-173,153,115,-115,106,105, 199 | -173,154,153,-115,107,106,-173,154,114,-114,108,107,-173,154,113,-113,109,108,-173,110,109,-173,154,112,-112,111,110,-173,154,111,-173,155, 200 | 154,-173,155,172,-172,156,155,-172,156,171,-171,156,170,-170,157,156,-170,157,169,-169,157,168,-168,158,157,-168,158,167,-167,158,166,-166, 201 | 159,158,-166,159,165,-165,159,164,-164,159,163,-163,160,159,-163,160,162,-162,26,25,124,-126,13,12,111,-113,63,62,161,-163,67,66, 202 | 165,-167,15,14,113,-115,52,51,150,-152,30,29,128,-130,37,36,135,-137,50,49,148,-150,21,20,119,-121,91,90,189,-191,39,38, 203 | 137,-139,78,77,176,-178,23,22,121,-123,44,43,142,-144,81,80,179,-181,72,71,170,-172,5,4,103,-105,42,41,140,-142,32,31, 204 | 130,-132,35,34,133,-135,60,59,158,-160,7,6,105,-107,65,64,163,-165,19,18,117,-119,86,85,184,-186,58,57,156,-158,76,75, 205 | 174,-176,46,45,144,-146,12,11,110,-112,70,69,168,-170,3,2,101,-103,10,9,108,-110,89,88,187,-189,33,32,131,-133,62,61, 206 | 160,-162,17,16,115,-117,84,83,182,-184,95,94,193,-195,27,26,125,-127,48,47,146,-148,14,13,112,-114,53,52,151,-153,96,95, 207 | 194,-196,93,92,191,-193,68,67,166,-168,1,0,99,-101,38,37,136,-138,55,54,153,-155,98,97,196,-198,75,74,173,-175,64,63, 208 | 162,-164,22,21,120,-122,25,24,123,-125,16,15,114,-116,51,50,149,-151,40,39,138,-140,6,5,104,-106,29,28,127,-129,80,79, 209 | 178,-180,24,23,122,-124,43,42,141,-143,82,81,180,-182,31,30,129,-131,36,35,134,-136,73,72,171,-173,49,48,147,-149,34,33, 210 | 132,-134,59,58,157,-159,8,7,106,-108,79,78,177,-179,66,65,164,-166,0,73,172,-100,20,19,118,-120,11,10,109,-111,94,93, 211 | 192,-194,77,76,175,-177,18,17,116,-118,74,98,197,-174,41,40,139,-141,54,53,152,-154,88,87,186,-188,4,3,102,-104,87,86, 212 | 185,-187,90,89,188,-190,57,56,155,-157,2,1,100,-102,45,44,143,-145,85,84,183,-185,9,8,107,-109,97,96,195,-197,92,91, 213 | 190,-192,71,70,169,-171,28,27,126,-128,47,46,145,-147,83,82,181,-183,56,55,154,-156,61,60,159,-161,69,68,167,-169 214 | GeometryVersion: 124 215 | LayerElementNormal: 0 { 216 | Version: 101 217 | Name: "" 218 | MappingInformationType: "ByPolygonVertex" 219 | ReferenceInformationType: "Direct" 220 | Normals: 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 221 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 222 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 223 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 224 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 225 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 226 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 227 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 228 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 229 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 230 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 231 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 232 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 233 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 234 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 235 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 236 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 237 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 238 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 239 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 240 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 241 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 242 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 243 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 244 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 245 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 246 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 247 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 248 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 249 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 250 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 251 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 252 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 253 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 254 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 255 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 256 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 257 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 258 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 259 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 260 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 261 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 262 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 263 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 264 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 265 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 266 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 267 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 268 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 269 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 270 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 271 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 272 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 273 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 274 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 275 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 276 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 277 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 278 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 279 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 280 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 281 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 282 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 283 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 284 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 285 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 286 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 287 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 288 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 289 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 290 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 291 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 292 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 293 | 0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000, 294 | 0.000000,0.000000,1.000000,0.000005,-0.000087,-1.000000,0.000005,-0.000087,-1.000000,0.000005,-0.000087,-1.000000, 295 | 0.000005,0.000086,-1.000000,0.000005,0.000086,-1.000000,0.000005,0.000086,-1.000000,0.000000,0.000000,-1.000000, 296 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 297 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 298 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 299 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 300 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 301 | 0.000000,-0.000016,-1.000000,0.000000,-0.000016,-1.000000,0.000000,-0.000016,-1.000000,0.000001,-0.000001,-1.000000, 302 | 0.000001,-0.000001,-1.000000,0.000001,-0.000001,-1.000000,0.000001,0.000014,-1.000000,0.000001,0.000014,-1.000000, 303 | 0.000001,0.000014,-1.000000,0.000002,-0.000001,-1.000000,0.000002,-0.000001,-1.000000,0.000002,-0.000001,-1.000000, 304 | -0.000005,-0.000079,-1.000000,-0.000005,-0.000079,-1.000000,-0.000005,-0.000079,-1.000000,-0.000101,0.002361,-0.999997, 305 | -0.000101,0.002361,-0.999997,-0.000101,0.002361,-0.999997,0.000044,0.001093,-0.999999,0.000044,0.001093,-0.999999, 306 | 0.000044,0.001093,-0.999999,0.000007,-0.000168,-1.000000,0.000007,-0.000168,-1.000000,0.000007,-0.000168,-1.000000, 307 | -0.000006,-0.000149,-1.000000,-0.000006,-0.000149,-1.000000,-0.000006,-0.000149,-1.000000,0.000002,-0.000009,-1.000000, 308 | 0.000002,-0.000009,-1.000000,0.000002,-0.000009,-1.000000,-0.000003,-0.000008,-1.000000,-0.000003,-0.000008,-1.000000, 309 | -0.000003,-0.000008,-1.000000,-0.000003,-0.000001,-1.000000,-0.000003,-0.000001,-1.000000,-0.000003,-0.000001,-1.000000, 310 | 0.000002,0.000048,-1.000000,0.000002,0.000048,-1.000000,0.000002,0.000048,-1.000000,0.000000,0.000000,-1.000000, 311 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000012,0.000077,-1.000000,0.000012,0.000077,-1.000000, 312 | 0.000012,0.000077,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 313 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000, 314 | -0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 315 | 0.000000,0.000000,-1.000000,0.000001,-0.000031,-1.000000,0.000001,-0.000031,-1.000000,0.000001,-0.000031,-1.000000, 316 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000003,-0.000001,-1.000000, 317 | 0.000003,-0.000001,-1.000000,0.000003,-0.000001,-1.000000,0.000001,-0.000010,-1.000000,0.000001,-0.000010,-1.000000, 318 | 0.000001,-0.000010,-1.000000,-0.000002,0.000028,-1.000000,-0.000002,0.000028,-1.000000,-0.000002,0.000028,-1.000000, 319 | 0.000004,0.000002,-1.000000,0.000004,0.000002,-1.000000,0.000004,0.000002,-1.000000,-0.000000,0.000000,-1.000000, 320 | -0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000004,0.000002,-1.000000,0.000004,0.000002,-1.000000, 321 | 0.000004,0.000002,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 322 | 0.000003,0.000010,-1.000000,0.000003,0.000010,-1.000000,0.000003,0.000010,-1.000000,0.000000,0.000000,-1.000000, 323 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 324 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 325 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000, 326 | -0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 327 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 328 | -0.000008,-0.000019,-1.000000,-0.000008,-0.000019,-1.000000,-0.000008,-0.000019,-1.000000,0.000001,-0.000017,-1.000000, 329 | 0.000001,-0.000017,-1.000000,0.000001,-0.000017,-1.000000,0.000001,0.000018,-1.000000,0.000001,0.000018,-1.000000, 330 | 0.000001,0.000018,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000, 331 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000002,-0.000010,-1.000000, 332 | -0.000002,-0.000010,-1.000000,-0.000002,-0.000010,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 333 | 0.000000,0.000000,-1.000000,-0.000002,-0.000015,-1.000000,-0.000002,-0.000015,-1.000000,-0.000002,-0.000015,-1.000000, 334 | 0.000001,0.000010,-1.000000,0.000001,0.000010,-1.000000,0.000001,0.000010,-1.000000,-0.000000,0.000016,-1.000000, 335 | -0.000000,0.000016,-1.000000,-0.000000,0.000016,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 336 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 337 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000, 338 | -0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 339 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 340 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 341 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 342 | 0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000, 343 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 344 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 345 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 346 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 347 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 348 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 349 | -0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 350 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 351 | 0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000, 352 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 353 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 354 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 355 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 356 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 357 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 358 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 359 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000, 360 | 0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000, 361 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000029,-1.000000, 362 | -0.000000,-0.000029,-1.000000,-0.000000,-0.000029,-1.000000,-0.000002,0.000006,-1.000000,-0.000002,0.000006,-1.000000, 363 | -0.000002,0.000006,-1.000000,-0.000002,0.000007,-1.000000,-0.000002,0.000007,-1.000000,-0.000002,0.000007,-1.000000, 364 | -0.000002,0.000036,-1.000000,-0.000002,0.000036,-1.000000,-0.000002,0.000036,-1.000000,0.000000,0.000000,-1.000000, 365 | 0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000005,-0.000153,-1.000000,0.000005,-0.000153,-1.000000, 366 | 0.000005,-0.000153,-1.000000,0.000002,0.000152,-1.000000,0.000002,0.000152,-1.000000,0.000002,0.000152,-1.000000, 367 | -0.000002,-0.000161,-1.000000,-0.000002,-0.000161,-1.000000,-0.000002,-0.000161,-1.000000,-0.000024,0.000392,-1.000000, 368 | -0.000024,0.000392,-1.000000,-0.000024,0.000392,-1.000000,0.999226,0.039339,0.000000,0.999226,0.039339,0.000000, 369 | 0.999226,0.039339,0.000000,0.999226,0.039339,0.000000,0.046009,0.998941,0.000000,0.046009,0.998941,0.000000, 370 | 0.046009,0.998941,0.000000,0.046009,0.998941,0.000000,0.061266,-0.998122,0.000000,0.061266,-0.998122,0.000000, 371 | 0.061266,-0.998122,0.000000,0.061266,-0.998122,0.000000,0.266041,-0.963962,0.000000,0.266041,-0.963962,0.000000, 372 | 0.266041,-0.963962,0.000000,0.266041,-0.963962,0.000000,0.257837,0.966188,0.000000,0.257837,0.966188,0.000000, 373 | 0.257837,0.966188,0.000000,0.257837,0.966188,0.000000,-0.964185,-0.265231,0.000000,-0.964185,-0.265231,0.000000, 374 | -0.964185,-0.265231,0.000000,-0.964185,-0.265231,0.000000,0.891169,0.453671,0.000000,0.891169,0.453671,0.000000, 375 | 0.891169,0.453671,0.000000,0.891169,0.453671,0.000000,0.058504,0.998287,0.000000,0.058504,0.998287,0.000000, 376 | 0.058504,0.998287,0.000000,0.058504,0.998287,0.000000,-0.998622,-0.052470,0.000000,-0.998622,-0.052470,0.000000, 377 | -0.998622,-0.052470,0.000000,-0.998622,-0.052470,0.000000,0.873892,0.486120,0.000000,0.873892,0.486120,0.000000, 378 | 0.873892,0.486120,0.000000,0.873892,0.486120,0.000000,-0.565698,-0.824613,0.000000,-0.565698,-0.824613,0.000000, 379 | -0.565698,-0.824613,0.000000,-0.565698,-0.824613,0.000000,-0.191781,0.981438,0.000000,-0.191781,0.981438,0.000000, 380 | -0.191781,0.981438,0.000000,-0.191781,0.981438,0.000000,0.875753,-0.482759,0.000000,0.875753,-0.482759,0.000000, 381 | 0.875753,-0.482759,0.000000,0.875753,-0.482759,0.000000,0.958642,0.284615,0.000000,0.958642,0.284615,0.000000, 382 | 0.958642,0.284615,0.000000,0.958642,0.284615,0.000000,-0.779633,0.626237,0.000000,-0.779633,0.626237,0.000000, 383 | -0.779633,0.626237,0.000000,-0.779633,0.626237,0.000000,0.630293,-0.776358,0.000000,0.630293,-0.776358,0.000000, 384 | 0.630293,-0.776358,0.000000,0.630293,-0.776358,0.000000,0.506395,-0.862302,0.000000,0.506395,-0.862302,0.000000, 385 | 0.506395,-0.862302,0.000000,0.506395,-0.862302,0.000000,-0.400578,0.916263,0.000000,-0.400578,0.916263,0.000000, 386 | -0.400578,0.916263,0.000000,-0.400578,0.916263,0.000000,-0.574185,0.818726,0.000000,-0.574185,0.818726,0.000000, 387 | -0.574185,0.818726,0.000000,-0.574185,0.818726,0.000000,0.718785,0.695232,0.000000,0.718785,0.695232,0.000000, 388 | 0.718785,0.695232,0.000000,0.718785,0.695232,0.000000,0.322338,0.946625,0.000000,0.322338,0.946625,0.000000, 389 | 0.322338,0.946625,0.000000,0.322338,0.946625,0.000000,-0.212607,-0.977138,0.000000,-0.212607,-0.977138,0.000000, 390 | -0.212607,-0.977138,0.000000,-0.212607,-0.977138,0.000000,-0.311385,0.950284,0.000000,-0.311385,0.950284,0.000000, 391 | -0.311385,0.950284,0.000000,-0.311385,0.950284,0.000000,0.158135,-0.987418,0.000000,0.158135,-0.987418,0.000000, 392 | 0.158135,-0.987418,0.000000,0.158135,-0.987418,0.000000,0.717700,0.696352,0.000000,0.717700,0.696352,0.000000, 393 | 0.717700,0.696352,0.000000,0.717700,0.696352,0.000000,0.050320,-0.998733,0.000000,0.050320,-0.998733,0.000000, 394 | 0.050320,-0.998733,0.000000,0.050320,-0.998733,0.000000,-0.492641,-0.870232,0.000000,-0.492641,-0.870232,0.000000, 395 | -0.492641,-0.870232,0.000000,-0.492641,-0.870232,0.000000,0.956623,-0.291328,0.000000,0.956623,-0.291328,0.000000, 396 | 0.956623,-0.291328,0.000000,0.956623,-0.291328,0.000000,-0.917474,0.397796,0.000000,-0.917474,0.397796,0.000000, 397 | -0.917474,0.397796,0.000000,-0.917474,0.397796,0.000000,-0.030731,0.999528,0.000000,-0.030731,0.999528,0.000000, 398 | -0.030731,0.999528,0.000000,-0.030731,0.999528,0.000000,0.422471,-0.906376,0.000000,0.422471,-0.906376,0.000000, 399 | 0.422471,-0.906376,0.000000,0.422471,-0.906376,0.000000,-0.474526,0.880241,0.000000,-0.474526,0.880241,0.000000, 400 | -0.474526,0.880241,0.000000,-0.474526,0.880241,0.000000,-0.150724,0.988576,0.000000,-0.150724,0.988576,0.000000, 401 | -0.150724,0.988576,0.000000,-0.150724,0.988576,0.000000,-0.310258,-0.950652,0.000000,-0.310258,-0.950652,0.000000, 402 | -0.310258,-0.950652,0.000000,-0.310258,-0.950652,0.000000,0.598419,0.801183,0.000000,0.598419,0.801183,0.000000, 403 | 0.598419,0.801183,0.000000,0.598419,0.801183,0.000000,0.019248,-0.999815,0.000000,0.019248,-0.999815,0.000000, 404 | 0.019248,-0.999815,0.000000,0.019248,-0.999815,0.000000,0.497183,0.867646,0.000000,0.497183,0.867646,0.000000, 405 | 0.497183,0.867646,0.000000,0.497183,0.867646,0.000000,0.276002,-0.961157,0.000000,0.276002,-0.961157,0.000000, 406 | 0.276002,-0.961157,0.000000,0.276002,-0.961157,0.000000,-0.914356,-0.404911,0.000000,-0.914356,-0.404911,0.000000, 407 | -0.914356,-0.404911,0.000000,-0.914356,-0.404911,0.000000,0.991968,0.126486,0.000000,0.991968,0.126486,0.000000, 408 | 0.991968,0.126486,0.000000,0.991968,0.126486,0.000000,-0.986370,0.164542,0.000000,-0.986370,0.164542,0.000000, 409 | -0.986370,0.164542,0.000000,-0.986370,0.164542,0.000000,0.146696,0.989182,0.000000,0.146696,0.989182,0.000000, 410 | 0.146696,0.989182,0.000000,0.146696,0.989182,0.000000,-0.927713,-0.373294,0.000000,-0.927713,-0.373294,0.000000, 411 | -0.927713,-0.373294,0.000000,-0.927713,-0.373294,0.000000,-0.955789,-0.294053,0.000000,-0.955789,-0.294053,0.000000, 412 | -0.955789,-0.294053,0.000000,-0.955789,-0.294053,0.000000,-0.776825,-0.629717,0.000000,-0.776825,-0.629717,0.000000, 413 | -0.776825,-0.629717,0.000000,-0.776825,-0.629717,0.000000,0.320558,-0.947229,0.000000,0.320558,-0.947229,0.000000, 414 | 0.320558,-0.947229,0.000000,0.320558,-0.947229,0.000000,-0.534273,0.845312,0.000000,-0.534273,0.845312,0.000000, 415 | -0.534273,0.845312,0.000000,-0.534273,0.845312,0.000000,-0.062464,0.998047,0.000000,-0.062464,0.998047,0.000000, 416 | -0.062464,0.998047,0.000000,-0.062464,0.998047,0.000000,-0.807967,-0.589228,0.000000,-0.807967,-0.589228,0.000000, 417 | -0.807967,-0.589228,0.000000,-0.807967,-0.589228,0.000000,-0.995915,-0.090291,0.000000,-0.995915,-0.090291,0.000000, 418 | -0.995915,-0.090291,0.000000,-0.995915,-0.090291,0.000000,0.978513,-0.206187,0.000000,0.978513,-0.206187,0.000000, 419 | 0.978513,-0.206187,0.000000,0.978513,-0.206187,0.000000,0.107768,-0.994176,0.000000,0.107768,-0.994176,0.000000, 420 | 0.107768,-0.994176,0.000000,0.107768,-0.994176,0.000000,0.924157,0.382013,0.000000,0.924157,0.382013,0.000000, 421 | 0.924157,0.382013,0.000000,0.924157,0.382013,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000, 422 | 0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.376411,0.926453,0.000000,0.376411,0.926453,0.000000, 423 | 0.376411,0.926453,0.000000,0.376411,0.926453,0.000000,-0.987395,-0.158276,0.000000,-0.987395,-0.158276,0.000000, 424 | -0.987395,-0.158276,0.000000,-0.987395,-0.158276,0.000000,-0.323209,0.946328,0.000000,-0.323209,0.946328,0.000000, 425 | -0.323209,0.946328,0.000000,-0.323209,0.946328,0.000000,-0.357903,0.933759,0.000000,-0.357903,0.933759,0.000000, 426 | -0.357903,0.933759,0.000000,-0.357903,0.933759,0.000000,0.942234,0.334956,0.000000,0.942234,0.334956,0.000000, 427 | 0.942234,0.334956,0.000000,0.942234,0.334956,0.000000,0.729380,-0.684108,0.000000,0.729380,-0.684108,0.000000, 428 | 0.729380,-0.684108,0.000000,0.729380,-0.684108,0.000000,0.980587,0.196082,0.000000,0.980587,0.196082,0.000000, 429 | 0.980587,0.196082,0.000000,0.980587,0.196082,0.000000,-0.684469,0.729042,0.000000,-0.684469,0.729042,0.000000, 430 | -0.684469,0.729042,0.000000,-0.684469,0.729042,0.000000,0.517786,-0.855510,0.000000,0.517786,-0.855510,0.000000, 431 | 0.517786,-0.855510,0.000000,0.517786,-0.855510,0.000000,0.817210,0.576340,0.000000,0.817210,0.576340,0.000000, 432 | 0.817210,0.576340,0.000000,0.817210,0.576340,0.000000,0.185330,0.982676,0.000000,0.185330,0.982676,0.000000, 433 | 0.185330,0.982676,0.000000,0.185330,0.982676,0.000000,0.539949,-0.841698,0.000000,0.539949,-0.841698,0.000000, 434 | 0.539949,-0.841698,0.000000,0.539949,-0.841698,0.000000,-0.998579,0.053285,0.000000,-0.998579,0.053285,0.000000, 435 | -0.998579,0.053285,0.000000,-0.998579,0.053285,0.000000,0.463080,0.886316,0.000000,0.463080,0.886316,0.000000, 436 | 0.463080,0.886316,0.000000,0.463080,0.886316,0.000000,-0.356216,-0.934404,0.000000,-0.356216,-0.934404,0.000000, 437 | -0.356216,-0.934404,0.000000,-0.356216,-0.934404,0.000000,-0.261143,0.965300,0.000000,-0.261143,0.965300,0.000000, 438 | -0.261143,0.965300,0.000000,-0.261143,0.965300,0.000000,0.811513,-0.584335,0.000000,0.811513,-0.584335,0.000000, 439 | 0.811513,-0.584335,0.000000,0.811513,-0.584335,0.000000,0.211355,-0.977409,0.000000,0.211355,-0.977409,0.000000, 440 | 0.211355,-0.977409,0.000000,0.211355,-0.977409,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000, 441 | 1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.805302,0.592864,0.000000,0.805302,0.592864,0.000000, 442 | 0.805302,0.592864,0.000000,0.805302,0.592864,0.000000,-0.091574,0.995798,0.000000,-0.091574,0.995798,0.000000, 443 | -0.091574,0.995798,0.000000,-0.091574,0.995798,0.000000,-0.855218,-0.518268,0.000000,-0.855218,-0.518268,0.000000, 444 | -0.855218,-0.518268,0.000000,-0.855218,-0.518268,0.000000,0.923310,-0.384055,0.000000,0.923310,-0.384055,0.000000, 445 | 0.923310,-0.384055,0.000000,0.923310,-0.384055,0.000000,0.613271,0.789872,0.000000,0.613271,0.789872,0.000000, 446 | 0.613271,0.789872,0.000000,0.613271,0.789872,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000, 447 | 0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.452277,0.891878,0.000000,-0.452277,0.891878,0.000000, 448 | -0.452277,0.891878,0.000000,-0.452277,0.891878,0.000000,-0.876269,-0.481823,0.000000,-0.876269,-0.481823,0.000000, 449 | -0.876269,-0.481823,0.000000,-0.876269,-0.481823,0.000000,-0.181064,-0.983471,0.000000,-0.181064,-0.983471,0.000000, 450 | -0.181064,-0.983471,0.000000,-0.181064,-0.983471,0.000000,-0.439419,0.898282,0.000000,-0.439419,0.898282,0.000000, 451 | -0.439419,0.898282,0.000000,-0.439419,0.898282,0.000000,-0.057989,-0.998317,0.000000,-0.057989,-0.998317,0.000000, 452 | -0.057989,-0.998317,0.000000,-0.057989,-0.998317,0.000000,-0.440548,-0.897729,0.000000,-0.440548,-0.897729,0.000000, 453 | -0.440548,-0.897729,0.000000,-0.440548,-0.897729,0.000000,-0.615647,-0.788022,0.000000,-0.615647,-0.788022,0.000000, 454 | -0.615647,-0.788022,0.000000,-0.615647,-0.788022,0.000000,-0.506073,0.862490,0.000000,-0.506073,0.862490,0.000000, 455 | -0.506073,0.862490,0.000000,-0.506073,0.862490,0.000000,-0.857536,0.514423,0.000000,-0.857536,0.514423,0.000000, 456 | -0.857536,0.514423,0.000000,-0.857536,0.514423,0.000000,0.158924,-0.987291,0.000000,0.158924,-0.987291,0.000000, 457 | 0.158924,-0.987291,0.000000,0.158924,-0.987291,0.000000,-0.207446,0.978246,0.000000,-0.207446,0.978246,0.000000, 458 | -0.207446,0.978246,0.000000,-0.207446,0.978246,0.000000,-0.982046,-0.188641,0.000000,-0.982046,-0.188641,0.000000, 459 | -0.982046,-0.188641,0.000000,-0.982046,-0.188641,0.000000,-0.679434,-0.733736,0.000000,-0.679434,-0.733736,0.000000, 460 | -0.679434,-0.733736,0.000000,-0.679434,-0.733736,0.000000,0.467122,-0.884193,0.000000,0.467122,-0.884193,0.000000, 461 | 0.467122,-0.884193,0.000000,0.467122,-0.884193,0.000000,0.974326,0.225143,0.000000,0.974326,0.225143,0.000000, 462 | 0.974326,0.225143,0.000000,0.974326,0.225143,0.000000,-0.959959,0.280142,0.000000,-0.959959,0.280142,0.000000, 463 | -0.959959,0.280142,0.000000,-0.959959,0.280142,0.000000,0.397534,-0.917587,0.000000,0.397534,-0.917587,0.000000, 464 | 0.397534,-0.917587,0.000000,0.397534,-0.917587,0.000000,-0.721249,-0.692676,0.000000,-0.721249,-0.692676,0.000000, 465 | -0.721249,-0.692676,0.000000,-0.721249,-0.692676,0.000000,-0.069109,-0.997609,0.000000,-0.069109,-0.997609,0.000000, 466 | -0.069109,-0.997609,0.000000,-0.069109,-0.997609,0.000000,0.373215,-0.927745,0.000000,0.373215,-0.927745,0.000000, 467 | 0.373215,-0.927745,0.000000,0.373215,-0.927745,0.000000 468 | } 469 | LayerElementMaterial: 0 { 470 | Version: 101 471 | Name: "" 472 | MappingInformationType: "AllSame" 473 | ReferenceInformationType: "IndexToDirect" 474 | Materials: 0 475 | } 476 | Layer: 0 { 477 | Version: 100 478 | LayerElement: { 479 | Type: "LayerElementNormal" 480 | TypedIndex: 0 481 | } 482 | LayerElement: { 483 | Type: "LayerElementTexture" 484 | TypedIndex: 0 485 | } 486 | LayerElement: { 487 | Type: "LayerElementMaterial" 488 | TypedIndex: 0 489 | } 490 | } 491 | } 492 | Material: "Material::unnamed", "" { 493 | Version: 102 494 | ShadingModel: "phong" 495 | MultiLayer: 0 496 | Properties60: { 497 | Property: "ShadingModel", "KString", "", "Phong" 498 | Property: "MultiLayer", "bool", "",0 499 | Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000 500 | Property: "EmissiveFactor", "double", "",0.0000 501 | Property: "AmbientColor", "ColorRGB", "",1.0000,1.0000,1.0000 502 | Property: "AmbientFactor", "double", "",1.0000 503 | Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000 504 | Property: "DiffuseFactor", "double", "",0.8000 505 | Property: "Bump", "Vector3D", "",0,0,0 506 | Property: "TransparentColor", "ColorRGB", "",1,1,1 507 | Property: "TransparencyFactor", "double", "",0.0000 508 | Property: "SpecularColor", "ColorRGB", "",1.0000,1.0000,1.0000 509 | Property: "SpecularFactor", "double", "",0.5000 510 | Property: "ShininessExponent", "double", "",12.3 511 | Property: "ReflectionColor", "ColorRGB", "",0,0,0 512 | Property: "ReflectionFactor", "double", "",1 513 | Property: "Emissive", "ColorRGB", "",0,0,0 514 | Property: "Ambient", "ColorRGB", "",1.0,1.0,1.0 515 | Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8 516 | Property: "Specular", "ColorRGB", "",1.0,1.0,1.0 517 | Property: "Shininess", "double", "",12.3 518 | Property: "Opacity", "double", "",1.0 519 | Property: "Reflectivity", "double", "",0 520 | } 521 | } 522 | Pose: "Pose::BIND_POSES", "BindPose" { 523 | Type: "BindPose" 524 | Version: 100 525 | Properties60: { 526 | } 527 | NbPoseNodes: 1 528 | PoseNode: { 529 | Node: "Model::e" 530 | Matrix: 0.000000075497901,0.000000000000000,-1.000000000000000,0.000000000000000,-1.000000000000000,0.000000000000000,-0.000000075497901,0.000000000000000,0.000000000000000,1.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,0.000000000000000,1.000000000000000 531 | } 532 | } 533 | GlobalSettings: { 534 | Version: 1000 535 | Properties60: { 536 | Property: "UpAxis", "int", "",1 537 | Property: "UpAxisSign", "int", "",1 538 | Property: "FrontAxis", "int", "",2 539 | Property: "FrontAxisSign", "int", "",1 540 | Property: "CoordAxis", "int", "",0 541 | Property: "CoordAxisSign", "int", "",1 542 | Property: "UnitScaleFactor", "double", "",1 543 | } 544 | } 545 | } 546 | 547 | ; Objeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeect reeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeelations 548 | ;------------------------------------------------------------------ 549 | 550 | Relations: { 551 | Model: "Model::e", "Mesh" { 552 | } 553 | Model: "Model::Producer Perspective", "Camera" { 554 | } 555 | Model: "Model::Producer Top", "Camera" { 556 | } 557 | Model: "Model::Producer Bottom", "Camera" { 558 | } 559 | Model: "Model::Producer Front", "Camera" { 560 | } 561 | Model: "Model::Producer Back", "Camera" { 562 | } 563 | Model: "Model::Producer Right", "Camera" { 564 | } 565 | Model: "Model::Producer Left", "Camera" { 566 | } 567 | Model: "Model::Camera Switcher", "CameraSwitcher" { 568 | } 569 | Material: "Material::unnamed", "" { 570 | } 571 | } 572 | 573 | ; Objeeeeeeeeeeeeeeeeeeeeect conneeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeections 574 | ;------------------------------------------------------------------ 575 | 576 | Connections: { 577 | Connect: "OO", "Model::e", "Model::Scene" 578 | Connect: "OO", "Material::unnamed", "Model::e" 579 | } 580 | ;Takeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeees and animation seeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeection 581 | ;---------------------------------------------------- 582 | 583 | Takes: { 584 | Current: "" 585 | } 586 | ;Veeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeersion 5 seeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeettings 587 | ;------------------------------------------------------------------ 588 | 589 | Version5: { 590 | AmbientRenderSettings: { 591 | Version: 101 592 | AmbientLightColor: 0.0,0.0,0.0,0 593 | } 594 | FogOptions: { 595 | FogEnable: 0 596 | FogMode: 0 597 | FogDensity: 0.000 598 | FogStart: 5.000 599 | FogEnd: 25.000 600 | FogColor: 0.1,0.1,0.1,1 601 | } 602 | Settings: { 603 | FrameRate: "24" 604 | TimeFormat: 1 605 | SnapOnFrames: 0 606 | ReferenceTimeIndex: -1 607 | TimeLineStartTime: 0 608 | TimeLineStopTime: 479181389250 609 | } 610 | RendererSetting: { 611 | DefaultCamera: "Producer Perspective" 612 | DefaultViewingMode: 0 613 | } 614 | } 615 | -------------------------------------------------------------------------------- /e.flutter.dart: -------------------------------------------------------------------------------- 1 | import 'package:flutter/material.dart'; 2 | 3 | void main() => runApp(E()); 4 | 5 | class E extends StatelessWidget { 6 | @override 7 | Widget build(BuildContext context) { 8 | return MaterialApp( 9 | home: Center( 10 | child: Text( 11 | 'E', 12 | textScaleFactor: 5.0, 13 | ), 14 | ), 15 | ); 16 | } 17 | } 18 | -------------------------------------------------------------------------------- /e.fs: -------------------------------------------------------------------------------- 1 | : E 1 0 DO ." e" 0 +LOOP ; 2 | E ; 3 | -------------------------------------------------------------------------------- /e.fsharp.fs: -------------------------------------------------------------------------------- 1 | [] 2 | let e ee = 3 | while 'e' = 'e' do 4 | printf "e" 5 | int 'e' 6 | -------------------------------------------------------------------------------- /e.g4: -------------------------------------------------------------------------------- 1 | grammar e; 2 | 3 | e: 'e'+; 4 | -------------------------------------------------------------------------------- /e.gb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/dc7c259cbadabd5ea49d96eaa0d1e1503ddb8a91/e.gb -------------------------------------------------------------------------------- /e.go: -------------------------------------------------------------------------------- 1 | package main 2 | 3 | func main() { 4 | for { 5 | print("e") 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /e.groovy: -------------------------------------------------------------------------------- 1 | while(true) { 2 | println "e" 3 | } 4 | -------------------------------------------------------------------------------- /e.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/dc7c259cbadabd5ea49d96eaa0d1e1503ddb8a91/e.gz -------------------------------------------------------------------------------- /e.hc: -------------------------------------------------------------------------------- 1 | while(1) Print("e"); 2 | -------------------------------------------------------------------------------- /e.hh: -------------------------------------------------------------------------------- 1 | > 4 | function main(): void { 5 | while(true) { 6 | echo 'e'; 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /e.hs: -------------------------------------------------------------------------------- 1 | main = putStr $ cycle "e" 2 | 3 | -------------------------------------------------------------------------------- /e.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | e 6 | 11 | 12 | 13 | 14 |

e

15 | 16 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /e.html.erb: -------------------------------------------------------------------------------- 1 | <% while "e" do %> 2 | e 3 | <% end %> 4 | -------------------------------------------------------------------------------- /e.idr: -------------------------------------------------------------------------------- 1 | e : IO () 2 | e = do 3 | putChar 'e' 4 | e 5 | 6 | ee : IO () 7 | ee = do 8 | disableBuffering 9 | e 10 | 11 | main : IO () 12 | main = ee 13 | -------------------------------------------------------------------------------- /e.ijs: -------------------------------------------------------------------------------- 1 | 'e' 1!:2(2) 2 | -------------------------------------------------------------------------------- /e.il: -------------------------------------------------------------------------------- 1 | .class private auto ansi beforefieldinit eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee 2 | extends [mscorlib]System.Object 3 | { 4 | .method private hidebysig static 5 | void Main ( 6 | string[] args 7 | ) cil managed 8 | { 9 | .maxstack 1 10 | .entrypoint 11 | .locals init ( 12 | [0] bool 13 | ) 14 | 15 | IL_0000: nop 16 | IL_0001: br.s IL_000B 17 | // (char)101 == 'e' 18 | IL_0003: ldc.i4.s 101 19 | IL_0005: call void [mscorlib]System.Console::Write(char) 20 | IL_000A: nop 21 | IL_000B: ldc.i4.1 22 | IL_000C: stloc.0 23 | IL_000D: br.s IL_0003 24 | } 25 | 26 | .method public hidebysig specialname rtspecialname 27 | instance void .ctor () cil managed 28 | { 29 | .maxstack 8 30 | 31 | IL_0000: ldarg.0 32 | IL_0001: call instance void [mscorlib]System.Object::.ctor() 33 | IL_0006: nop 34 | IL_0007: ret 35 | } 36 | } 37 | -------------------------------------------------------------------------------- /e.ino: -------------------------------------------------------------------------------- 1 | #define e 'e' 2 | #define eee uint32_t(e-e/e) 3 | void setup(){ 4 | Serial.begin(eee*eee*eee); 5 | while(!Serial); 6 | } 7 | void loop(){ 8 | Serial.print(e); 9 | delay(e); 10 | } 11 | -------------------------------------------------------------------------------- /e.inverted: -------------------------------------------------------------------------------- 1 | Ə 2 | -------------------------------------------------------------------------------- /e.io: -------------------------------------------------------------------------------- 1 | loop("e" print) 2 | -------------------------------------------------------------------------------- /e.java: -------------------------------------------------------------------------------- 1 | public class e { 2 | 3 | public static void main(String[] e) { 4 | while("e".equals("e")) { 5 | System.out.print("e"); 6 | } 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /e.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/dc7c259cbadabd5ea49d96eaa0d1e1503ddb8a91/e.jpg -------------------------------------------------------------------------------- /e.js: -------------------------------------------------------------------------------- 1 | while ('e') console.log('e'); 2 | -------------------------------------------------------------------------------- /e.jsfuck.js: -------------------------------------------------------------------------------- 1 | [][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]][([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]]((+(!+[]+!+[]+!+[]+[!+[]+!+[]]))[(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(+![]+([]+[])[([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([![]]+[][[]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(+![]+[![]]+([]+[])[([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]])[!+[]+!+[]+[+[]]]](!+[]+!+[]+!+[]+[!+[]+!+[]+!+[]])+(+(+!+[]+[+[]]+[+!+[]]))[(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(+![]+([]+[])[([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([![]]+[][[]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(+![]+[![]]+([]+[])[([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]])[!+[]+!+[]+[+[]]]](!+[]+!+[]+[+!+[]])[+!+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[!+[]+!+[]+[+[]]]+[!![]]+[]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[!+[]+!+[]+[+[]]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(+(+!+[]+[+!+[]]+(!![]+[])[!+[]+!+[]+!+[]]+[!+[]+!+[]]+[+[]])+[])[+!+[]]+(![]+[])[!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(+![]+[![]]+([]+[])[([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]])[!+[]+!+[]+[+[]]]+(![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[!+[]+!+[]+[+[]]]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]][([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]]((!![]+[])[+!+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+([][[]]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+!+[]]+(+[![]]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+!+[]]]+([][[]]+[])[+[]]+([][[]]+[])[+!+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(![]+[])[+!+[]]+(+(!+[]+!+[]+[+!+[]]+[+!+[]]))[(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(+![]+([]+[])[([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([![]]+[][[]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(+![]+[![]]+([]+[])[([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]])[!+[]+!+[]+[+[]]]](!+[]+!+[]+!+[]+[+!+[]])[+!+[]]+(!![]+[])[!+[]+!+[]+!+[]])()([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]][([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]]((!![]+[])[+!+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+([][[]]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+!+[]]+(+[![]]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+!+[]]]+(!![]+[])[!+[]+!+[]+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(![]+[])[+!+[]]+(+(!+[]+!+[]+[+!+[]]+[+!+[]]))[(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(+![]+([]+[])[([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([![]]+[][[]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(+![]+[![]]+([]+[])[([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]])[!+[]+!+[]+[+[]]]](!+[]+!+[]+!+[]+[+!+[]])[+!+[]]+(!![]+[])[!+[]+!+[]+!+[]])()(([]+[])[([![]]+[][[]])[+!+[]+[+[]]]+(!![]+[])[+[]]+(![]+[])[+!+[]]+(![]+[])[!+[]+!+[]]+([![]]+[][[]])[+!+[]+[+[]]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(![]+[])[!+[]+!+[]+!+[]]]()[+[]])[+[]]+(!+[]+!+[]+[!+[]+!+[]+!+[]+!+[]+!+[]+!+[]+!+[]])+[])+(!![]+[])[!+[]+!+[]+!+[]]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]][([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]]((!![]+[])[+!+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+([][[]]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+!+[]]+(+[![]]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+!+[]]]+([][[]]+[])[+[]]+([][[]]+[])[+!+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(![]+[])[+!+[]]+(+(!+[]+!+[]+[+!+[]]+[+!+[]]))[(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(+![]+([]+[])[([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([![]]+[][[]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(+![]+[![]]+([]+[])[([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]])[!+[]+!+[]+[+[]]]](!+[]+!+[]+!+[]+[+!+[]])[+!+[]]+(!![]+[])[!+[]+!+[]+!+[]])()([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]][([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]]((!![]+[])[+!+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+([][[]]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+!+[]]+(+[![]]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+!+[]]]+(!![]+[])[!+[]+!+[]+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(![]+[])[+!+[]]+(+(!+[]+!+[]+[+!+[]]+[+!+[]]))[(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(+![]+([]+[])[([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([![]]+[][[]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(+![]+[![]]+([]+[])[([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+([][[]]+[])[+!+[]]+(![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[+!+[]]+([][[]]+[])[+[]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[+!+[]+[+[]]]+(!![]+[])[+!+[]]])[!+[]+!+[]+[+[]]]](!+[]+!+[]+!+[]+[+!+[]])[+!+[]]+(!![]+[])[!+[]+!+[]+!+[]])()(([]+[])[([![]]+[][[]])[+!+[]+[+[]]]+(!![]+[])[+[]]+(![]+[])[+!+[]]+(![]+[])[!+[]+!+[]]+([![]]+[][[]])[+!+[]+[+[]]]+([][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]]+[])[!+[]+!+[]+!+[]]+(![]+[])[!+[]+!+[]+!+[]]]()[+[]])[+[]]+(!+[]+!+[]+[!+[]+!+[]+!+[]+!+[]+!+[]+!+[]+!+[]])+[])+(!![]+[][(![]+[])[+[]]+([![]]+[][[]])[+!+[]+[+[]]]+(![]+[])[!+[]+!+[]]+(!![]+[])[+[]]+(!![]+[])[!+[]+!+[]+!+[]]+(!![]+[])[+!+[]]])[!+[]+!+[]+[+[]]])() 2 | -------------------------------------------------------------------------------- /e.json: -------------------------------------------------------------------------------- 1 | { 2 | "e": "e" 3 | } -------------------------------------------------------------------------------- /e.jsx: -------------------------------------------------------------------------------- 1 | import React, { Component } from 'react'; 2 | 3 | class E extends Component { 4 | constructor(props) { 5 | super(props); 6 | 7 | this.state = { 8 | e: 0, 9 | }; 10 | 11 | this.timer = this.timer.bind(this); 12 | } 13 | 14 | componentDidMount() { 15 | const eId = setInterval(this.timer, 10); 16 | this.setState({ eInterval: eId }); 17 | } 18 | 19 | componentWillUnmount() { 20 | clearInterval(this.state.eInterval); 21 | } 22 | 23 | timer() { 24 | this.setState({ e: this.state.e + 1 }); 25 | } 26 | 27 | render() { 28 | const e = Array(this.state.e).fill(

e

); 29 | return e; 30 | } 31 | } 32 | 33 | export default E; 34 | -------------------------------------------------------------------------------- /e.kt: -------------------------------------------------------------------------------- 1 | fun main() { 2 | while (true) { 3 | print("e") 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /e.linux.arm.S: -------------------------------------------------------------------------------- 1 | #define SYS_write 4 2 | #define STDOUT 1 3 | #define PIPE_SIZE 0x10000 4 | 5 | .arm 6 | .align 4 7 | 8 | .section .text, "ax", %progbits 9 | 10 | type _start, %function 11 | globl _start 12 | _start: 13 | mov r1, #PIPE_SIZE 14 | 15 | ldr r3, =('e'|('e'<<8)|('e'<<16)|('e'<<24)) 16 | mov r4, r3 17 | mov r5, r3 18 | mov r6, r3 19 | 20 | .Lloop: 21 | push {r3-r6} 22 | sub r1, #(4*4) 23 | cmp r1, #0 24 | bgt .Lloop 25 | 26 | mov r7, #SYS_write 27 | mov r1, sp 28 | mov r2, #PIPE_SIZE 29 | 30 | .Lcall: 31 | mov r0, #STDIN 32 | swi #0 33 | b .Lcall 34 | 35 | .align 4 36 | .pool 37 | -------------------------------------------------------------------------------- /e.lisp: -------------------------------------------------------------------------------- 1 | (loop (print "e")) 2 | -------------------------------------------------------------------------------- /e.lol: -------------------------------------------------------------------------------- 1 | HAI 1.2 2 | CAN HAS STDIO? 3 | 4 | IM IN YR nonStopE BTW this loop is infinite 5 | 6 | BOTH SAEM "e" AN "e", O RLY? 7 | YA RLY 8 | VISIBLE "e" 9 | NO WAI 10 | VISIBLE "impossible bruh" 11 | OIC 12 | 13 | IM OUTTA YR nonStopE 14 | 15 | KTHXBYE 16 | -------------------------------------------------------------------------------- /e.lua: -------------------------------------------------------------------------------- 1 | while e==e do 2 | print('e') 3 | end 4 | -------------------------------------------------------------------------------- /e.m: -------------------------------------------------------------------------------- 1 | while 1 2 | printf('e'); 3 | end 4 | -------------------------------------------------------------------------------- /e.mbr.asm: -------------------------------------------------------------------------------- 1 | bits 16 2 | org 0x7C00 3 | 4 | _start: 5 | ; enable cursor 6 | xor cx, cx 7 | mov ch, 00100000b 8 | mov ah, 1 9 | int 0x10 10 | 11 | ; move cursor to top 12 | xor dx, dx 13 | xor bx, bx 14 | inc ah 15 | int 0x10 16 | 17 | ; print 1 char 18 | mov ax, 'e'|(0x0E<<8) 19 | .loop: 20 | int 0x10 21 | jmp short .loop 22 | 23 | END: 24 | times 0x200-2-(END-_start) db 'e' 25 | db 0x55,0xAA 26 | 27 | stack: 28 | 29 | %if END-_org > 0x200-2 30 | %error "Not enough space!" 31 | %endif 32 | -------------------------------------------------------------------------------- /e.mc: -------------------------------------------------------------------------------- 1 | Lei ha clacsonato 2 | voglio Linux, Necchi come se fosse 2 3 | voglio Bernarda, Necchi come se fosse 1 4 | voglio testate, Mascetti come se fosse 101 5 | stuzzica bituma, che se continui ti arrivano 6 | testate a posterdati 7 | e brematura anche, se Linux maggiore di Bernarda 8 | 9 | voglio pazzofurioso, Necchi come se fosse 0 10 | vaffanzum pazzofurioso! 11 | -------------------------------------------------------------------------------- /e.md: -------------------------------------------------------------------------------- 1 | # eeeeeeeeeeeeee eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee eee eeeeeeeeeeeeeeeeeeeee 2 | - ## eeeeeee 3 | > eeeeeeeeeeee ee eeeeeeeee eeeeeeeeeeeeee *_*eeeeeeeeeeeeeeeeeeee eeeeeee eeee eeeeeeeeeeeeeeeeeeee eee eeeeeeeeee*_* eeeee eeeeeeeeee 4 | eeeee eeeee eeeeeeeeeeeeeeee eeeeeeeeeeeee e eeeeeeeeeeee 5 | - ## eeeeeeeeee e 6 | 7 | | eeee |eeeeeeeee e eee| 8 | | :----: | :----------: | 9 | | e | e eeee e eeeeeeeeee eee| 10 | |ee eeeeeeeeee e | ee e eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee | 11 | 12 | - ## ee eeeeeeee eee 13 | [eeeeeeeeeeeeeeee eee eeeeeeeeeeeeeeeeeeeeee e eeeeee](http://e.ee) 14 | -------------------------------------------------------------------------------- /e.ml: -------------------------------------------------------------------------------- 1 | let rec eee e = Printf.printf "e"; eee ();; 2 | let () = eee ();; -------------------------------------------------------------------------------- /e.nim: -------------------------------------------------------------------------------- 1 | while true: echo 'e' 2 | -------------------------------------------------------------------------------- /e.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/dc7c259cbadabd5ea49d96eaa0d1e1503ddb8a91/e.odt -------------------------------------------------------------------------------- /e.pas: -------------------------------------------------------------------------------- 1 | program e; 2 | 3 | var 4 | e:integer; 5 | begin 6 | e := 1; 7 | while true do 8 | begin 9 | writeln('e'); 10 | end; 11 | end. 12 | -------------------------------------------------------------------------------- /e.pde: -------------------------------------------------------------------------------- 1 | while(true) { 2 | print("e"); 3 | } 4 | -------------------------------------------------------------------------------- /e.php: -------------------------------------------------------------------------------- 1 | Paste into Golly, then hit Enter/Return to start 3 | #C Golly can be downloaded from https://golly.sourceforge.net 4 | #C 5 | #C Created with PM_2Ring's script at http://www.conwaylife.com/forums/viewtopic.php?f=9&t=45&start=25#p1342 6 | #C (then fixed by hand because i accidentally fed the script an uppercase E) 7 | #C 8 | #C eeee 9 | 10 | x = 228, y = 235, rule = B3/S23 11 | 42b2o$42bo$31bo8bobo$29bobo8b2o$20bo7bobo$19b2o6bo2bo$8b2o8b2o4b2o2bob 12 | o$8b2o7b3o4b2o3bobo10b2o12b2o$18b2o4b2o5bo10bo13b2o$19b2o19bobo$20bo 13 | 19b2o$32bo$33bo$31b3o2$56bo$27b3o25b3o59b2o$29bo24b5o58bo$28bo24bobobo 14 | bo46bo8bobo$32b2o19b2o3b2o44bobo8b2o$32b2o61bo7bobo$o6bo86b2o6bo2bo$3o 15 | 4b3o46bo26b2o8b2o4b2o2bobo$3bo6bo9b2o33bobo25b2o7b3o4b2o3bobo10b2o12b 16 | 2o$2b2o5b2o8bobo33bob2o34b2o4b2o5bo10bo13b2o$21bo34b3o35b2o19bobo$47bo 17 | 8bo2bo35bo19b2o$48bo8b3o47bo$46b3o7bo3bo47bo$55bo5bo44b3o$50bo5bo3bo$ 18 | 12b3o4b2o22b2o4bo7b3o71bo$4b3o7bo4b2o22b2o4b3o50b3o25b3o59b2o$3bo3bo5b 19 | o90bo24b5o58bo$2bo5bo94bo24bobobobo46bo8bobo$3bo3bo99b2o19b2o3b2o44bob 20 | o8b2o$4b3o100b2o61bo7bobo$4bo2bo67bo6bo86b2o6bo2bo$5b3o67b3o4b3o46bo 21 | 26b2o8b2o4b2o2bobo$5b2obo44b2o5b2o16bo6bo9b2o33bobo25b2o7b3o4b2o3bobo 22 | 10b2o12b2o$6bobo44bo6bo16b2o5b2o8bobo33bob2o34b2o4b2o5bo10bo13b2o$7bo 23 | 46b3o4b3o32bo34b3o35b2o19bobo$23b2o31bo6bo67bo2bo35bo19b2o$23bobo4b2o 24 | 100b3o47bo$4b2o3b2o12bo6b2o99bo3bo47bo$4bobobobo119bo5bo44b3o$5b5o115b 25 | o5bo3bo$6b3o78b3o4b2o22b2o4bo7b3o71bo$7bo71b3o7bo4b2o22b2o4b3o78b3o$ 26 | 78bo3bo5bo115b5o$30b3o44bo5bo119bobobobo$30bo47bo3bo7b3o89b2o19b2o3b2o 27 | $31bo47b3o8bo91b2o$43bo35bo2bo8bo58bo6bo$43b2o35b3o67b3o4b3o46bo$6b2o 28 | 24bo5b2o4b2o34b2obo44b2o5b2o16bo6bo44bobo$6b2o24bobo3b2o4b3o7b2o25bobo 29 | 44bo6bo16b2o5b2o44bob2o$33bobo2b2o4b2o8b2o26bo46b3o4b3o67b3o$33bo2bo6b 30 | 2o86bo6bo67bo2bo$17bo15bobo7bo61b2o100b3o$15b2o5b2o8bobo44b2o3b2o19b2o 31 | 99bo3bo$16b2o3bobo8bo46bobobobo24bo94bo5bo$21bo58b5o24bo90bo5bo3bo$20b 32 | 2o59b3o25b3o50b3o4b2o22b2o4bo7b3o$37bobo42bo71b3o7bo4b2o22b2o4b3o$37bo 33 | 2bo112bo3bo5bo$22bo6bo10b2o63b3o44bo5bo$8bobo10bobo5bo8bo3b2o7bo53bo 34 | 47bo3bo7b3o$8b2o10bob2o6bo9b2o7bobo46bobo5bo47b3o8bo$9bo4b2o3b2ob2o9b 35 | 2o2bo2bo7bobo17bo29b2o18bo35bo2bo8bo$14b2o4bob2o5b3o2bo2bobo7bo2bo16b 36 | 2o30bo18b2o35b3o$21bobo7b4o13bobo15b2o4b2o7b2o24bo5b2o4b2o34b2obo44b2o 37 | 5b2o$22bo9b2o15bobo13b3o4b2o2b2o3b2o24bobo3b2o4b3o7b2o25bobo44bo6bo$ 38 | 51bo4bobo7b2o4b2o2b2o30bobo2b2o4b2o8b2o26bo46b3o4b3o$2bo53b2o9b2o39bo 39 | 2bo6b2o53b2o31bo6bo$2o55bo10bo39bobo7bo54bobo4b2o$b2o37bo56b2o8bobo44b 40 | 2o3b2o12bo6b2o$41b2o53bobo8bo46bobobobo$40b2o54bo58b5o$95b2o59b3o$50bo 41 | 61bobo42bo$48b2o62bo2bo$49b2o46bo6bo10b2o63b3o$6bo2bo26bo2bo43bobo10bo 42 | bo5bo8bo3b2o7bo53bo$5bo14b4o11bo47b2o10bob2o6bo9b2o7bobo54bo$5bo3bo10b 43 | o3bo10bo3bo44bo4b2o3b2ob2o9b2o2bo2bo7bobo17bo49bo$5b4o11bo14b4o50b2o4b 44 | ob2o5b3o2bo2bobo7bo2bo16b2o49b2o$21bo2bo71bobo7b4o13bobo15b2o4b2o7b2o 45 | 24bo5b2o4b2o$56b2o39bo9b2o15bobo13b3o4b2o2b2o3b2o24bobo3b2o4b3o7b2o$ 46 | 44b3o2bo5bo3bo66bo4bobo7b2o4b2o2b2o30bobo2b2o4b2o8b2o$40bo3bo9bo5bo3b 47 | 2o11bo53b2o9b2o39bo2bo6b2o$38bobo4bo8bo3bob2o2b2o9b2o55bo10bo39bobo7bo 48 | $30b2o4b2o16bo5bo15b2o37bo56b2o8bobo$30b2o4b2o17bo3bo56b2o53bobo8bo$ 49 | 36b2o18b2o57b2o54bo$38bobo129b2o$40bo84bo61bobo$123b2o62bo2bo$124b2o 50 | 46bo6bo10b2o$81bo2bo26bo2bo56bobo5bo8bo3b2o7bo$35b4o41bo14b4o11bo59bob 51 | 2o6bo9b2o7bobo$35bo3bo40bo3bo10bo3bo10bo3bo49b2o3b2ob2o9b2o2bo2bo7bobo 52 | 17bo$35bo44b4o11bo14b4o50b2o4bob2o5b3o2bo2bobo7bo2bo16b2o$36bo2bo56bo 53 | 2bo71bobo7b4o13bobo15b2o4b2o$131b2o39bo9b2o15bobo13b3o4b2o2b2o$119b3o 54 | 2bo5bo3bo66bo4bobo7b2o4b2o2b2o$115bo3bo9bo5bo3b2o65b2o9b2o$113bobo4bo 55 | 8bo3bob2o2b2o66bo10bo$105b2o4b2o16bo5bo54bo$105b2o4b2o17bo3bo56b2o$ 56 | 111b2o18b2o57b2o$113bobo$115bo84bo$198b2o$199b2o$36bo2bo26bo2bo26bo2bo 57 | 56bo2bo26bo2bo$35bo14b4o11bo14b4o11bo14b4o41bo14b4o11bo$35bo3bo10bo3bo 58 | 10bo3bo10bo3bo10bo3bo10bo3bo40bo3bo10bo3bo10bo3bo$35b4o11bo14b4o11bo 59 | 14b4o11bo44b4o11bo14b4o$51bo2bo26bo2bo26bo2bo56bo2bo$206b2o$194b3o2bo 60 | 5bo3bo$130bo59bo3bo9bo5bo3b2o$128bobo57bobo4bo8bo3bob2o2b2o$126b2o18b 61 | 2o32b2o4b2o16bo5bo$120b2o4b2o17bo3bo30b2o4b2o17bo3bo$120b2o4b2o16bo5bo 62 | 35b2o18b2o$128bobo4bo8bo3bob2o2b2o32bobo$130bo3bo9bo5bo3b2o34bo$134b3o 63 | 2bo5bo3bo$146b2o$111bo2bo$35b4o56b4o11bo14b4o$35bo3bo55bo3bo10bo3bo10b 64 | o3bo$35bo59bo14b4o11bo$36bo2bo56bo2bo26bo2bo$139b2o$138b2o$55bo84bo$ 65 | 53bobo$51b2o18b2o57b2o$45b2o4b2o17bo3bo56b2o$45b2o4b2o16bo5bo15b2o37bo 66 | $53bobo4bo8bo3bob2o2b2o9b2o55bo10bo$55bo3bo9bo5bo3b2o11bo53b2o9b2o$59b 67 | 3o2bo5bo3bo66bo4bobo7b2o4b2o2b2o$71b2o39bo9b2o15bobo13b3o4b2o2b2o$36bo 68 | 2bo71bobo7b4o13bobo15b2o4b2o$20b4o11bo14b4o50b2o4bob2o5b3o2bo2bobo7bo 69 | 2bo16b2o$20bo3bo10bo3bo10bo3bo44bo4b2o3b2ob2o9b2o2bo2bo7bobo17bo$20bo 70 | 14b4o11bo47b2o10bob2o6bo9b2o7bobo$21bo2bo26bo2bo43bobo10bobo5bo8bo3b2o 71 | 7bo$64b2o46bo6bo10b2o$63b2o62bo2bo$65bo61bobo$110b2o$55b2o54bo$56b2o 72 | 48b2o3bobo8bo$16b2o37bo49b2o5b2o8bobo$15b2o55bo10bo23bo15bobo7bo$17bo 73 | 53b2o9b2o39bo2bo6b2o$66bo4bobo7b2o4b2o2b2o30bobo2b2o4b2o8b2o$37bo9b2o 74 | 15bobo13b3o4b2o2b2o3b2o24bobo3b2o4b3o7b2o$36bobo7b4o13bobo15b2o4b2o7b 75 | 2o24bo5b2o4b2o$29b2o4bob2o5b3o2bo2bobo7bo2bo16b2o30bo18b2o$24bo4b2o3b 76 | 2ob2o9b2o2bo2bo7bobo17bo29b2o18bo$23b2o10bob2o6bo9b2o7bobo46bobo5bo$ 77 | 23bobo10bobo5bo8bo3b2o7bo53bo$37bo6bo10b2o63b3o$52bo2bo$52bobo42bo$35b 78 | 2o59b3o$36bo58b5o$36bobo8bo46bobobobo$37b2o8bobo44b2o3b2o19b2o$48bobo 79 | 7bo61b2o$48bo2bo6b2o86bo6bo$48bobo2b2o4b2o8b2o26bo46b3o4b3o$21b2o24bob 80 | o3b2o4b3o7b2o25bobo33b2o9bo6bo$21b2o24bo5b2o4b2o34b2obo33bobo8b2o5b2o$ 81 | 58b2o35b3o34bo$58bo35bo2bo$46bo47b3o$45bo47bo3bo$45b3o44bo5bo$93bo3bo 82 | 5bo$22bo71b3o7bo4b2o22b2o4b3o$21b3o78b3o4b2o22b2o4bo7b3o$20b5o115bo5bo 83 | 3bo$19bobobobo119bo5bo$19b2o3b2o12bo6b2o99bo3bo$38bobo4b2o100b3o$38b2o 84 | 31bo6bo67bo2bo$22bo46b3o4b3o32bo34b3o$21bobo44bo6bo16b2o5b2o8bobo33bob 85 | 2o$20b2obo44b2o5b2o16bo6bo9b2o33bobo$20b3o67b3o4b3o46bo$19bo2bo8bo58bo 86 | 6bo$19b3o8bo91b2o$18bo3bo7b3o89b2o19b2o3b2o$17bo5bo94bo24bobobobo$18bo 87 | 3bo5bo90bo24b5o$19b3o7bo4b2o22b2o4b3o50b3o25b3o$27b3o4b2o22b2o4bo7b3o 88 | 71bo$65bo5bo3bo$70bo5bo44b3o$61b3o7bo3bo47bo$63bo8b3o47bo$62bo8bo2bo 89 | 35bo19b2o$36bo34b3o35b2o19bobo$17b2o5b2o8bobo33bob2o34b2o4b2o5bo10bo 90 | 13b2o$18bo6bo9b2o33bobo25b2o7b3o4b2o3bobo10b2o12b2o$15b3o4b3o46bo26b2o 91 | 8b2o4b2o2bobo$15bo6bo86b2o6bo2bo$47b2o61bo7bobo$47b2o19b2o3b2o44bobo8b 92 | 2o$43bo24bobobobo46bo8bobo$44bo24b5o58bo$42b3o25b3o59b2o$71bo2$46b3o$ 93 | 48bo$47bo$35bo19b2o$34b2o19bobo$33b2o4b2o5bo10bo13b2o$23b2o7b3o4b2o3bo 94 | bo10b2o12b2o$23b2o8b2o4b2o2bobo$34b2o6bo2bo$35bo7bobo$44bobo8b2o$46bo 95 | 8bobo$57bo$57b2o! 96 | -------------------------------------------------------------------------------- /e.rs: -------------------------------------------------------------------------------- 1 | #![feature(main)] 2 | #[cfg(feature = "functional")] 3 | #[main] 4 | fn e() { 5 | std::iter::repeat('e').for_each(|e| print!("{}", e)); 6 | } 7 | 8 | #[cfg(not(feature = "functional"))] 9 | #[main] 10 | fn e() -> ! { 11 | loop { 12 | print!("e"); 13 | } 14 | } 15 | 16 | #[cfg(test)] 17 | mod tests { 18 | use super::*; 19 | 20 | #[test] 21 | fn teeeeest() { 22 | e(); 23 | unreachable!("eeeeeeeeee?????"); 24 | } 25 | } 26 | 27 | -------------------------------------------------------------------------------- /e.s: -------------------------------------------------------------------------------- 1 | .globl _start 2 | 3 | .text 4 | _start: 5 | movq $1, %rax 6 | movq $1, %rdi 7 | movq $e, %rsi 8 | movq $e_len, %rdx 9 | syscall 10 | jmp _start 11 | 12 | .data 13 | e: 14 | .ascii "e" 15 | e_len = . - e 16 | -------------------------------------------------------------------------------- /e.sb2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/dc7c259cbadabd5ea49d96eaa0d1e1503ddb8a91/e.sb2 -------------------------------------------------------------------------------- /e.scala: -------------------------------------------------------------------------------- 1 | object e extends App { 2 | Stream.continually("e").foreach(print) 3 | } 4 | -------------------------------------------------------------------------------- /e.scd: -------------------------------------------------------------------------------- 1 | while({ \e.notNil }, { \e.postln }); 2 | -------------------------------------------------------------------------------- /e.scm: -------------------------------------------------------------------------------- 1 | (define (e) 2 | (display "e") 3 | (e)) 4 | (e) 5 | -------------------------------------------------------------------------------- /e.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | yes e | tr -d '\n' 3 | -------------------------------------------------------------------------------- /e.sm: -------------------------------------------------------------------------------- 1 | [true] whileTrue:[ Transcript show: 'e'. ]. 2 | -------------------------------------------------------------------------------- /e.smv: -------------------------------------------------------------------------------- 1 | MODULE e 2 | VAR 3 | e : { e }; 4 | ASSIGN 5 | init(e) := e; 6 | next(e) := e; 7 | esac; 8 | SPEC AG ( TRUE -> AF e = e) 9 | -------------------------------------------------------------------------------- /e.sol: -------------------------------------------------------------------------------- 1 | pragma solidity ^0.5.0; 2 | 3 | contract EEEEEEEEEE { 4 | 5 | mapping (address => string) meeeeeeeeeessage; 6 | 7 | function sendMeeeeeeeeeessage(address _recipieeeeeeeeeent, string memory _meeeeeeeeeessage) public{ 8 | meeeeeeeeeessage[_recipieeeeeeeeeent] = _meeeeeeeeeessage; 9 | } 10 | 11 | function readMeeeeeeeeeessage() public view returns (string memory){ 12 | return meeeeeeeeeessage[msg.sender]; 13 | } 14 | 15 | } 16 | -------------------------------------------------------------------------------- /e.sqf: -------------------------------------------------------------------------------- 1 | while { true } do { 2 | diag_log format["e"]; 3 | }; 4 | -------------------------------------------------------------------------------- /e.sql: -------------------------------------------------------------------------------- 1 | CREATE DATABASE e; 2 | USE e; 3 | 4 | DELIMITER | 5 | CREATE PROCEDURE e() 6 | BEGIN 7 | WHILE 'e' = 'e' DO 8 | SELECT REPEAT("e",RAND()*100) AS e; 9 | END WHILE; 10 | END| 11 | DELIMITER ; 12 | 13 | CALL e(); 14 | -------------------------------------------------------------------------------- /e.st: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env gst 2 | 3 | [ true ] whileTrue: [ Transcript show: 'e' ]. 4 | -------------------------------------------------------------------------------- /e.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/dc7c259cbadabd5ea49d96eaa0d1e1503ddb8a91/e.stl -------------------------------------------------------------------------------- /e.svg: -------------------------------------------------------------------------------- 1 | 2 | e 3 | 4 | -------------------------------------------------------------------------------- /e.swift: -------------------------------------------------------------------------------- 1 | while true { 2 | print("e") 3 | } 4 | -------------------------------------------------------------------------------- /e.t: -------------------------------------------------------------------------------- 1 | terralib.nativetarget = terralib.newtarget { 2 | Triple = "x86_64-pc-linux-gnu", 3 | CPU = "x86-64", 4 | } 5 | 6 | stdio = terralib.includec("stdio.h") 7 | 8 | terra main(argc : int, argv : &rawstring) 9 | while true do 10 | stdio.printf("e") 11 | end 12 | return 0 13 | end 14 | 15 | main(0, nil) 16 | -------------------------------------------------------------------------------- /e.tcl: -------------------------------------------------------------------------------- 1 | #!/usr/bin/tclsh 2 | while { true } { 3 | puts -nonewline "e" 4 | } 5 | -------------------------------------------------------------------------------- /e.tex: -------------------------------------------------------------------------------- 1 | \documentclass[10.5pt,letterpaper]{article} 2 | 3 | \begin{document} 4 | 5 | \newcount\i 6 | \i=9999 7 | \loop 8 | e 9 | \advance \i -1 10 | \ifnum \i>0 11 | \repeat 12 | 13 | \end{document} 14 | -------------------------------------------------------------------------------- /e.tf: -------------------------------------------------------------------------------- 1 | variable "e" { 2 | default = "e" 3 | } 4 | -------------------------------------------------------------------------------- /e.tiff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/dc7c259cbadabd5ea49d96eaa0d1e1503ddb8a91/e.tiff -------------------------------------------------------------------------------- /e.toml: -------------------------------------------------------------------------------- 1 | # e eeeee eeee eeee eee eeee ee eeee E 2 | 3 | [E] 4 | e = "e" 5 | -------------------------------------------------------------------------------- /e.txt: -------------------------------------------------------------------------------- 1 | e -------------------------------------------------------------------------------- /e.v: -------------------------------------------------------------------------------- 1 | module e; 2 | always #1 $write("e"); 3 | endmodule -------------------------------------------------------------------------------- /e.vbs: -------------------------------------------------------------------------------- 1 | Function e 2 | e = MsgBox("ee ee?",51,"e") 3 | If e = 6 Then 4 | e = MsgBox("e!",64,"e") 5 | ElseIf e = 7 Then 6 | e = MsgBox("EE!",16,"E!") 7 | Else 8 | e = MsgBox("e..",32,"e") 9 | End If 10 | End Function 11 | -------------------------------------------------------------------------------- /e.vhd: -------------------------------------------------------------------------------- 1 | entity e is 2 | end entity e; 3 | 4 | library std; 5 | use std.textio.all; 6 | 7 | architecture e of e is 8 | begin 9 | ee: 10 | process is 11 | variable eee : line; 12 | begin 13 | write(eee, string'("e")); 14 | writeline(output, eee); 15 | end process ee; 16 | end architecture e; 17 | -------------------------------------------------------------------------------- /e.vim: -------------------------------------------------------------------------------- 1 | command! E %s/[a-zA-Z]/e/g 2 | command! EE call E() 3 | 4 | function! E() 5 | while 1 6 | echo "e" 7 | endwhile 8 | endfunction 9 | -------------------------------------------------------------------------------- /e.vue: -------------------------------------------------------------------------------- 1 | 6 | 7 | 22 | 23 | 28 | 29 | -------------------------------------------------------------------------------- /e.wat: -------------------------------------------------------------------------------- 1 | (module 2 | (type $FUNCSIG$ii (func (param i32) (result i32))) 3 | (import "env" "putchar" (func $putchar (param i32) (result i32))) 4 | (table 0 anyfunc) 5 | (memory $0 1) 6 | (export "memory" (memory $0)) 7 | (export "main" (func $main)) 8 | (func $main (; 1 ;) (param $0 i32) (param $1 i32) (result i32) 9 | (loop $label$0 (result i32) 10 | (drop 11 | (call $putchar 12 | (i32.const 101) 13 | ) 14 | ) 15 | (br $label$0) 16 | ) 17 | ) 18 | ) 19 | -------------------------------------------------------------------------------- /e.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/dc7c259cbadabd5ea49d96eaa0d1e1503ddb8a91/e.wav -------------------------------------------------------------------------------- /e.x68: -------------------------------------------------------------------------------- 1 | *----------------------------------------------------------- 2 | * Title : E 3 | * Written by : George Tzikas 4 | * Date : 2018_12_08 5 | * Description: E 6 | *----------------------------------------------------------- 7 | ORG $400400 8 | MESSAGE DC.B 'E', 0 9 | 10 | 11 | START ORG $400410 12 | LEA MESSAGE, A1 13 | *Use #14 for no CR, LF 14 | LOOP MOVE.B #13, D0 15 | TRAP #15 16 | BRA LOOP 17 | END START 18 | -------------------------------------------------------------------------------- /e.xz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/dc7c259cbadabd5ea49d96eaa0d1e1503ddb8a91/e.xz -------------------------------------------------------------------------------- /e.yml: -------------------------------------------------------------------------------- 1 | e: e 2 | -------------------------------------------------------------------------------- /e.zig: -------------------------------------------------------------------------------- 1 | const std = @import("std"); 2 | 3 | pub fn main() !void { 4 | var stdout_file = try std.io.getStdOut(); 5 | while (true) { 6 | try stdout_file.write("e"); 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /e_dos.asm: -------------------------------------------------------------------------------- 1 | org 0x100 2 | 3 | putE: 4 | mov ah, 0x0E 5 | mov al, 'e' 6 | int 0x10 7 | jmp putE 8 | -------------------------------------------------------------------------------- /e_iOS_arm32.S: -------------------------------------------------------------------------------- 1 | # xcrun -sdk iphoneos clang -arch armv7 e_iOS_arm32.S -o e 2 | .align 2 3 | eeee: 4 | .asciz "eee" 5 | .globl _main 6 | .align 2 7 | _main: 8 | eeeeeeeeeeeeeeeeeeeeeee: 9 | mov r0, 1 10 | adr r1, eeee 11 | mov r2, 3 12 | mov r12, 0x4 13 | svc 0x80 14 | b eeeeeeeeeeeeeeeeeeeeeee 15 | -------------------------------------------------------------------------------- /e_iOS_arm64.S: -------------------------------------------------------------------------------- 1 | # xcrun -sdk iphoneos clang -arch arm64 e_iOS_arm64.S -o eeee 2 | .align 2 3 | eeee: 4 | .asciz "eee" 5 | .globl _main 6 | .align 2 7 | _main: 8 | eeeeeeeeeeeeeeeeeeeeeee: 9 | movz x0, 1 10 | adr x1, eeee 11 | mov x2, 3 12 | movz x16, 0x4 13 | svc 0x80 14 | b eeeeeeeeeeeeeeeeeeeeeee 15 | -------------------------------------------------------------------------------- /e_lc3.asm: -------------------------------------------------------------------------------- 1 | .ORIG x3000 2 | 3 | 4 | loop AND R0, R0, #0 5 | LEA R0, e 6 | PUTS 7 | BRnzp loop 8 | 9 | HALT 10 | 11 | e .STRINGZ "e" 12 | 13 | .END 14 | -------------------------------------------------------------------------------- /e_linux_riscv64.S: -------------------------------------------------------------------------------- 1 | .data 2 | e: .byte 'e' 3 | 4 | .text 5 | .globl _start 6 | _start: 7 | li a7, 64 8 | la a1, e 9 | li a2, 1 10 | l: li a0, 1 11 | ecall 12 | j l 13 | -------------------------------------------------------------------------------- /e_macOS_32.S: -------------------------------------------------------------------------------- 1 | # clang -m32 e_macOS_32.S -o eeeeee && ./eeeeee 2 | .globl _main 3 | .text 4 | _main: 5 | pushl $0x65656565 6 | pushl $4 7 | lea 4(%esp), %eax 8 | pushl %eax 9 | pushl $1 10 | pushl $0x7374656b 11 | eee: 12 | movl $4, %eax 13 | int $0x80 14 | jmp eee 15 | -------------------------------------------------------------------------------- /e_macOS_64.S: -------------------------------------------------------------------------------- 1 | # clang e_macOS_64.S -o eeeee && ./eeeee 2 | .globl _main 3 | .text 4 | _main: 5 | pushq $0x65656565 6 | eee: 7 | movq $0x2000004, %rax 8 | movq $1, %rdi 9 | movq %rsp, %rsi 10 | movq $4, %rdx 11 | syscall 12 | jmp eee 13 | -------------------------------------------------------------------------------- /e_mips.asm: -------------------------------------------------------------------------------- 1 | .data 2 | echar: .ascii "e" 3 | .text 4 | e: 5 | li $v0, 4 6 | la $a0, echar 7 | syscall 8 | j e 9 | -------------------------------------------------------------------------------- /e_standalone.asm: -------------------------------------------------------------------------------- 1 | ; Linker file: 2 | ; ENTRY(start); SECTIONS { . = 1M; .boot : { KEEP(*(.multiboot_header)) } .text : { *(.text) } } 3 | ; compile: nasm -i. -felf64 e_standalone.asm -o e 4 | 5 | section .multiboot_header 6 | bits 32 7 | header_start: 8 | dd 0xe85250d6 9 | dd 0 10 | dd header_end - header_start 11 | dd 0x100000000 - (0xe85250d6 + 0 + (header_end - header_start)) 12 | dw 0 13 | dw 0 14 | dd 8 15 | header_end: 16 | 17 | global start 18 | section .text 19 | bits 32 20 | start: 21 | mov ecx, 0 22 | loop: 23 | mov dword [0xb8000 + (ecx * 2)], (15 << 8) | (0x00000065) 24 | inc ecx 25 | cmp ecx, 2000 26 | jne loop 27 | hlt 28 | -------------------------------------------------------------------------------- /e_win32.asm: -------------------------------------------------------------------------------- 1 | 2 | format PE console 3 | entry start 4 | 5 | include 'win32a.inc' 6 | 7 | section '.text' code readable executable 8 | 9 | start: 10 | invoke printf, e 11 | jmp start 12 | 13 | section '.data' data readable 14 | 15 | e db "e", 0 16 | 17 | section '.idata' import data readable writeable 18 | 19 | library msvcrt,'MSVCRT.DLL' 20 | 21 | import msvcrt,\ 22 | printf,'printf' 23 | -------------------------------------------------------------------------------- /e_win64.asm: -------------------------------------------------------------------------------- 1 | 2 | format PE64 console 3 | entry start 4 | 5 | include 'win64a.inc' 6 | 7 | section '.text' code readable executable 8 | 9 | start: 10 | and rsp, -16 11 | 12 | putE: 13 | invoke printf, e 14 | jmp putE 15 | 16 | section '.data' data readable 17 | 18 | e db "e", 0 19 | 20 | section '.idata' import data readable writeable 21 | 22 | library msvcrt,'MSVCRT.DLL' 23 | 24 | import msvcrt,\ 25 | printf,'printf' 26 | -------------------------------------------------------------------------------- /eaas.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # e as a service 3 | # usage: 4 | # ./eaas.sh 5 | # xdg-open http://127.0.0.1:3333 6 | while true; do 7 | ( printf "HTTP/1.0 200 OK\r\n\r\n" && yes e ) | 8 | nc -w 1 -l -p 3333 9 | done 10 | -------------------------------------------------------------------------------- /ebig.py: -------------------------------------------------------------------------------- 1 | from __future__ import print_function 2 | 3 | exec(''' 4 | 'eeeeee'\ 5 | 'eeee'\nimport\ 6 | sys\n' '\nwhile\ 7 | True: \n print\ 8 | ('eee' 'eeeee'\ 9 | 'eeeeeeeeeeeeeeeeeeeee'\ 10 | 'eeee'\ 11 | 'eeeee' 'eeeee'\ 12 | 'eeeeeeeeeeeeeeeee'\ 13 | 'ee',end='') 14 | '''[10:]) 15 | -------------------------------------------------------------------------------- /eee-3.ebuild: -------------------------------------------------------------------------------- 1 | EAPI=7 2 | DESCRIPTION="e" 3 | HOMEPAGE="https://github.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee" 4 | LICENSE="WTFPL" 5 | SRC_URI="https://github.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/archive/e79a3d4dfed9c0aac84952fa1879c5267246e06d.tar.gz -> eee.e3.tgz" 6 | SLOT="0" 7 | KEYWORDS="amd64" 8 | S="${WORKDIR}" 9 | 10 | src_install() { 11 | cd eeee* 12 | newbin e.sh eee 13 | } 14 | 15 | pkg_postinst() { 16 | eee || eee && eee | eee 17 | } 18 | -------------------------------------------------------------------------------- /eee.awk: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env -S awk -f 2 | BEGIN { while(1) printf("e")} 3 | -------------------------------------------------------------------------------- /eee.c: -------------------------------------------------------------------------------- 1 | #include 2 | #define e "e" 3 | #define ee e e 4 | #define eee ee ee 5 | #define eeee eee eee 6 | #define eeeee eeee eeee 7 | #define eeeeee eeeee eeeee 8 | #define eeeeeee eeeeee eeeeee 9 | #define eeeeeeee eeeeeee eeeeeee 10 | #define eeeeeeeee eeeeeeee eeeeeeee 11 | #define eeeeeeeeee eeeeeeeee eeeeeeeee 12 | #define eeeeeeeeeee eeeeeeeeee eeeeeeeeee 13 | #define eeeeeeeeeeee eeeeeeeeeee eeeeeeeeeee 14 | #define eeeeeeeeeeeee eeeeeeeeeeee eeeeeeeeeeee 15 | #define eeeeeeeeeeeeee eeeeeeeeeeeee eeeeeeeeeeeee 16 | #define eeeeeeeeeeeeeee eeeeeeeeeeeeee eeeeeeeeeeeeee 17 | #define e_e_e(e, ee, eee) write(e, ee, eee) 18 | #define e_e() int main() 19 | #define e_(e) while(e) 20 | 21 | e_e() { e_(e) e_e_e(1, eeeeeeeeeeeeeee, 0x4000); } 22 | -------------------------------------------------------------------------------- /eeee.jl: -------------------------------------------------------------------------------- 1 | while true 2 | print("e") 3 | end 4 | -------------------------------------------------------------------------------- /eeeee.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/dc7c259cbadabd5ea49d96eaa0d1e1503ddb8a91/eeeee.mp3 -------------------------------------------------------------------------------- /eeeeee.py: -------------------------------------------------------------------------------- 1 | """EEe ee eeeee eee""" 2 | from itertools import repeat as eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee 3 | eeeeeeeeeeeeeeeeeeeeeeee = any 4 | eeeeeeeee = map 5 | eeeeeeeeeeeeeeee = print 6 | e = 'e' 7 | eeeeeeeeeeeeeeeeeeeeeeee(eeeeeeeee(eeeeeeeeeeeeeeee, eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee(e))) 8 | 9 | # eeee 10 | -------------------------------------------------------------------------------- /eeeeeeee.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/dc7c259cbadabd5ea49d96eaa0d1e1503ddb8a91/eeeeeeee.jpeg -------------------------------------------------------------------------------- /posteeeer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/dc7c259cbadabd5ea49d96eaa0d1e1503ddb8a91/posteeeer.pdf --------------------------------------------------------------------------------