Merge pull request #2 from eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeee
merge back
This commit is contained in:
commit
67e0b1e712
|
|
@ -0,0 +1,27 @@
|
|||
**/.backup
|
||||
**/gst.im
|
||||
a
|
||||
b
|
||||
c
|
||||
d
|
||||
f
|
||||
g
|
||||
h
|
||||
i
|
||||
j
|
||||
k
|
||||
l
|
||||
m
|
||||
n
|
||||
o
|
||||
p
|
||||
q
|
||||
r
|
||||
s
|
||||
t
|
||||
u
|
||||
v
|
||||
w
|
||||
x
|
||||
y
|
||||
z
|
||||
|
|
@ -0,0 +1,26 @@
|
|||
#!/usr/bin/env python3.7
|
||||
|
||||
import sys
|
||||
|
||||
|
||||
if len(sys.argv) is not 3:
|
||||
print('usage : 2E.py [input file] [output file]')
|
||||
exit(-1)
|
||||
|
||||
inFile = open(sys.argv[1], mode='rb')
|
||||
outFile = open(sys.argv[2], mode='w')
|
||||
|
||||
for buffer in iter(lambda: inFile.read(1), b''):
|
||||
binStr = bin(int(buffer.hex(), base=16))[2:].zfill(8)
|
||||
for c in binStr:
|
||||
if c == '1':
|
||||
outFile.write('E')
|
||||
elif c == '0':
|
||||
outFile.write('e')
|
||||
else:
|
||||
print('error!')
|
||||
exit(-1)
|
||||
|
||||
|
||||
inFile.close()
|
||||
outFile.close()
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
cmake_minimum_required (VERSION 2.6)
|
||||
project (eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee)
|
||||
message("eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee")
|
||||
add_executable(eeeee e.c)
|
||||
add_custom_command(TARGET eeeee POST_BUILD COMMAND ${CMAKE_CURRENT_BINARY_DIR}/eeeee)
|
||||
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
#!/usr/bin/env python3.7
|
||||
|
||||
import sys
|
||||
import struct
|
||||
from array import *
|
||||
|
||||
if len(sys.argv) is not 3:
|
||||
print('usage : E2.py [input file] [output file]')
|
||||
exit(-1)
|
||||
|
||||
inFile = open(sys.argv[1], mode='rb')
|
||||
outFile = open(sys.argv[2], mode='wb')
|
||||
|
||||
for buffer in iter(lambda: inFile.read(8), b''):
|
||||
bin_array = array('B')
|
||||
bin_str = ''
|
||||
for c in buffer:
|
||||
if c == ord('E'):
|
||||
bin_str += '1'
|
||||
elif c == ord('e'):
|
||||
bin_str += '0'
|
||||
else:
|
||||
print('error!')
|
||||
exit(-1)
|
||||
bin_array.append(int(bin_str, base=2))
|
||||
bin_array.tofile(outFile)
|
||||
|
||||
inFile.close()
|
||||
outFile.close()
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
FROM busybox
|
||||
|
||||
RUN seq 1 10000 | while read -r e; do echo -ne 'e'; done; echo e;
|
||||
|
||||
CMD strings /dev/urandom | grep -oE 'e' | tr -d '\n'
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
Loop
|
||||
MsgBox eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee `n
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
IT'S SHOWTIME
|
||||
STICK AROUND @NO PROBLEMO
|
||||
TALK TO THE HAND "e"
|
||||
CHILL
|
||||
YOU HAVE BEEN TERMINATED
|
||||
63
e.asm
63
e.asm
|
|
@ -1,17 +1,56 @@
|
|||
; compile with:
|
||||
; $ [ny]asm -felf(32|64) -oe.o e.asm
|
||||
; $ (gcc|clang) -m(32|64) -oe e.o -nostdlib -nostartfiles
|
||||
|
||||
section .text
|
||||
global _start
|
||||
global _start
|
||||
|
||||
_start:
|
||||
%if __BITS__ == 32
|
||||
%define r(n) e%+n
|
||||
%define SYS_write 4
|
||||
%define rarg0 ebx
|
||||
%define rarg1 ecx
|
||||
%define rarg2 edx
|
||||
%define syscall int 0x80
|
||||
%else
|
||||
%define r(n) r%+n
|
||||
%define SYS_write 1
|
||||
%define rarg0 rdi
|
||||
%define rarg1 rsi
|
||||
%define rarg2 rdx
|
||||
default rel
|
||||
%endif
|
||||
|
||||
mov rax, 1
|
||||
mov rdi, 1
|
||||
mov rsi, msg
|
||||
mov rdx, len
|
||||
loop:
|
||||
syscall
|
||||
jmp loop
|
||||
; size of a Linux pipe buffer
|
||||
%define PIPE_SIZE 0x10000
|
||||
%define STDOUT_FILENO 1
|
||||
|
||||
section .data
|
||||
; Instead of simply storing a char in .rodata and write(2)-ing it
|
||||
; over and over again, we first fill a buffer full of e's, and *then*
|
||||
; write the entire buffer. This is much faster than the first option,
|
||||
; because we only need to issue a syscall once every 65536 bytes. (Remember
|
||||
; that doing a syscall requires the kernel to handle an interrupt etc etc etc.)
|
||||
|
||||
msg: db "e"
|
||||
len: equ $ - msg
|
||||
_start:
|
||||
; allocate space for the message
|
||||
mov r(cx), PIPE_SIZE
|
||||
mov r(bx), r(cx) ; we'll need it later
|
||||
sub r(sp), r(cx)
|
||||
|
||||
; quick memset(3)
|
||||
mov al, 'e'
|
||||
mov r(di), r(sp)
|
||||
rep stosb
|
||||
|
||||
; push+pop is actually a smaller encoding than mov for ints that fit within 8 bit
|
||||
push STDOUT_FILENO
|
||||
pop rarg0
|
||||
mov rarg1, r(sp)
|
||||
mov rarg2, r(bx)
|
||||
|
||||
.loop:
|
||||
; set this within the loop because the syscall's exit code is placed in r(ax)
|
||||
push SYS_write
|
||||
pop r(ax)
|
||||
syscall
|
||||
jmp short .loop
|
||||
|
|
|
|||
|
|
@ -0,0 +1,4 @@
|
|||
HORA DO SHOW
|
||||
CE QUER VER ESSA PORRA? ("e");
|
||||
BORA CUMPADE 0;
|
||||
BIRL
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
event bro_init()
|
||||
{
|
||||
local e = "e";
|
||||
|
||||
while ( e == "e" )
|
||||
{
|
||||
print e;
|
||||
}
|
||||
}
|
||||
31
e.c
31
e.c
|
|
@ -1,13 +1,22 @@
|
|||
#include <stdio.h>
|
||||
#define e "e"
|
||||
#define ee int
|
||||
#define eee main
|
||||
#define eeee (
|
||||
#define eeeee )
|
||||
#define eeeeee {
|
||||
#define eeeeeee }
|
||||
#define eeeeeeee for
|
||||
#define eeeeeeeee ;
|
||||
#define eeeeeeeeee printf
|
||||
#define eeeeeeeeeee return
|
||||
#define eeeeeeeeeeee on_exit
|
||||
#define eeeeeeeeeeeee [
|
||||
#define eeeeeeeeeeeeee ]
|
||||
#define eeeeeeeeeeeeeee 0
|
||||
|
||||
int main()
|
||||
{
|
||||
for (;;) {
|
||||
printf("e");
|
||||
}
|
||||
}
|
||||
|
||||
int on_exit()
|
||||
{
|
||||
return 'e';
|
||||
}
|
||||
ee eee eeee eeeee eeeeee eeeeeeee eeee eeeeeeeee
|
||||
eeeeeeeee eeeee eeeeee eeeeeeeeee eeee e eeeee
|
||||
eeeeeeeee eeeeeee eeeeeee ee eeeeeeeeeeee eeee
|
||||
eeeee eeeeee eeeeeeeeeee e eeeeeeeeeeeee
|
||||
eeeeeeeeeeeeeee eeeeeeeeeeeeee eeeeeeeee eeeeeee
|
||||
|
|
|
|||
|
|
@ -0,0 +1,14 @@
|
|||
IDENTIFICATION DIVISION.
|
||||
PROGRAM-ID. eeeeeeeee.
|
||||
|
||||
DATA DIVISION.
|
||||
WORKING-STORAGE SECTION.
|
||||
01 e PIC X VALUE 0.
|
||||
|
||||
PROCEDURE DIVISION.
|
||||
MAIN-PROCEDURE.
|
||||
PERFORM UNTIL e > e
|
||||
DISPLAY 'e'
|
||||
END-PERFORM.
|
||||
STOP RUN.
|
||||
|
||||
2
e.cc
2
e.cc
|
|
@ -4,6 +4,6 @@ using namespace std;
|
|||
|
||||
int main()
|
||||
{
|
||||
for(;;) cout << "e";
|
||||
while('e') cout << "e";
|
||||
return 'e';
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,5 @@
|
|||
<cfscript>
|
||||
while(true){
|
||||
writeOutput('e');
|
||||
}
|
||||
</cfscript>
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
coforall locale in Locales {
|
||||
on locale {
|
||||
coforall task_id in 0..#locale.maxTaskPar {
|
||||
while( true ) {
|
||||
write( "e" );
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,29 @@
|
|||
#include <iostream>
|
||||
#define e using
|
||||
#define ee namespace
|
||||
#define eee std
|
||||
#define eeee ;
|
||||
#define eeeee int
|
||||
#define eeeeee main
|
||||
#define eeeeeee (
|
||||
#define eeeeeeee )
|
||||
#define eeeeeeeee while
|
||||
#define eeeeeeeeee true
|
||||
#define eeeeeeeeeee {
|
||||
#define eeeeeeeeeeee }
|
||||
#define eeeeeeeeeeeee cout
|
||||
#define eeeeeeeeeeeeee cerr
|
||||
#define eeeeeeeeeeeeeee <<
|
||||
#define eeeeeeeeeeeeeeee 'e'
|
||||
#define eeeeeeeeeeeeeeeee return
|
||||
|
||||
e ee eee eeee
|
||||
eeeee eeeeee eeeeeee eeeeeeee
|
||||
eeeeeeeeeee
|
||||
eeeeeeeee eeeeeee eeeeeeeeee eeeeeeee
|
||||
eeeeeeeeeee
|
||||
eeeeeeeeeeeee eeeeeeeeeeeeeee eeeeeeeeeeeeeeee eeee
|
||||
eeeeeeeeeeeeee eeeeeeeeeeeeeee eeeeeeeeeeeeeeee eeee
|
||||
eeeeeeeeeeee
|
||||
eeeeeeeeeeeeeeeee eeeeeeeeeeeeeeee eeee
|
||||
eeeeeeeeeeee
|
||||
12
e.cs
12
e.cs
|
|
@ -1,12 +1,18 @@
|
|||
using System;
|
||||
using Eeeeeee = System.Console;
|
||||
using eeee = System.Boolean;
|
||||
|
||||
namespace e
|
||||
{
|
||||
class E
|
||||
{
|
||||
static void Main(string[] args)
|
||||
const eeee e = true;
|
||||
|
||||
static void Main(string[] eeee)
|
||||
{
|
||||
Console.WriteLine('e');
|
||||
while (e)
|
||||
{
|
||||
Eeeeeee.Write('e');
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,6 @@
|
|||
循环判断首()
|
||||
文本输入框e.内容=“e”
|
||||
文本输入框ee.内容=“ee”
|
||||
文本e = 删首尾空 (文本输入框e.内容)
|
||||
文本ee = 删首尾空 (文本输入框ee.内容)
|
||||
循环判断尾(文本e=文本ee)
|
||||
|
|
@ -0,0 +1,614 @@
|
|||
; FBX 6.1.0 projeeeeeeeeeeect fileeeeeeeeeeeee
|
||||
; Creeeeeeeeeeeeeeeeeeeeeeeeated by Bleeeeeeeeeeeeeeeeeeeeeeeeendeeeeeeeeeeeer FBX Exporteeeeeeeeeer
|
||||
; for support mail: ideasman42@gmail.com
|
||||
; ----------------------------------------------------
|
||||
|
||||
FBXHeaderExtension: {
|
||||
FBXHeaderVersion: 1003
|
||||
FBXVersion: 6100
|
||||
CreationTimeStamp: {
|
||||
Version: 1000
|
||||
Year: 2018
|
||||
Month: 12
|
||||
Day: 11
|
||||
Hour: 10
|
||||
Minute: 55
|
||||
Second: 17
|
||||
Millisecond: 0
|
||||
}
|
||||
Creator: "FBX SDK/FBX Plugins build 20070228"
|
||||
OtherFlags: {
|
||||
FlagPLE: 0
|
||||
}
|
||||
}
|
||||
CreationTime: "2018-12-11 10:55:17:000"
|
||||
Creator: "Blender version 2.79 (sub 0)"
|
||||
|
||||
; Objeeeeeeeeeeeeect deeeeeeeeeeeeeeeeeeeeeeeeeeeefinitions
|
||||
;------------------------------------------------------------------
|
||||
|
||||
Definitions: {
|
||||
Version: 100
|
||||
Count: 3
|
||||
ObjectType: "Model" {
|
||||
Count: 1
|
||||
}
|
||||
ObjectType: "Geometry" {
|
||||
Count: 1
|
||||
}
|
||||
ObjectType: "Material" {
|
||||
Count: 1
|
||||
}
|
||||
ObjectType: "Pose" {
|
||||
Count: 1
|
||||
}
|
||||
ObjectType: "GlobalSettings" {
|
||||
Count: 1
|
||||
}
|
||||
}
|
||||
|
||||
; Objeeeeeeeeeeeeeeeeeeeeeeeeeect propeeeeeeeeeeeeeeeeeeeerties
|
||||
;------------------------------------------------------------------
|
||||
|
||||
Objects: {
|
||||
Model: "Model::e", "Mesh" {
|
||||
Version: 232
|
||||
Properties60: {
|
||||
Property: "QuaternionInterpolate", "bool", "",0
|
||||
Property: "Visibility", "Visibility", "A+",1
|
||||
Property: "Lcl Translation", "Lcl Translation", "A+",0.000000000000000,0.000000000000000,0.000000000000000
|
||||
Property: "Lcl Rotation", "Lcl Rotation", "A+",-90.000002504348856,0.000000000000000,0.000000000000000
|
||||
Property: "Lcl Scaling", "Lcl Scaling", "A+",1.000000000000000,1.000000000000000,1.000000000000000
|
||||
Property: "RotationOffset", "Vector3D", "",0,0,0
|
||||
Property: "RotationPivot", "Vector3D", "",0,0,0
|
||||
Property: "ScalingOffset", "Vector3D", "",0,0,0
|
||||
Property: "ScalingPivot", "Vector3D", "",0,0,0
|
||||
Property: "TranslationActive", "bool", "",0
|
||||
Property: "TranslationMin", "Vector3D", "",0,0,0
|
||||
Property: "TranslationMax", "Vector3D", "",0,0,0
|
||||
Property: "TranslationMinX", "bool", "",0
|
||||
Property: "TranslationMinY", "bool", "",0
|
||||
Property: "TranslationMinZ", "bool", "",0
|
||||
Property: "TranslationMaxX", "bool", "",0
|
||||
Property: "TranslationMaxY", "bool", "",0
|
||||
Property: "TranslationMaxZ", "bool", "",0
|
||||
Property: "RotationOrder", "enum", "",0
|
||||
Property: "RotationSpaceForLimitOnly", "bool", "",0
|
||||
Property: "AxisLen", "double", "",10
|
||||
Property: "PreRotation", "Vector3D", "",0,0,0
|
||||
Property: "PostRotation", "Vector3D", "",0,0,0
|
||||
Property: "RotationActive", "bool", "",0
|
||||
Property: "RotationMin", "Vector3D", "",0,0,0
|
||||
Property: "RotationMax", "Vector3D", "",0,0,0
|
||||
Property: "RotationMinX", "bool", "",0
|
||||
Property: "RotationMinY", "bool", "",0
|
||||
Property: "RotationMinZ", "bool", "",0
|
||||
Property: "RotationMaxX", "bool", "",0
|
||||
Property: "RotationMaxY", "bool", "",0
|
||||
Property: "RotationMaxZ", "bool", "",0
|
||||
Property: "RotationStiffnessX", "double", "",0
|
||||
Property: "RotationStiffnessY", "double", "",0
|
||||
Property: "RotationStiffnessZ", "double", "",0
|
||||
Property: "MinDampRangeX", "double", "",0
|
||||
Property: "MinDampRangeY", "double", "",0
|
||||
Property: "MinDampRangeZ", "double", "",0
|
||||
Property: "MaxDampRangeX", "double", "",0
|
||||
Property: "MaxDampRangeY", "double", "",0
|
||||
Property: "MaxDampRangeZ", "double", "",0
|
||||
Property: "MinDampStrengthX", "double", "",0
|
||||
Property: "MinDampStrengthY", "double", "",0
|
||||
Property: "MinDampStrengthZ", "double", "",0
|
||||
Property: "MaxDampStrengthX", "double", "",0
|
||||
Property: "MaxDampStrengthY", "double", "",0
|
||||
Property: "MaxDampStrengthZ", "double", "",0
|
||||
Property: "PreferedAngleX", "double", "",0
|
||||
Property: "PreferedAngleY", "double", "",0
|
||||
Property: "PreferedAngleZ", "double", "",0
|
||||
Property: "InheritType", "enum", "",0
|
||||
Property: "ScalingActive", "bool", "",0
|
||||
Property: "ScalingMin", "Vector3D", "",1,1,1
|
||||
Property: "ScalingMax", "Vector3D", "",1,1,1
|
||||
Property: "ScalingMinX", "bool", "",0
|
||||
Property: "ScalingMinY", "bool", "",0
|
||||
Property: "ScalingMinZ", "bool", "",0
|
||||
Property: "ScalingMaxX", "bool", "",0
|
||||
Property: "ScalingMaxY", "bool", "",0
|
||||
Property: "ScalingMaxZ", "bool", "",0
|
||||
Property: "GeometricTranslation", "Vector3D", "",0,0,0
|
||||
Property: "GeometricRotation", "Vector3D", "",0,0,0
|
||||
Property: "GeometricScaling", "Vector3D", "",1,1,1
|
||||
Property: "LookAtProperty", "object", ""
|
||||
Property: "UpVectorProperty", "object", ""
|
||||
Property: "Show", "bool", "",1
|
||||
Property: "NegativePercentShapeSupport", "bool", "",1
|
||||
Property: "DefaultAttributeIndex", "int", "",0
|
||||
Property: "Color", "Color", "A",0.8,0.8,0.8
|
||||
Property: "Size", "double", "",100
|
||||
Property: "Look", "enum", "",1
|
||||
}
|
||||
MultiLayer: 0
|
||||
MultiTake: 1
|
||||
Shading: Y
|
||||
Culling: "CullingOff"
|
||||
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,
|
||||
0.146685,-0.399111,0.000000,0.133731,-0.404774,0.000000,0.120750,-0.409750,0.000000,0.107727,-0.414017,0.000000,
|
||||
0.094648,-0.417556,0.000000,0.081500,-0.420344,0.000000,0.068269,-0.422361,0.000000,0.054940,-0.423587,0.000000,
|
||||
0.041500,-0.424000,0.000000,0.020730,-0.423043,0.000000,0.001426,-0.420181,0.000000,-0.016406,-0.415422,0.000000,
|
||||
-0.032759,-0.408778,0.000000,-0.047626,-0.400259,0.000000,-0.061000,-0.389875,0.000000,-0.072874,-0.377637,0.000000,
|
||||
-0.083241,-0.363556,0.000000,-0.092094,-0.347641,0.000000,-0.099426,-0.329903,0.000000,-0.105230,-0.310352,0.000000,
|
||||
-0.109500,-0.289000,0.000000,0.206500,-0.289000,0.000000,0.204936,-0.249269,0.000000,0.200319,-0.213065,0.000000,
|
||||
0.192766,-0.180375,0.000000,0.182389,-0.151185,0.000000,0.169304,-0.125481,0.000000,0.153625,-0.103250,0.000000,
|
||||
0.135467,-0.084477,0.000000,0.114944,-0.069148,0.000000,0.092172,-0.057250,0.000000,0.067264,-0.048769,0.000000,
|
||||
0.040335,-0.043690,0.000000,0.011500,-0.042000,0.000000,-0.018681,-0.043889,0.000000,-0.047111,-0.049444,0.000000,
|
||||
-0.073625,-0.058500,0.000000,-0.098056,-0.070889,0.000000,-0.120236,-0.086444,0.000000,-0.140000,-0.105000,0.000000,
|
||||
-0.157181,-0.126389,0.000000,-0.171611,-0.150444,0.000000,-0.183125,-0.177000,0.000000,-0.191556,-0.205889,0.000000,
|
||||
-0.196736,-0.236944,0.000000,-0.198500,-0.270000,0.000000,-0.196884,-0.300751,0.000000,-0.192074,-0.330759,0.000000,
|
||||
-0.184125,-0.359656,0.000000,-0.173093,-0.387074,0.000000,-0.159032,-0.412645,0.000000,-0.142000,-0.436000,0.000000,
|
||||
-0.122051,-0.456772,0.000000,-0.099241,-0.474593,0.000000,-0.073625,-0.489094,0.000000,-0.045259,-0.499907,0.000000,
|
||||
-0.014199,-0.506666,0.000000,0.019500,-0.509000,0.000000,0.037956,-0.508645,0.000000,0.055398,-0.507574,0.000000,
|
||||
0.071937,-0.505781,0.000000,0.087685,-0.503259,0.000000,0.102752,-0.500001,0.000000,0.117250,-0.496000,0.000000,
|
||||
0.131289,-0.491249,0.000000,0.144981,-0.485741,0.000000,0.158437,-0.479469,0.000000,0.171769,-0.472426,0.000000,
|
||||
0.185086,-0.464605,0.000000,0.198500,-0.456000,0.000000,-0.107500,-0.230000,0.000000,-0.103897,-0.212901,0.000000,
|
||||
-0.099093,-0.197125,0.000000,-0.093094,-0.182703,0.000000,-0.085907,-0.169667,0.000000,-0.077541,-0.158047,0.000000,
|
||||
-0.068000,-0.147875,0.000000,-0.057293,-0.139182,0.000000,-0.045426,-0.132000,0.000000,-0.032406,-0.126359,0.000000,
|
||||
-0.018241,-0.122292,0.000000,-0.002936,-0.119828,0.000000,0.013500,-0.119000,0.000000,0.028743,-0.119885,0.000000,
|
||||
0.042944,-0.122500,0.000000,0.056063,-0.126781,0.000000,0.068056,-0.132667,0.000000,0.078882,-0.140094,0.000000,
|
||||
0.088500,-0.149000,0.000000,0.096868,-0.159323,0.000000,0.103944,-0.171000,0.000000,0.109687,-0.183969,0.000000,
|
||||
0.114056,-0.198167,0.000000,0.117007,-0.213531,0.000000,0.118500,-0.230000,0.000000,0.198500,-0.370000,-0.010000,
|
||||
0.185519,-0.378205,-0.010000,0.172565,-0.385806,-0.010000,0.159625,-0.392781,-0.010000,0.146685,-0.399111,-0.010000,
|
||||
0.133731,-0.404774,-0.010000,0.120750,-0.409750,-0.010000,0.107727,-0.414017,-0.010000,0.094648,-0.417556,-0.010000,
|
||||
0.081500,-0.420344,-0.010000,0.068269,-0.422361,-0.010000,0.054940,-0.423587,-0.010000,0.041500,-0.424000,-0.010000,
|
||||
0.020730,-0.423043,-0.010000,0.001426,-0.420181,-0.010000,-0.016406,-0.415422,-0.010000,-0.032759,-0.408778,-0.010000,
|
||||
-0.047626,-0.400259,-0.010000,-0.061000,-0.389875,-0.010000,-0.072874,-0.377637,-0.010000,-0.083241,-0.363556,-0.010000,
|
||||
-0.092094,-0.347641,-0.010000,-0.099426,-0.329903,-0.010000,-0.105230,-0.310352,-0.010000,-0.109500,-0.289000,-0.010000,
|
||||
0.206500,-0.289000,-0.010000,0.204936,-0.249269,-0.010000,0.200319,-0.213065,-0.010000,0.192766,-0.180375,-0.010000,
|
||||
0.182389,-0.151185,-0.010000,0.169304,-0.125481,-0.010000,0.153625,-0.103250,-0.010000,0.135467,-0.084477,-0.010000,
|
||||
0.114944,-0.069148,-0.010000,0.092172,-0.057250,-0.010000,0.067264,-0.048769,-0.010000,0.040335,-0.043690,-0.010000,
|
||||
0.011500,-0.042000,-0.010000,-0.018681,-0.043889,-0.010000,-0.047111,-0.049444,-0.010000,-0.073625,-0.058500,-0.010000,
|
||||
-0.098056,-0.070889,-0.010000,-0.120236,-0.086444,-0.010000,-0.140000,-0.105000,-0.010000,-0.157181,-0.126389,-0.010000,
|
||||
-0.171611,-0.150444,-0.010000,-0.183125,-0.177000,-0.010000,-0.191556,-0.205889,-0.010000,-0.196736,-0.236944,-0.010000,
|
||||
-0.198500,-0.270000,-0.010000,-0.196884,-0.300751,-0.010000,-0.192074,-0.330759,-0.010000,-0.184125,-0.359656,-0.010000,
|
||||
-0.173093,-0.387074,-0.010000,-0.159032,-0.412645,-0.010000,-0.142000,-0.436000,-0.010000,-0.122051,-0.456772,-0.010000,
|
||||
-0.099241,-0.474593,-0.010000,-0.073625,-0.489094,-0.010000,-0.045259,-0.499907,-0.010000,-0.014199,-0.506666,-0.010000,
|
||||
0.019500,-0.509000,-0.010000,0.037956,-0.508645,-0.010000,0.055398,-0.507574,-0.010000,0.071937,-0.505781,-0.010000,
|
||||
0.087685,-0.503259,-0.010000,0.102752,-0.500001,-0.010000,0.117250,-0.496000,-0.010000,0.131289,-0.491249,-0.010000,
|
||||
0.144981,-0.485741,-0.010000,0.158437,-0.479469,-0.010000,0.171769,-0.472426,-0.010000,0.185086,-0.464605,-0.010000,
|
||||
0.198500,-0.456000,-0.010000,-0.107500,-0.230000,-0.010000,-0.103897,-0.212901,-0.010000,-0.099093,-0.197125,-0.010000,
|
||||
-0.093094,-0.182703,-0.010000,-0.085907,-0.169667,-0.010000,-0.077541,-0.158047,-0.010000,-0.068000,-0.147875,-0.010000,
|
||||
-0.057293,-0.139182,-0.010000,-0.045426,-0.132000,-0.010000,-0.032406,-0.126359,-0.010000,-0.018241,-0.122292,-0.010000,
|
||||
-0.002936,-0.119828,-0.010000,0.013500,-0.119000,-0.010000,0.028743,-0.119885,-0.010000,0.042944,-0.122500,-0.010000,
|
||||
0.056063,-0.126781,-0.010000,0.068056,-0.132667,-0.010000,0.078882,-0.140094,-0.010000,0.088500,-0.149000,-0.010000,
|
||||
0.096868,-0.159323,-0.010000,0.103944,-0.171000,-0.010000,0.109687,-0.183969,-0.010000,0.114056,-0.198167,-0.010000,
|
||||
0.117007,-0.213531,-0.010000,0.118500,-0.230000,-0.010000
|
||||
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,
|
||||
-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,
|
||||
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,
|
||||
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,
|
||||
-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,
|
||||
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,
|
||||
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,
|
||||
-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,
|
||||
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,
|
||||
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,
|
||||
-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,
|
||||
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,
|
||||
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,
|
||||
-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,
|
||||
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,
|
||||
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,
|
||||
-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,
|
||||
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,
|
||||
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,
|
||||
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,
|
||||
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,
|
||||
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,
|
||||
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,
|
||||
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,
|
||||
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,
|
||||
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,
|
||||
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,
|
||||
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,
|
||||
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,
|
||||
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,
|
||||
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
|
||||
GeometryVersion: 124
|
||||
LayerElementNormal: 0 {
|
||||
Version: 101
|
||||
Name: ""
|
||||
MappingInformationType: "ByPolygonVertex"
|
||||
ReferenceInformationType: "Direct"
|
||||
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,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,
|
||||
0.000000,0.000000,1.000000,0.000005,-0.000087,-1.000000,0.000005,-0.000087,-1.000000,0.000005,-0.000087,-1.000000,
|
||||
0.000005,0.000086,-1.000000,0.000005,0.000086,-1.000000,0.000005,0.000086,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,-0.000016,-1.000000,0.000000,-0.000016,-1.000000,0.000000,-0.000016,-1.000000,0.000001,-0.000001,-1.000000,
|
||||
0.000001,-0.000001,-1.000000,0.000001,-0.000001,-1.000000,0.000001,0.000014,-1.000000,0.000001,0.000014,-1.000000,
|
||||
0.000001,0.000014,-1.000000,0.000002,-0.000001,-1.000000,0.000002,-0.000001,-1.000000,0.000002,-0.000001,-1.000000,
|
||||
-0.000005,-0.000079,-1.000000,-0.000005,-0.000079,-1.000000,-0.000005,-0.000079,-1.000000,-0.000101,0.002361,-0.999997,
|
||||
-0.000101,0.002361,-0.999997,-0.000101,0.002361,-0.999997,0.000044,0.001093,-0.999999,0.000044,0.001093,-0.999999,
|
||||
0.000044,0.001093,-0.999999,0.000007,-0.000168,-1.000000,0.000007,-0.000168,-1.000000,0.000007,-0.000168,-1.000000,
|
||||
-0.000006,-0.000149,-1.000000,-0.000006,-0.000149,-1.000000,-0.000006,-0.000149,-1.000000,0.000002,-0.000009,-1.000000,
|
||||
0.000002,-0.000009,-1.000000,0.000002,-0.000009,-1.000000,-0.000003,-0.000008,-1.000000,-0.000003,-0.000008,-1.000000,
|
||||
-0.000003,-0.000008,-1.000000,-0.000003,-0.000001,-1.000000,-0.000003,-0.000001,-1.000000,-0.000003,-0.000001,-1.000000,
|
||||
0.000002,0.000048,-1.000000,0.000002,0.000048,-1.000000,0.000002,0.000048,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000012,0.000077,-1.000000,0.000012,0.000077,-1.000000,
|
||||
0.000012,0.000077,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
|
||||
-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000001,-0.000031,-1.000000,0.000001,-0.000031,-1.000000,0.000001,-0.000031,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000003,-0.000001,-1.000000,
|
||||
0.000003,-0.000001,-1.000000,0.000003,-0.000001,-1.000000,0.000001,-0.000010,-1.000000,0.000001,-0.000010,-1.000000,
|
||||
0.000001,-0.000010,-1.000000,-0.000002,0.000028,-1.000000,-0.000002,0.000028,-1.000000,-0.000002,0.000028,-1.000000,
|
||||
0.000004,0.000002,-1.000000,0.000004,0.000002,-1.000000,0.000004,0.000002,-1.000000,-0.000000,0.000000,-1.000000,
|
||||
-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000004,0.000002,-1.000000,0.000004,0.000002,-1.000000,
|
||||
0.000004,0.000002,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000003,0.000010,-1.000000,0.000003,0.000010,-1.000000,0.000003,0.000010,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
|
||||
-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
-0.000008,-0.000019,-1.000000,-0.000008,-0.000019,-1.000000,-0.000008,-0.000019,-1.000000,0.000001,-0.000017,-1.000000,
|
||||
0.000001,-0.000017,-1.000000,0.000001,-0.000017,-1.000000,0.000001,0.000018,-1.000000,0.000001,0.000018,-1.000000,
|
||||
0.000001,0.000018,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000002,-0.000010,-1.000000,
|
||||
-0.000002,-0.000010,-1.000000,-0.000002,-0.000010,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,-0.000002,-0.000015,-1.000000,-0.000002,-0.000015,-1.000000,-0.000002,-0.000015,-1.000000,
|
||||
0.000001,0.000010,-1.000000,0.000001,0.000010,-1.000000,0.000001,0.000010,-1.000000,-0.000000,0.000016,-1.000000,
|
||||
-0.000000,0.000016,-1.000000,-0.000000,0.000016,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
|
||||
-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,-0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,-0.000000,-0.000029,-1.000000,
|
||||
-0.000000,-0.000029,-1.000000,-0.000000,-0.000029,-1.000000,-0.000002,0.000006,-1.000000,-0.000002,0.000006,-1.000000,
|
||||
-0.000002,0.000006,-1.000000,-0.000002,0.000007,-1.000000,-0.000002,0.000007,-1.000000,-0.000002,0.000007,-1.000000,
|
||||
-0.000002,0.000036,-1.000000,-0.000002,0.000036,-1.000000,-0.000002,0.000036,-1.000000,0.000000,0.000000,-1.000000,
|
||||
0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000005,-0.000153,-1.000000,0.000005,-0.000153,-1.000000,
|
||||
0.000005,-0.000153,-1.000000,0.000002,0.000152,-1.000000,0.000002,0.000152,-1.000000,0.000002,0.000152,-1.000000,
|
||||
-0.000002,-0.000161,-1.000000,-0.000002,-0.000161,-1.000000,-0.000002,-0.000161,-1.000000,-0.000024,0.000392,-1.000000,
|
||||
-0.000024,0.000392,-1.000000,-0.000024,0.000392,-1.000000,0.999226,0.039339,0.000000,0.999226,0.039339,0.000000,
|
||||
0.999226,0.039339,0.000000,0.999226,0.039339,0.000000,0.046009,0.998941,0.000000,0.046009,0.998941,0.000000,
|
||||
0.046009,0.998941,0.000000,0.046009,0.998941,0.000000,0.061266,-0.998122,0.000000,0.061266,-0.998122,0.000000,
|
||||
0.061266,-0.998122,0.000000,0.061266,-0.998122,0.000000,0.266041,-0.963962,0.000000,0.266041,-0.963962,0.000000,
|
||||
0.266041,-0.963962,0.000000,0.266041,-0.963962,0.000000,0.257837,0.966188,0.000000,0.257837,0.966188,0.000000,
|
||||
0.257837,0.966188,0.000000,0.257837,0.966188,0.000000,-0.964185,-0.265231,0.000000,-0.964185,-0.265231,0.000000,
|
||||
-0.964185,-0.265231,0.000000,-0.964185,-0.265231,0.000000,0.891169,0.453671,0.000000,0.891169,0.453671,0.000000,
|
||||
0.891169,0.453671,0.000000,0.891169,0.453671,0.000000,0.058504,0.998287,0.000000,0.058504,0.998287,0.000000,
|
||||
0.058504,0.998287,0.000000,0.058504,0.998287,0.000000,-0.998622,-0.052470,0.000000,-0.998622,-0.052470,0.000000,
|
||||
-0.998622,-0.052470,0.000000,-0.998622,-0.052470,0.000000,0.873892,0.486120,0.000000,0.873892,0.486120,0.000000,
|
||||
0.873892,0.486120,0.000000,0.873892,0.486120,0.000000,-0.565698,-0.824613,0.000000,-0.565698,-0.824613,0.000000,
|
||||
-0.565698,-0.824613,0.000000,-0.565698,-0.824613,0.000000,-0.191781,0.981438,0.000000,-0.191781,0.981438,0.000000,
|
||||
-0.191781,0.981438,0.000000,-0.191781,0.981438,0.000000,0.875753,-0.482759,0.000000,0.875753,-0.482759,0.000000,
|
||||
0.875753,-0.482759,0.000000,0.875753,-0.482759,0.000000,0.958642,0.284615,0.000000,0.958642,0.284615,0.000000,
|
||||
0.958642,0.284615,0.000000,0.958642,0.284615,0.000000,-0.779633,0.626237,0.000000,-0.779633,0.626237,0.000000,
|
||||
-0.779633,0.626237,0.000000,-0.779633,0.626237,0.000000,0.630293,-0.776358,0.000000,0.630293,-0.776358,0.000000,
|
||||
0.630293,-0.776358,0.000000,0.630293,-0.776358,0.000000,0.506395,-0.862302,0.000000,0.506395,-0.862302,0.000000,
|
||||
0.506395,-0.862302,0.000000,0.506395,-0.862302,0.000000,-0.400578,0.916263,0.000000,-0.400578,0.916263,0.000000,
|
||||
-0.400578,0.916263,0.000000,-0.400578,0.916263,0.000000,-0.574185,0.818726,0.000000,-0.574185,0.818726,0.000000,
|
||||
-0.574185,0.818726,0.000000,-0.574185,0.818726,0.000000,0.718785,0.695232,0.000000,0.718785,0.695232,0.000000,
|
||||
0.718785,0.695232,0.000000,0.718785,0.695232,0.000000,0.322338,0.946625,0.000000,0.322338,0.946625,0.000000,
|
||||
0.322338,0.946625,0.000000,0.322338,0.946625,0.000000,-0.212607,-0.977138,0.000000,-0.212607,-0.977138,0.000000,
|
||||
-0.212607,-0.977138,0.000000,-0.212607,-0.977138,0.000000,-0.311385,0.950284,0.000000,-0.311385,0.950284,0.000000,
|
||||
-0.311385,0.950284,0.000000,-0.311385,0.950284,0.000000,0.158135,-0.987418,0.000000,0.158135,-0.987418,0.000000,
|
||||
0.158135,-0.987418,0.000000,0.158135,-0.987418,0.000000,0.717700,0.696352,0.000000,0.717700,0.696352,0.000000,
|
||||
0.717700,0.696352,0.000000,0.717700,0.696352,0.000000,0.050320,-0.998733,0.000000,0.050320,-0.998733,0.000000,
|
||||
0.050320,-0.998733,0.000000,0.050320,-0.998733,0.000000,-0.492641,-0.870232,0.000000,-0.492641,-0.870232,0.000000,
|
||||
-0.492641,-0.870232,0.000000,-0.492641,-0.870232,0.000000,0.956623,-0.291328,0.000000,0.956623,-0.291328,0.000000,
|
||||
0.956623,-0.291328,0.000000,0.956623,-0.291328,0.000000,-0.917474,0.397796,0.000000,-0.917474,0.397796,0.000000,
|
||||
-0.917474,0.397796,0.000000,-0.917474,0.397796,0.000000,-0.030731,0.999528,0.000000,-0.030731,0.999528,0.000000,
|
||||
-0.030731,0.999528,0.000000,-0.030731,0.999528,0.000000,0.422471,-0.906376,0.000000,0.422471,-0.906376,0.000000,
|
||||
0.422471,-0.906376,0.000000,0.422471,-0.906376,0.000000,-0.474526,0.880241,0.000000,-0.474526,0.880241,0.000000,
|
||||
-0.474526,0.880241,0.000000,-0.474526,0.880241,0.000000,-0.150724,0.988576,0.000000,-0.150724,0.988576,0.000000,
|
||||
-0.150724,0.988576,0.000000,-0.150724,0.988576,0.000000,-0.310258,-0.950652,0.000000,-0.310258,-0.950652,0.000000,
|
||||
-0.310258,-0.950652,0.000000,-0.310258,-0.950652,0.000000,0.598419,0.801183,0.000000,0.598419,0.801183,0.000000,
|
||||
0.598419,0.801183,0.000000,0.598419,0.801183,0.000000,0.019248,-0.999815,0.000000,0.019248,-0.999815,0.000000,
|
||||
0.019248,-0.999815,0.000000,0.019248,-0.999815,0.000000,0.497183,0.867646,0.000000,0.497183,0.867646,0.000000,
|
||||
0.497183,0.867646,0.000000,0.497183,0.867646,0.000000,0.276002,-0.961157,0.000000,0.276002,-0.961157,0.000000,
|
||||
0.276002,-0.961157,0.000000,0.276002,-0.961157,0.000000,-0.914356,-0.404911,0.000000,-0.914356,-0.404911,0.000000,
|
||||
-0.914356,-0.404911,0.000000,-0.914356,-0.404911,0.000000,0.991968,0.126486,0.000000,0.991968,0.126486,0.000000,
|
||||
0.991968,0.126486,0.000000,0.991968,0.126486,0.000000,-0.986370,0.164542,0.000000,-0.986370,0.164542,0.000000,
|
||||
-0.986370,0.164542,0.000000,-0.986370,0.164542,0.000000,0.146696,0.989182,0.000000,0.146696,0.989182,0.000000,
|
||||
0.146696,0.989182,0.000000,0.146696,0.989182,0.000000,-0.927713,-0.373294,0.000000,-0.927713,-0.373294,0.000000,
|
||||
-0.927713,-0.373294,0.000000,-0.927713,-0.373294,0.000000,-0.955789,-0.294053,0.000000,-0.955789,-0.294053,0.000000,
|
||||
-0.955789,-0.294053,0.000000,-0.955789,-0.294053,0.000000,-0.776825,-0.629717,0.000000,-0.776825,-0.629717,0.000000,
|
||||
-0.776825,-0.629717,0.000000,-0.776825,-0.629717,0.000000,0.320558,-0.947229,0.000000,0.320558,-0.947229,0.000000,
|
||||
0.320558,-0.947229,0.000000,0.320558,-0.947229,0.000000,-0.534273,0.845312,0.000000,-0.534273,0.845312,0.000000,
|
||||
-0.534273,0.845312,0.000000,-0.534273,0.845312,0.000000,-0.062464,0.998047,0.000000,-0.062464,0.998047,0.000000,
|
||||
-0.062464,0.998047,0.000000,-0.062464,0.998047,0.000000,-0.807967,-0.589228,0.000000,-0.807967,-0.589228,0.000000,
|
||||
-0.807967,-0.589228,0.000000,-0.807967,-0.589228,0.000000,-0.995915,-0.090291,0.000000,-0.995915,-0.090291,0.000000,
|
||||
-0.995915,-0.090291,0.000000,-0.995915,-0.090291,0.000000,0.978513,-0.206187,0.000000,0.978513,-0.206187,0.000000,
|
||||
0.978513,-0.206187,0.000000,0.978513,-0.206187,0.000000,0.107768,-0.994176,0.000000,0.107768,-0.994176,0.000000,
|
||||
0.107768,-0.994176,0.000000,0.107768,-0.994176,0.000000,0.924157,0.382013,0.000000,0.924157,0.382013,0.000000,
|
||||
0.924157,0.382013,0.000000,0.924157,0.382013,0.000000,0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,
|
||||
0.000000,-1.000000,0.000000,0.000000,-1.000000,0.000000,0.376411,0.926453,0.000000,0.376411,0.926453,0.000000,
|
||||
0.376411,0.926453,0.000000,0.376411,0.926453,0.000000,-0.987395,-0.158276,0.000000,-0.987395,-0.158276,0.000000,
|
||||
-0.987395,-0.158276,0.000000,-0.987395,-0.158276,0.000000,-0.323209,0.946328,0.000000,-0.323209,0.946328,0.000000,
|
||||
-0.323209,0.946328,0.000000,-0.323209,0.946328,0.000000,-0.357903,0.933759,0.000000,-0.357903,0.933759,0.000000,
|
||||
-0.357903,0.933759,0.000000,-0.357903,0.933759,0.000000,0.942234,0.334956,0.000000,0.942234,0.334956,0.000000,
|
||||
0.942234,0.334956,0.000000,0.942234,0.334956,0.000000,0.729380,-0.684108,0.000000,0.729380,-0.684108,0.000000,
|
||||
0.729380,-0.684108,0.000000,0.729380,-0.684108,0.000000,0.980587,0.196082,0.000000,0.980587,0.196082,0.000000,
|
||||
0.980587,0.196082,0.000000,0.980587,0.196082,0.000000,-0.684469,0.729042,0.000000,-0.684469,0.729042,0.000000,
|
||||
-0.684469,0.729042,0.000000,-0.684469,0.729042,0.000000,0.517786,-0.855510,0.000000,0.517786,-0.855510,0.000000,
|
||||
0.517786,-0.855510,0.000000,0.517786,-0.855510,0.000000,0.817210,0.576340,0.000000,0.817210,0.576340,0.000000,
|
||||
0.817210,0.576340,0.000000,0.817210,0.576340,0.000000,0.185330,0.982676,0.000000,0.185330,0.982676,0.000000,
|
||||
0.185330,0.982676,0.000000,0.185330,0.982676,0.000000,0.539949,-0.841698,0.000000,0.539949,-0.841698,0.000000,
|
||||
0.539949,-0.841698,0.000000,0.539949,-0.841698,0.000000,-0.998579,0.053285,0.000000,-0.998579,0.053285,0.000000,
|
||||
-0.998579,0.053285,0.000000,-0.998579,0.053285,0.000000,0.463080,0.886316,0.000000,0.463080,0.886316,0.000000,
|
||||
0.463080,0.886316,0.000000,0.463080,0.886316,0.000000,-0.356216,-0.934404,0.000000,-0.356216,-0.934404,0.000000,
|
||||
-0.356216,-0.934404,0.000000,-0.356216,-0.934404,0.000000,-0.261143,0.965300,0.000000,-0.261143,0.965300,0.000000,
|
||||
-0.261143,0.965300,0.000000,-0.261143,0.965300,0.000000,0.811513,-0.584335,0.000000,0.811513,-0.584335,0.000000,
|
||||
0.811513,-0.584335,0.000000,0.811513,-0.584335,0.000000,0.211355,-0.977409,0.000000,0.211355,-0.977409,0.000000,
|
||||
0.211355,-0.977409,0.000000,0.211355,-0.977409,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,
|
||||
1.000000,0.000000,0.000000,1.000000,0.000000,0.000000,0.805302,0.592864,0.000000,0.805302,0.592864,0.000000,
|
||||
0.805302,0.592864,0.000000,0.805302,0.592864,0.000000,-0.091574,0.995798,0.000000,-0.091574,0.995798,0.000000,
|
||||
-0.091574,0.995798,0.000000,-0.091574,0.995798,0.000000,-0.855218,-0.518268,0.000000,-0.855218,-0.518268,0.000000,
|
||||
-0.855218,-0.518268,0.000000,-0.855218,-0.518268,0.000000,0.923310,-0.384055,0.000000,0.923310,-0.384055,0.000000,
|
||||
0.923310,-0.384055,0.000000,0.923310,-0.384055,0.000000,0.613271,0.789872,0.000000,0.613271,0.789872,0.000000,
|
||||
0.613271,0.789872,0.000000,0.613271,0.789872,0.000000,0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,
|
||||
0.000000,1.000000,0.000000,0.000000,1.000000,0.000000,-0.452277,0.891878,0.000000,-0.452277,0.891878,0.000000,
|
||||
-0.452277,0.891878,0.000000,-0.452277,0.891878,0.000000,-0.876269,-0.481823,0.000000,-0.876269,-0.481823,0.000000,
|
||||
-0.876269,-0.481823,0.000000,-0.876269,-0.481823,0.000000,-0.181064,-0.983471,0.000000,-0.181064,-0.983471,0.000000,
|
||||
-0.181064,-0.983471,0.000000,-0.181064,-0.983471,0.000000,-0.439419,0.898282,0.000000,-0.439419,0.898282,0.000000,
|
||||
-0.439419,0.898282,0.000000,-0.439419,0.898282,0.000000,-0.057989,-0.998317,0.000000,-0.057989,-0.998317,0.000000,
|
||||
-0.057989,-0.998317,0.000000,-0.057989,-0.998317,0.000000,-0.440548,-0.897729,0.000000,-0.440548,-0.897729,0.000000,
|
||||
-0.440548,-0.897729,0.000000,-0.440548,-0.897729,0.000000,-0.615647,-0.788022,0.000000,-0.615647,-0.788022,0.000000,
|
||||
-0.615647,-0.788022,0.000000,-0.615647,-0.788022,0.000000,-0.506073,0.862490,0.000000,-0.506073,0.862490,0.000000,
|
||||
-0.506073,0.862490,0.000000,-0.506073,0.862490,0.000000,-0.857536,0.514423,0.000000,-0.857536,0.514423,0.000000,
|
||||
-0.857536,0.514423,0.000000,-0.857536,0.514423,0.000000,0.158924,-0.987291,0.000000,0.158924,-0.987291,0.000000,
|
||||
0.158924,-0.987291,0.000000,0.158924,-0.987291,0.000000,-0.207446,0.978246,0.000000,-0.207446,0.978246,0.000000,
|
||||
-0.207446,0.978246,0.000000,-0.207446,0.978246,0.000000,-0.982046,-0.188641,0.000000,-0.982046,-0.188641,0.000000,
|
||||
-0.982046,-0.188641,0.000000,-0.982046,-0.188641,0.000000,-0.679434,-0.733736,0.000000,-0.679434,-0.733736,0.000000,
|
||||
-0.679434,-0.733736,0.000000,-0.679434,-0.733736,0.000000,0.467122,-0.884193,0.000000,0.467122,-0.884193,0.000000,
|
||||
0.467122,-0.884193,0.000000,0.467122,-0.884193,0.000000,0.974326,0.225143,0.000000,0.974326,0.225143,0.000000,
|
||||
0.974326,0.225143,0.000000,0.974326,0.225143,0.000000,-0.959959,0.280142,0.000000,-0.959959,0.280142,0.000000,
|
||||
-0.959959,0.280142,0.000000,-0.959959,0.280142,0.000000,0.397534,-0.917587,0.000000,0.397534,-0.917587,0.000000,
|
||||
0.397534,-0.917587,0.000000,0.397534,-0.917587,0.000000,-0.721249,-0.692676,0.000000,-0.721249,-0.692676,0.000000,
|
||||
-0.721249,-0.692676,0.000000,-0.721249,-0.692676,0.000000,-0.069109,-0.997609,0.000000,-0.069109,-0.997609,0.000000,
|
||||
-0.069109,-0.997609,0.000000,-0.069109,-0.997609,0.000000,0.373215,-0.927745,0.000000,0.373215,-0.927745,0.000000,
|
||||
0.373215,-0.927745,0.000000,0.373215,-0.927745,0.000000
|
||||
}
|
||||
LayerElementMaterial: 0 {
|
||||
Version: 101
|
||||
Name: ""
|
||||
MappingInformationType: "AllSame"
|
||||
ReferenceInformationType: "IndexToDirect"
|
||||
Materials: 0
|
||||
}
|
||||
Layer: 0 {
|
||||
Version: 100
|
||||
LayerElement: {
|
||||
Type: "LayerElementNormal"
|
||||
TypedIndex: 0
|
||||
}
|
||||
LayerElement: {
|
||||
Type: "LayerElementTexture"
|
||||
TypedIndex: 0
|
||||
}
|
||||
LayerElement: {
|
||||
Type: "LayerElementMaterial"
|
||||
TypedIndex: 0
|
||||
}
|
||||
}
|
||||
}
|
||||
Material: "Material::unnamed", "" {
|
||||
Version: 102
|
||||
ShadingModel: "phong"
|
||||
MultiLayer: 0
|
||||
Properties60: {
|
||||
Property: "ShadingModel", "KString", "", "Phong"
|
||||
Property: "MultiLayer", "bool", "",0
|
||||
Property: "EmissiveColor", "ColorRGB", "",0.8000,0.8000,0.8000
|
||||
Property: "EmissiveFactor", "double", "",0.0000
|
||||
Property: "AmbientColor", "ColorRGB", "",1.0000,1.0000,1.0000
|
||||
Property: "AmbientFactor", "double", "",1.0000
|
||||
Property: "DiffuseColor", "ColorRGB", "",0.8000,0.8000,0.8000
|
||||
Property: "DiffuseFactor", "double", "",0.8000
|
||||
Property: "Bump", "Vector3D", "",0,0,0
|
||||
Property: "TransparentColor", "ColorRGB", "",1,1,1
|
||||
Property: "TransparencyFactor", "double", "",0.0000
|
||||
Property: "SpecularColor", "ColorRGB", "",1.0000,1.0000,1.0000
|
||||
Property: "SpecularFactor", "double", "",0.5000
|
||||
Property: "ShininessExponent", "double", "",12.3
|
||||
Property: "ReflectionColor", "ColorRGB", "",0,0,0
|
||||
Property: "ReflectionFactor", "double", "",1
|
||||
Property: "Emissive", "ColorRGB", "",0,0,0
|
||||
Property: "Ambient", "ColorRGB", "",1.0,1.0,1.0
|
||||
Property: "Diffuse", "ColorRGB", "",0.8,0.8,0.8
|
||||
Property: "Specular", "ColorRGB", "",1.0,1.0,1.0
|
||||
Property: "Shininess", "double", "",12.3
|
||||
Property: "Opacity", "double", "",1.0
|
||||
Property: "Reflectivity", "double", "",0
|
||||
}
|
||||
}
|
||||
Pose: "Pose::BIND_POSES", "BindPose" {
|
||||
Type: "BindPose"
|
||||
Version: 100
|
||||
Properties60: {
|
||||
}
|
||||
NbPoseNodes: 1
|
||||
PoseNode: {
|
||||
Node: "Model::e"
|
||||
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
|
||||
}
|
||||
}
|
||||
GlobalSettings: {
|
||||
Version: 1000
|
||||
Properties60: {
|
||||
Property: "UpAxis", "int", "",1
|
||||
Property: "UpAxisSign", "int", "",1
|
||||
Property: "FrontAxis", "int", "",2
|
||||
Property: "FrontAxisSign", "int", "",1
|
||||
Property: "CoordAxis", "int", "",0
|
||||
Property: "CoordAxisSign", "int", "",1
|
||||
Property: "UnitScaleFactor", "double", "",1
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
; Objeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeect reeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeelations
|
||||
;------------------------------------------------------------------
|
||||
|
||||
Relations: {
|
||||
Model: "Model::e", "Mesh" {
|
||||
}
|
||||
Model: "Model::Producer Perspective", "Camera" {
|
||||
}
|
||||
Model: "Model::Producer Top", "Camera" {
|
||||
}
|
||||
Model: "Model::Producer Bottom", "Camera" {
|
||||
}
|
||||
Model: "Model::Producer Front", "Camera" {
|
||||
}
|
||||
Model: "Model::Producer Back", "Camera" {
|
||||
}
|
||||
Model: "Model::Producer Right", "Camera" {
|
||||
}
|
||||
Model: "Model::Producer Left", "Camera" {
|
||||
}
|
||||
Model: "Model::Camera Switcher", "CameraSwitcher" {
|
||||
}
|
||||
Material: "Material::unnamed", "" {
|
||||
}
|
||||
}
|
||||
|
||||
; Objeeeeeeeeeeeeeeeeeeeeect conneeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeections
|
||||
;------------------------------------------------------------------
|
||||
|
||||
Connections: {
|
||||
Connect: "OO", "Model::e", "Model::Scene"
|
||||
Connect: "OO", "Material::unnamed", "Model::e"
|
||||
}
|
||||
;Takeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeees and animation seeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeection
|
||||
;----------------------------------------------------
|
||||
|
||||
Takes: {
|
||||
Current: ""
|
||||
}
|
||||
;Veeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeersion 5 seeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeettings
|
||||
;------------------------------------------------------------------
|
||||
|
||||
Version5: {
|
||||
AmbientRenderSettings: {
|
||||
Version: 101
|
||||
AmbientLightColor: 0.0,0.0,0.0,0
|
||||
}
|
||||
FogOptions: {
|
||||
FogEnable: 0
|
||||
FogMode: 0
|
||||
FogDensity: 0.000
|
||||
FogStart: 5.000
|
||||
FogEnd: 25.000
|
||||
FogColor: 0.1,0.1,0.1,1
|
||||
}
|
||||
Settings: {
|
||||
FrameRate: "24"
|
||||
TimeFormat: 1
|
||||
SnapOnFrames: 0
|
||||
ReferenceTimeIndex: -1
|
||||
TimeLineStartTime: 0
|
||||
TimeLineStopTime: 479181389250
|
||||
}
|
||||
RendererSetting: {
|
||||
DefaultCamera: "Producer Perspective"
|
||||
DefaultViewingMode: 0
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
void main() => runApp(E());
|
||||
|
||||
class E extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return MaterialApp(
|
||||
home: Center(
|
||||
child: Text(
|
||||
'E',
|
||||
textScaleFactor: 5.0,
|
||||
),
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
[<EntryPoint>]
|
||||
let e ee =
|
||||
while 'e' = 'e' do
|
||||
printf "e"
|
||||
int 'e'
|
||||
6
e.go
6
e.go
|
|
@ -1,11 +1,7 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
)
|
||||
|
||||
func main() {
|
||||
for {
|
||||
fmt.Print("e")
|
||||
print("e")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
<?hh // strict
|
||||
|
||||
<<__Entrypoint>>
|
||||
function main(): void {
|
||||
while(true) {
|
||||
echo 'e';
|
||||
}
|
||||
}
|
||||
3
e.hs
3
e.hs
|
|
@ -1,3 +1,2 @@
|
|||
import Control.Monad.Fix
|
||||
main = putStr $ fix ('e':)
|
||||
main = putStr $ cycle "e"
|
||||
|
||||
|
|
|
|||
18
e.html
18
e.html
|
|
@ -2,11 +2,23 @@
|
|||
<html>
|
||||
|
||||
<head>
|
||||
<script>console.log('e');</script>
|
||||
<title>e</title>
|
||||
<style>
|
||||
[e] {
|
||||
word-wrap:break-word;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
<h1>e</h1>
|
||||
<h1 e>e</h1>
|
||||
|
||||
<script>
|
||||
let e = document.querySelector("[e]");
|
||||
setInterval(() => {
|
||||
e.innerHTML += "e";
|
||||
}, 1);
|
||||
</script>
|
||||
</body>
|
||||
|
||||
</html>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
<% while "e" do %>
|
||||
e
|
||||
<% end %>
|
||||
|
|
@ -0,0 +1,36 @@
|
|||
.class private auto ansi beforefieldinit eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
|
||||
extends [mscorlib]System.Object
|
||||
{
|
||||
.method private hidebysig static
|
||||
void Main (
|
||||
string[] args
|
||||
) cil managed
|
||||
{
|
||||
.maxstack 1
|
||||
.entrypoint
|
||||
.locals init (
|
||||
[0] bool
|
||||
)
|
||||
|
||||
IL_0000: nop
|
||||
IL_0001: br.s IL_000B
|
||||
// (char)101 == 'e'
|
||||
IL_0003: ldc.i4.s 101
|
||||
IL_0005: call void [mscorlib]System.Console::Write(char)
|
||||
IL_000A: nop
|
||||
IL_000B: ldc.i4.1
|
||||
IL_000C: stloc.0
|
||||
IL_000D: br.s IL_0003
|
||||
}
|
||||
|
||||
.method public hidebysig specialname rtspecialname
|
||||
instance void .ctor () cil managed
|
||||
{
|
||||
.maxstack 8
|
||||
|
||||
IL_0000: ldarg.0
|
||||
IL_0001: call instance void [mscorlib]System.Object::.ctor()
|
||||
IL_0006: nop
|
||||
IL_0007: ret
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
#define e 'e'
|
||||
#define eee uint32_t(e-e/e)
|
||||
void setup(){
|
||||
Serial.begin(eee*eee*eee);
|
||||
while(!Serial);
|
||||
}
|
||||
void loop(){
|
||||
Serial.print(e);
|
||||
delay(e);
|
||||
}
|
||||
|
|
@ -0,0 +1 @@
|
|||
Ə
|
||||
4
e.java
4
e.java
|
|
@ -1,7 +1,7 @@
|
|||
public class e {
|
||||
|
||||
public static void main(String[] args) {
|
||||
while(true) {
|
||||
public static void main(String[] e) {
|
||||
while("e".equals("e")) {
|
||||
System.out.print("e");
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,33 @@
|
|||
import React, { Component } from 'react';
|
||||
|
||||
class E extends Component {
|
||||
constructor(props) {
|
||||
super(props);
|
||||
|
||||
this.state = {
|
||||
e: 0,
|
||||
};
|
||||
|
||||
this.timer = this.timer.bind(this);
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
const eId = setInterval(this.timer, 10);
|
||||
this.setState({ eInterval: eId });
|
||||
}
|
||||
|
||||
componentWillUnmount() {
|
||||
clearInterval(this.state.eInterval);
|
||||
}
|
||||
|
||||
timer() {
|
||||
this.setState({ e: this.state.e + 1 });
|
||||
}
|
||||
|
||||
render() {
|
||||
const e = Array(this.state.e).fill(<p>e</p>);
|
||||
return e;
|
||||
}
|
||||
}
|
||||
|
||||
export default E;
|
||||
4
e.kt
4
e.kt
|
|
@ -1,5 +1,5 @@
|
|||
fun main(args: Array<String>) {
|
||||
fun main() {
|
||||
while (true) {
|
||||
println("e")
|
||||
print("e")
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,36 @@
|
|||
#define SYS_write 4
|
||||
#define STDOUT 1
|
||||
#define PIPE_SIZE 0x10000
|
||||
|
||||
.arm
|
||||
.align 4
|
||||
|
||||
.section .text, "ax", %progbits
|
||||
|
||||
type _start, %function
|
||||
globl _start
|
||||
_start:
|
||||
mov r1, #PIPE_SIZE
|
||||
|
||||
ldr r3, =('e'|('e'<<8)|('e'<<16)|('e'<<24))
|
||||
mov r4, r3
|
||||
mov r5, r3
|
||||
mov r6, r3
|
||||
|
||||
.Lloop:
|
||||
push {r3-r6}
|
||||
sub r1, #(4*4)
|
||||
cmp r1, #0
|
||||
bgt .Lloop
|
||||
|
||||
mov r7, #SYS_write
|
||||
mov r1, sp
|
||||
mov r2, #PIPE_SIZE
|
||||
|
||||
.Lcall:
|
||||
mov r0, #STDIN
|
||||
swi #0
|
||||
b .Lcall
|
||||
|
||||
.align 4
|
||||
.pool
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
HAI 1.2
|
||||
CAN HAS STDIO?
|
||||
|
||||
IM IN YR nonStopE BTW this loop is infinite
|
||||
|
||||
BOTH SAEM "e" AN "e", O RLY?
|
||||
YA RLY
|
||||
VISIBLE "e"
|
||||
NO WAI
|
||||
VISIBLE "impossible bruh"
|
||||
OIC
|
||||
|
||||
IM OUTTA YR nonStopE
|
||||
|
||||
KTHXBYE
|
||||
|
|
@ -0,0 +1,31 @@
|
|||
bits 16
|
||||
org 0x7C00
|
||||
|
||||
_start:
|
||||
; enable cursor
|
||||
xor cx, cx
|
||||
mov ch, 00100000b
|
||||
mov ah, 1
|
||||
int 0x10
|
||||
|
||||
; move cursor to top
|
||||
xor dx, dx
|
||||
xor bx, bx
|
||||
inc ah
|
||||
int 0x10
|
||||
|
||||
; print 1 char
|
||||
mov ax, 'e'|(0x0E<<8)
|
||||
.loop:
|
||||
int 0x10
|
||||
jmp short .loop
|
||||
|
||||
END:
|
||||
times 0x200-2-(END-_start) db 'e'
|
||||
db 0x55,0xAA
|
||||
|
||||
stack:
|
||||
|
||||
%if END-_org > 0x200-2
|
||||
%error "Not enough space!"
|
||||
%endif
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
Lei ha clacsonato
|
||||
voglio Linux, Necchi come se fosse 2
|
||||
voglio Bernarda, Necchi come se fosse 1
|
||||
voglio testate, Mascetti come se fosse 101
|
||||
stuzzica bituma, che se continui ti arrivano
|
||||
testate a posterdati
|
||||
e brematura anche, se Linux maggiore di Bernarda
|
||||
|
||||
voglio pazzofurioso, Necchi come se fosse 0
|
||||
vaffanzum pazzofurioso!
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
# eeeeeeeeeeeeee eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee eee eeeeeeeeeeeeeeeeeeeee
|
||||
- ## eeeeeee
|
||||
> eeeeeeeeeeee ee eeeeeeeee eeeeeeeeeeeeee *_*eeeeeeeeeeeeeeeeeeee eeeeeee eeee eeeeeeeeeeeeeeeeeeee eee eeeeeeeeee*_* eeeee eeeeeeeeee
|
||||
eeeee eeeee eeeeeeeeeeeeeeee eeeeeeeeeeeee e eeeeeeeeeeee
|
||||
- ## eeeeeeeeee e
|
||||
|
||||
| eeee |eeeeeeeee e eee|
|
||||
| :----: | :----------: |
|
||||
| e | e eeee e eeeeeeeeee eee|
|
||||
|ee eeeeeeeeee e | ee e eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee |
|
||||
|
||||
- ## ee eeeeeeee eee
|
||||
[eeeeeeeeeeeeeeee eee eeeeeeeeeeeeeeeeeeeeee e eeeeee](http://e.ee)
|
||||
|
|
@ -0,0 +1 @@
|
|||
e=e
|
||||
9
e.py
9
e.py
|
|
@ -1,7 +1,8 @@
|
|||
import sys
|
||||
|
||||
try:
|
||||
while True:
|
||||
sys.stdout.write('e')
|
||||
except KeyboardInterrupt:
|
||||
sys.exit(0)
|
||||
while 'e':
|
||||
sys.stdout.write('e')
|
||||
except KeyboardInterrupt as e:
|
||||
sys.exit('e')
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
import QtQuick 2.0
|
||||
Image {
|
||||
width: 1000; height: 1000
|
||||
fillMode: Image.Tile
|
||||
source: "https://raw.githubusercontent.com/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee/eeeeeeeeeeeeeeeeeeeeeeee/e.png"
|
||||
sourceSize.width: 10
|
||||
sourceSize.height: 10
|
||||
}
|
||||
|
|
@ -0,0 +1,10 @@
|
|||
#lang racket
|
||||
|
||||
(define eee display)
|
||||
|
||||
(define (e ee)
|
||||
(eee ee)
|
||||
(e ee))
|
||||
|
||||
(module* main #f
|
||||
(e #\e))
|
||||
|
|
@ -0,0 +1,95 @@
|
|||
#C 'e' ticker in Conway's Game of Life.
|
||||
#C To run: copy this file's contents and Edit>Paste into Golly, then hit Enter/Return to start
|
||||
#C Golly can be downloaded from https://golly.sourceforge.net
|
||||
#C
|
||||
#C Created with PM_2Ring's script at http://www.conwaylife.com/forums/viewtopic.php?f=9&t=45&start=25#p1342
|
||||
#C (then fixed by hand because i accidentally fed the script an uppercase E)
|
||||
#C
|
||||
#C eeee
|
||||
|
||||
x = 228, y = 235, rule = B3/S23
|
||||
42b2o$42bo$31bo8bobo$29bobo8b2o$20bo7bobo$19b2o6bo2bo$8b2o8b2o4b2o2bob
|
||||
o$8b2o7b3o4b2o3bobo10b2o12b2o$18b2o4b2o5bo10bo13b2o$19b2o19bobo$20bo
|
||||
19b2o$32bo$33bo$31b3o2$56bo$27b3o25b3o59b2o$29bo24b5o58bo$28bo24bobobo
|
||||
bo46bo8bobo$32b2o19b2o3b2o44bobo8b2o$32b2o61bo7bobo$o6bo86b2o6bo2bo$3o
|
||||
4b3o46bo26b2o8b2o4b2o2bobo$3bo6bo9b2o33bobo25b2o7b3o4b2o3bobo10b2o12b
|
||||
2o$2b2o5b2o8bobo33bob2o34b2o4b2o5bo10bo13b2o$21bo34b3o35b2o19bobo$47bo
|
||||
8bo2bo35bo19b2o$48bo8b3o47bo$46b3o7bo3bo47bo$55bo5bo44b3o$50bo5bo3bo$
|
||||
12b3o4b2o22b2o4bo7b3o71bo$4b3o7bo4b2o22b2o4b3o50b3o25b3o59b2o$3bo3bo5b
|
||||
o90bo24b5o58bo$2bo5bo94bo24bobobobo46bo8bobo$3bo3bo99b2o19b2o3b2o44bob
|
||||
o8b2o$4b3o100b2o61bo7bobo$4bo2bo67bo6bo86b2o6bo2bo$5b3o67b3o4b3o46bo
|
||||
26b2o8b2o4b2o2bobo$5b2obo44b2o5b2o16bo6bo9b2o33bobo25b2o7b3o4b2o3bobo
|
||||
10b2o12b2o$6bobo44bo6bo16b2o5b2o8bobo33bob2o34b2o4b2o5bo10bo13b2o$7bo
|
||||
46b3o4b3o32bo34b3o35b2o19bobo$23b2o31bo6bo67bo2bo35bo19b2o$23bobo4b2o
|
||||
100b3o47bo$4b2o3b2o12bo6b2o99bo3bo47bo$4bobobobo119bo5bo44b3o$5b5o115b
|
||||
o5bo3bo$6b3o78b3o4b2o22b2o4bo7b3o71bo$7bo71b3o7bo4b2o22b2o4b3o78b3o$
|
||||
78bo3bo5bo115b5o$30b3o44bo5bo119bobobobo$30bo47bo3bo7b3o89b2o19b2o3b2o
|
||||
$31bo47b3o8bo91b2o$43bo35bo2bo8bo58bo6bo$43b2o35b3o67b3o4b3o46bo$6b2o
|
||||
24bo5b2o4b2o34b2obo44b2o5b2o16bo6bo44bobo$6b2o24bobo3b2o4b3o7b2o25bobo
|
||||
44bo6bo16b2o5b2o44bob2o$33bobo2b2o4b2o8b2o26bo46b3o4b3o67b3o$33bo2bo6b
|
||||
2o86bo6bo67bo2bo$17bo15bobo7bo61b2o100b3o$15b2o5b2o8bobo44b2o3b2o19b2o
|
||||
99bo3bo$16b2o3bobo8bo46bobobobo24bo94bo5bo$21bo58b5o24bo90bo5bo3bo$20b
|
||||
2o59b3o25b3o50b3o4b2o22b2o4bo7b3o$37bobo42bo71b3o7bo4b2o22b2o4b3o$37bo
|
||||
2bo112bo3bo5bo$22bo6bo10b2o63b3o44bo5bo$8bobo10bobo5bo8bo3b2o7bo53bo
|
||||
47bo3bo7b3o$8b2o10bob2o6bo9b2o7bobo46bobo5bo47b3o8bo$9bo4b2o3b2ob2o9b
|
||||
2o2bo2bo7bobo17bo29b2o18bo35bo2bo8bo$14b2o4bob2o5b3o2bo2bobo7bo2bo16b
|
||||
2o30bo18b2o35b3o$21bobo7b4o13bobo15b2o4b2o7b2o24bo5b2o4b2o34b2obo44b2o
|
||||
5b2o$22bo9b2o15bobo13b3o4b2o2b2o3b2o24bobo3b2o4b3o7b2o25bobo44bo6bo$
|
||||
51bo4bobo7b2o4b2o2b2o30bobo2b2o4b2o8b2o26bo46b3o4b3o$2bo53b2o9b2o39bo
|
||||
2bo6b2o53b2o31bo6bo$2o55bo10bo39bobo7bo54bobo4b2o$b2o37bo56b2o8bobo44b
|
||||
2o3b2o12bo6b2o$41b2o53bobo8bo46bobobobo$40b2o54bo58b5o$95b2o59b3o$50bo
|
||||
61bobo42bo$48b2o62bo2bo$49b2o46bo6bo10b2o63b3o$6bo2bo26bo2bo43bobo10bo
|
||||
bo5bo8bo3b2o7bo53bo$5bo14b4o11bo47b2o10bob2o6bo9b2o7bobo54bo$5bo3bo10b
|
||||
o3bo10bo3bo44bo4b2o3b2ob2o9b2o2bo2bo7bobo17bo49bo$5b4o11bo14b4o50b2o4b
|
||||
ob2o5b3o2bo2bobo7bo2bo16b2o49b2o$21bo2bo71bobo7b4o13bobo15b2o4b2o7b2o
|
||||
24bo5b2o4b2o$56b2o39bo9b2o15bobo13b3o4b2o2b2o3b2o24bobo3b2o4b3o7b2o$
|
||||
44b3o2bo5bo3bo66bo4bobo7b2o4b2o2b2o30bobo2b2o4b2o8b2o$40bo3bo9bo5bo3b
|
||||
2o11bo53b2o9b2o39bo2bo6b2o$38bobo4bo8bo3bob2o2b2o9b2o55bo10bo39bobo7bo
|
||||
$30b2o4b2o16bo5bo15b2o37bo56b2o8bobo$30b2o4b2o17bo3bo56b2o53bobo8bo$
|
||||
36b2o18b2o57b2o54bo$38bobo129b2o$40bo84bo61bobo$123b2o62bo2bo$124b2o
|
||||
46bo6bo10b2o$81bo2bo26bo2bo56bobo5bo8bo3b2o7bo$35b4o41bo14b4o11bo59bob
|
||||
2o6bo9b2o7bobo$35bo3bo40bo3bo10bo3bo10bo3bo49b2o3b2ob2o9b2o2bo2bo7bobo
|
||||
17bo$35bo44b4o11bo14b4o50b2o4bob2o5b3o2bo2bobo7bo2bo16b2o$36bo2bo56bo
|
||||
2bo71bobo7b4o13bobo15b2o4b2o$131b2o39bo9b2o15bobo13b3o4b2o2b2o$119b3o
|
||||
2bo5bo3bo66bo4bobo7b2o4b2o2b2o$115bo3bo9bo5bo3b2o65b2o9b2o$113bobo4bo
|
||||
8bo3bob2o2b2o66bo10bo$105b2o4b2o16bo5bo54bo$105b2o4b2o17bo3bo56b2o$
|
||||
111b2o18b2o57b2o$113bobo$115bo84bo$198b2o$199b2o$36bo2bo26bo2bo26bo2bo
|
||||
56bo2bo26bo2bo$35bo14b4o11bo14b4o11bo14b4o41bo14b4o11bo$35bo3bo10bo3bo
|
||||
10bo3bo10bo3bo10bo3bo10bo3bo40bo3bo10bo3bo10bo3bo$35b4o11bo14b4o11bo
|
||||
14b4o11bo44b4o11bo14b4o$51bo2bo26bo2bo26bo2bo56bo2bo$206b2o$194b3o2bo
|
||||
5bo3bo$130bo59bo3bo9bo5bo3b2o$128bobo57bobo4bo8bo3bob2o2b2o$126b2o18b
|
||||
2o32b2o4b2o16bo5bo$120b2o4b2o17bo3bo30b2o4b2o17bo3bo$120b2o4b2o16bo5bo
|
||||
35b2o18b2o$128bobo4bo8bo3bob2o2b2o32bobo$130bo3bo9bo5bo3b2o34bo$134b3o
|
||||
2bo5bo3bo$146b2o$111bo2bo$35b4o56b4o11bo14b4o$35bo3bo55bo3bo10bo3bo10b
|
||||
o3bo$35bo59bo14b4o11bo$36bo2bo56bo2bo26bo2bo$139b2o$138b2o$55bo84bo$
|
||||
53bobo$51b2o18b2o57b2o$45b2o4b2o17bo3bo56b2o$45b2o4b2o16bo5bo15b2o37bo
|
||||
$53bobo4bo8bo3bob2o2b2o9b2o55bo10bo$55bo3bo9bo5bo3b2o11bo53b2o9b2o$59b
|
||||
3o2bo5bo3bo66bo4bobo7b2o4b2o2b2o$71b2o39bo9b2o15bobo13b3o4b2o2b2o$36bo
|
||||
2bo71bobo7b4o13bobo15b2o4b2o$20b4o11bo14b4o50b2o4bob2o5b3o2bo2bobo7bo
|
||||
2bo16b2o$20bo3bo10bo3bo10bo3bo44bo4b2o3b2ob2o9b2o2bo2bo7bobo17bo$20bo
|
||||
14b4o11bo47b2o10bob2o6bo9b2o7bobo$21bo2bo26bo2bo43bobo10bobo5bo8bo3b2o
|
||||
7bo$64b2o46bo6bo10b2o$63b2o62bo2bo$65bo61bobo$110b2o$55b2o54bo$56b2o
|
||||
48b2o3bobo8bo$16b2o37bo49b2o5b2o8bobo$15b2o55bo10bo23bo15bobo7bo$17bo
|
||||
53b2o9b2o39bo2bo6b2o$66bo4bobo7b2o4b2o2b2o30bobo2b2o4b2o8b2o$37bo9b2o
|
||||
15bobo13b3o4b2o2b2o3b2o24bobo3b2o4b3o7b2o$36bobo7b4o13bobo15b2o4b2o7b
|
||||
2o24bo5b2o4b2o$29b2o4bob2o5b3o2bo2bobo7bo2bo16b2o30bo18b2o$24bo4b2o3b
|
||||
2ob2o9b2o2bo2bo7bobo17bo29b2o18bo$23b2o10bob2o6bo9b2o7bobo46bobo5bo$
|
||||
23bobo10bobo5bo8bo3b2o7bo53bo$37bo6bo10b2o63b3o$52bo2bo$52bobo42bo$35b
|
||||
2o59b3o$36bo58b5o$36bobo8bo46bobobobo$37b2o8bobo44b2o3b2o19b2o$48bobo
|
||||
7bo61b2o$48bo2bo6b2o86bo6bo$48bobo2b2o4b2o8b2o26bo46b3o4b3o$21b2o24bob
|
||||
o3b2o4b3o7b2o25bobo33b2o9bo6bo$21b2o24bo5b2o4b2o34b2obo33bobo8b2o5b2o$
|
||||
58b2o35b3o34bo$58bo35bo2bo$46bo47b3o$45bo47bo3bo$45b3o44bo5bo$93bo3bo
|
||||
5bo$22bo71b3o7bo4b2o22b2o4b3o$21b3o78b3o4b2o22b2o4bo7b3o$20b5o115bo5bo
|
||||
3bo$19bobobobo119bo5bo$19b2o3b2o12bo6b2o99bo3bo$38bobo4b2o100b3o$38b2o
|
||||
31bo6bo67bo2bo$22bo46b3o4b3o32bo34b3o$21bobo44bo6bo16b2o5b2o8bobo33bob
|
||||
2o$20b2obo44b2o5b2o16bo6bo9b2o33bobo$20b3o67b3o4b3o46bo$19bo2bo8bo58bo
|
||||
6bo$19b3o8bo91b2o$18bo3bo7b3o89b2o19b2o3b2o$17bo5bo94bo24bobobobo$18bo
|
||||
3bo5bo90bo24b5o$19b3o7bo4b2o22b2o4b3o50b3o25b3o$27b3o4b2o22b2o4bo7b3o
|
||||
71bo$65bo5bo3bo$70bo5bo44b3o$61b3o7bo3bo47bo$63bo8b3o47bo$62bo8bo2bo
|
||||
35bo19b2o$36bo34b3o35b2o19bobo$17b2o5b2o8bobo33bob2o34b2o4b2o5bo10bo
|
||||
13b2o$18bo6bo9b2o33bobo25b2o7b3o4b2o3bobo10b2o12b2o$15b3o4b3o46bo26b2o
|
||||
8b2o4b2o2bobo$15bo6bo86b2o6bo2bo$47b2o61bo7bobo$47b2o19b2o3b2o44bobo8b
|
||||
2o$43bo24bobobobo46bo8bobo$44bo24b5o58bo$42b3o25b3o59b2o$71bo2$46b3o$
|
||||
48bo$47bo$35bo19b2o$34b2o19bobo$33b2o4b2o5bo10bo13b2o$23b2o7b3o4b2o3bo
|
||||
bo10b2o12b2o$23b2o8b2o4b2o2bobo$34b2o6bo2bo$35bo7bobo$44bobo8b2o$46bo
|
||||
8bobo$57bo$57b2o!
|
||||
19
e.rs
19
e.rs
|
|
@ -1,7 +1,26 @@
|
|||
#![feature(main)]
|
||||
#[cfg(feature = "functional")]
|
||||
#[main]
|
||||
fn e() {
|
||||
std::iter::repeat('e').for_each(|e| print!("{}", e));
|
||||
}
|
||||
|
||||
#[cfg(not(feature = "functional"))]
|
||||
#[main]
|
||||
fn e() -> ! {
|
||||
loop {
|
||||
print!("e");
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod tests {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn teeeeest() {
|
||||
e();
|
||||
unreachable!("eeeeeeeeee?????");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
MODULE e
|
||||
VAR
|
||||
e : { e };
|
||||
ASSIGN
|
||||
init(e) := e;
|
||||
next(e) := e;
|
||||
esac;
|
||||
SPEC AG ( TRUE -> AF e = e)
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
pragma solidity ^0.5.0;
|
||||
|
||||
contract EEEEEEEEEE {
|
||||
|
||||
mapping (address => string) meeeeeeeeeessage;
|
||||
|
||||
function sendMeeeeeeeeeessage(address _recipieeeeeeeeeent, string memory _meeeeeeeeeessage) public{
|
||||
meeeeeeeeeessage[_recipieeeeeeeeeent] = _meeeeeeeeeessage;
|
||||
}
|
||||
|
||||
function readMeeeeeeeeeessage() public view returns (string memory){
|
||||
return meeeeeeeeeessage[msg.sender];
|
||||
}
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
CREATE DATABASE e;
|
||||
USE e;
|
||||
|
||||
DELIMITER |
|
||||
CREATE PROCEDURE e()
|
||||
BEGIN
|
||||
WHILE 'e' = 'e' DO
|
||||
SELECT REPEAT("e",RAND()*100) AS e;
|
||||
END WHILE;
|
||||
END|
|
||||
DELIMITER ;
|
||||
|
||||
CALL e();
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
#!/usr/bin/env gst
|
||||
|
||||
[ true ] whileTrue: [ Transcript show: 'e' ].
|
||||
|
|
@ -0,0 +1,15 @@
|
|||
terralib.nativetarget = terralib.newtarget {
|
||||
Triple = "x86_64-pc-linux-gnu",
|
||||
CPU = "x86-64",
|
||||
}
|
||||
|
||||
stdio = terralib.includec("stdio.h")
|
||||
|
||||
terra main(argc : int, argv : &rawstring)
|
||||
while true do
|
||||
stdio.printf("e")
|
||||
end
|
||||
return 0
|
||||
end
|
||||
|
||||
main(0, nil)
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
#!/usr/bin/tclsh
|
||||
while { true } {
|
||||
puts -nonewline "e"
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
command! E %s/[a-zA-Z]/e/g
|
||||
command! EE call E()
|
||||
|
||||
function! E()
|
||||
while 1
|
||||
echo "e"
|
||||
endwhile
|
||||
endfunction
|
||||
|
|
@ -0,0 +1,28 @@
|
|||
<template>
|
||||
<div class="e">
|
||||
{{ e }}
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
export default {
|
||||
data () {
|
||||
return {
|
||||
e: 'e'
|
||||
}
|
||||
},
|
||||
|
||||
mounted () {
|
||||
setInterval(() => {
|
||||
this.e += 'e'
|
||||
}, 1)
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<style>
|
||||
.e {
|
||||
background: #eeeeee;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
(module
|
||||
(type $FUNCSIG$ii (func (param i32) (result i32)))
|
||||
(import "env" "putchar" (func $putchar (param i32) (result i32)))
|
||||
(table 0 anyfunc)
|
||||
(memory $0 1)
|
||||
(export "memory" (memory $0))
|
||||
(export "main" (func $main))
|
||||
(func $main (; 1 ;) (param $0 i32) (param $1 i32) (result i32)
|
||||
(loop $label$0 (result i32)
|
||||
(drop
|
||||
(call $putchar
|
||||
(i32.const 101)
|
||||
)
|
||||
)
|
||||
(br $label$0)
|
||||
)
|
||||
)
|
||||
)
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
const std = @import("std");
|
||||
|
||||
pub fn main() !void {
|
||||
var stdout_file = try std.io.getStdOut();
|
||||
while (true) {
|
||||
try stdout_file.write("e");
|
||||
}
|
||||
}
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
# xcrun -sdk iphoneos clang -arch armv7 e_iOS_arm32.S -o e
|
||||
.align 2
|
||||
eeee:
|
||||
.asciz "eee"
|
||||
.globl _main
|
||||
.align 2
|
||||
_main:
|
||||
eeeeeeeeeeeeeeeeeeeeeee:
|
||||
mov r0, 1
|
||||
adr r1, eeee
|
||||
mov r2, 3
|
||||
mov r12, 0x4
|
||||
svc 0x80
|
||||
b eeeeeeeeeeeeeeeeeeeeeee
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
# xcrun -sdk iphoneos clang -arch arm64 e_iOS_arm64.S -o eeee
|
||||
.align 2
|
||||
eeee:
|
||||
.asciz "eee"
|
||||
.globl _main
|
||||
.align 2
|
||||
_main:
|
||||
eeeeeeeeeeeeeeeeeeeeeee:
|
||||
movz x0, 1
|
||||
adr x1, eeee
|
||||
mov x2, 3
|
||||
movz x16, 0x4
|
||||
svc 0x80
|
||||
b eeeeeeeeeeeeeeeeeeeeeee
|
||||
|
|
@ -0,0 +1,13 @@
|
|||
.ORIG x3000
|
||||
|
||||
|
||||
loop AND R0, R0, #0
|
||||
LEA R0, e
|
||||
PUTS
|
||||
BRnzp loop
|
||||
|
||||
HALT
|
||||
|
||||
e .STRINGZ "e"
|
||||
|
||||
.END
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
.data
|
||||
e: .byte 'e'
|
||||
|
||||
.text
|
||||
.globl _start
|
||||
_start:
|
||||
li a7, 64
|
||||
la a1, e
|
||||
li a2, 1
|
||||
l: li a0, 1
|
||||
ecall
|
||||
j l
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
# clang -m32 e_macOS_32.S -o eeeeee && ./eeeeee
|
||||
.globl _main
|
||||
.text
|
||||
_main:
|
||||
pushl $0x65656565
|
||||
pushl $4
|
||||
lea 4(%esp), %eax
|
||||
pushl %eax
|
||||
pushl $1
|
||||
pushl $0x7374656b
|
||||
eee:
|
||||
movl $4, %eax
|
||||
int $0x80
|
||||
jmp eee
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
# clang e_macOS_64.S -o eeeee && ./eeeee
|
||||
.globl _main
|
||||
.text
|
||||
_main:
|
||||
pushq $0x65656565
|
||||
eee:
|
||||
movq $0x2000004, %rax
|
||||
movq $1, %rdi
|
||||
movq %rsp, %rsi
|
||||
movq $4, %rdx
|
||||
syscall
|
||||
jmp eee
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
.data
|
||||
echar: .ascii "e"
|
||||
.text
|
||||
e:
|
||||
li $v0, 4
|
||||
la $a0, echar
|
||||
syscall
|
||||
j e
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
; Linker file:
|
||||
; ENTRY(start); SECTIONS { . = 1M; .boot : { KEEP(*(.multiboot_header)) } .text : { *(.text) } }
|
||||
; compile: nasm -i. -felf64 e_standalone.asm -o e
|
||||
|
||||
section .multiboot_header
|
||||
bits 32
|
||||
header_start:
|
||||
dd 0xe85250d6
|
||||
dd 0
|
||||
dd header_end - header_start
|
||||
dd 0x100000000 - (0xe85250d6 + 0 + (header_end - header_start))
|
||||
dw 0
|
||||
dw 0
|
||||
dd 8
|
||||
header_end:
|
||||
|
||||
global start
|
||||
section .text
|
||||
bits 32
|
||||
start:
|
||||
mov ecx, 0
|
||||
loop:
|
||||
mov dword [0xb8000 + (ecx * 2)], (15 << 8) | (0x00000065)
|
||||
inc ecx
|
||||
cmp ecx, 2000
|
||||
jne loop
|
||||
hlt
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
#!/bin/sh
|
||||
# e as a service
|
||||
# usage:
|
||||
# ./eaas.sh
|
||||
# xdg-open http://127.0.0.1:3333
|
||||
while true; do
|
||||
( printf "HTTP/1.0 200 OK\r\n\r\n<html><body>" && yes e ) |
|
||||
nc -w 1 -l -p 3333
|
||||
done
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
from __future__ import print_function
|
||||
|
||||
exec('''
|
||||
'eeeeee'\
|
||||
'eeee'\nimport\
|
||||
sys\n' '\nwhile\
|
||||
True: \n print\
|
||||
('eee' 'eeeee'\
|
||||
'eeeeeeeeeeeeeeeeeeeee'\
|
||||
'eeee'\
|
||||
'eeeee' 'eeeee'\
|
||||
'eeeeeeeeeeeeeeeee'\
|
||||
'ee',end='')
|
||||
'''[10:])
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
#!/usr/bin/env -S awk -f
|
||||
BEGIN { while(1) printf("e")}
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
#include <unistd.h>
|
||||
#define e "e"
|
||||
#define ee e e
|
||||
#define eee ee ee
|
||||
#define eeee eee eee
|
||||
#define eeeee eeee eeee
|
||||
#define eeeeee eeeee eeeee
|
||||
#define eeeeeee eeeeee eeeeee
|
||||
#define eeeeeeee eeeeeee eeeeeee
|
||||
#define eeeeeeeee eeeeeeee eeeeeeee
|
||||
#define eeeeeeeeee eeeeeeeee eeeeeeeee
|
||||
#define eeeeeeeeeee eeeeeeeeee eeeeeeeeee
|
||||
#define eeeeeeeeeeee eeeeeeeeeee eeeeeeeeeee
|
||||
#define eeeeeeeeeeeee eeeeeeeeeeee eeeeeeeeeeee
|
||||
#define eeeeeeeeeeeeee eeeeeeeeeeeee eeeeeeeeeeeee
|
||||
#define eeeeeeeeeeeeeee eeeeeeeeeeeeee eeeeeeeeeeeeee
|
||||
#define e_e_e(e, ee, eee) write(e, ee, eee)
|
||||
#define e_e() int main()
|
||||
#define e_(e) while(e)
|
||||
|
||||
e_e() { e_(e) e_e_e(1, eeeeeeeeeeeeeee, 0x4000); }
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue