Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

Administrator / level3-lesson22-diy2

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit 2f10db7f authored a year ago by BellCodeEditor's avatar BellCodeEditor
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

auto save

parent 3552aef9
Expand all Show whitespace changes
Inline Side-by-side
Showing with 2 additions and 2 deletions
  • bot.gif
  • d.py
  • take out and in.py
  • turn/0.png
  • turn/1.png
  • turn/10.png
  • turn/100.png
  • turn/101.png
  • turn/102.png
  • turn/103.png
  • turn/104.png
  • turn/105.png
  • turn/106.png
  • turn/107.png
  • turn/108.png
  • turn/109.png
  • turn/11.png
  • turn/110.png
  • turn/111.png
  • turn/112.png
  • turn/113.png
  • turn/114.png
  • turn/115.png
  • turn/116.png
  • turn/117.png
  • turn/118.png
  • turn/119.png
  • turn/12.png
  • turn/120.png
  • turn/121.png
  • turn/122.png
  • turn/123.png
  • turn/124.png
  • turn/125.png
  • turn/126.png
  • turn/127.png
  • turn/128.png
  • turn/129.png
  • turn/13.png
  • turn/130.png
  • turn/131.png
  • turn/132.png
  • turn/133.png
  • turn/134.png
  • turn/135.png
  • turn/136.png
  • turn/137.png
  • turn/138.png
  • turn/139.png
  • turn/14.png
  • turn/140.png
  • turn/141.png
  • turn/142.png
  • turn/143.png
  • turn/144.png
  • turn/145.png
  • turn/146.png
  • turn/147.png
  • turn/148.png
  • turn/149.png
  • turn/15.png
  • turn/150.png
  • turn/151.png
  • turn/152.png
  • turn/153.png
  • turn/154.png
  • turn/155.png
  • turn/156.png
  • turn/157.png
  • turn/158.png
  • turn/159.png
  • turn/16.png
  • turn/160.png
  • turn/161.png
  • turn/162.png
  • turn/163.png
  • turn/164.png
  • turn/165.png
  • turn/166.png
  • turn/167.png
  • turn/168.png
  • turn/169.png
  • turn/17.png
  • turn/170.png
  • turn/171.png
  • turn/172.png
  • turn/173.png
  • turn/174.png
  • turn/175.png
  • turn/176.png
  • turn/177.png
  • turn/178.png
  • turn/179.png
  • turn/18.png
  • turn/180.png
  • turn/181.png
  • turn/182.png
  • turn/183.png
  • turn/184.png
  • turn/185.png
  • turn/186.png
  • turn/187.png
  • turn/188.png
  • turn/19.png
  • turn/2.png
  • turn/20.png
  • turn/21.png
  • turn/22.png
  • turn/23.png
  • turn/24.png
  • turn/25.png
  • turn/26.png
  • turn/27.png
  • turn/28.png
  • turn/29.png
  • turn/3.png
  • turn/30.png
  • turn/31.png
  • turn/32.png
  • turn/33.png
  • turn/34.png
  • turn/35.png
  • turn/36.png
  • turn/37.png
  • turn/38.png
  • turn/39.png
  • turn/4.png
  • turn/40.png
  • turn/41.png
  • turn/42.png
  • turn/43.png
  • turn/44.png
  • turn/45.png
  • turn/46.png
  • turn/47.png
  • turn/48.png
  • turn/49.png
  • turn/5.png
  • turn/50.png
  • turn/51.png
  • turn/52.png
  • turn/53.png
  • turn/54.png
  • turn/55.png
  • turn/56.png
  • turn/57.png
  • turn/58.png
  • turn/59.png
  • turn/6.png
  • turn/60.png
  • turn/61.png
  • turn/62.png
  • turn/63.png
  • turn/64.png
  • turn/65.png
  • turn/66.png
  • turn/67.png
  • turn/68.png
  • turn/69.png
  • turn/7.png
  • turn/70.png
  • turn/71.png
  • turn/72.png
  • turn/73.png
  • turn/74.png
  • turn/75.png
  • turn/76.png
  • turn/77.png
  • turn/78.png
  • turn/79.png
  • turn/8.png
  • turn/80.png
  • turn/81.png
  • turn/82.png
  • turn/83.png
  • turn/84.png
  • turn/85.png
  • turn/86.png
  • turn/87.png
  • turn/88.png
  • turn/89.png
  • turn/9.png
  • turn/90.png
  • turn/91.png
  • turn/92.png
  • turn/93.png
  • turn/94.png
  • turn/95.png
  • turn/96.png
  • turn/97.png
  • turn/98.png
  • turn/99.png
bot.gif
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
d.py
View file @ 2f10db7f
......@@ -8,7 +8,7 @@ path = filedialog.askopenfilenames(title = '选择图片文件',
initialdir = "./")
img_list = []
for i in path:
img = image.open(1)
img = Image.open(i)
img_list.insert(0,img)
......
This diff is collapsed. Click to expand it.
take out and in.py
View file @ 2f10db7f
from PIL import Image,ImageSequence
im=Image.open('dive.gif')
im=Image.open('xbdts.gif')
num=0
for i in ImageSequence.Iterator(im):
i.save('turn/'+str(num)+'.png')
......
This diff is collapsed. Click to expand it.
turn/0.png
View file @ 2f10db7f
turn/0.png

48.4 KB | W: | H:

turn/0.png

8.31 KB | W: | H:

turn/0.png
turn/0.png
turn/0.png
turn/0.png
  • 2-up
  • Swipe
  • Onion skin
This diff is collapsed. Click to expand it.
turn/1.png
View file @ 2f10db7f
turn/1.png

47.9 KB | W: | H:

turn/1.png

8.26 KB | W: | H:

turn/1.png
turn/1.png
turn/1.png
turn/1.png
  • 2-up
  • Swipe
  • Onion skin
This diff is collapsed. Click to expand it.
turn/10.png
View file @ 2f10db7f
turn/10.png

52.1 KB | W: | H:

turn/10.png

9.19 KB | W: | H:

turn/10.png
turn/10.png
turn/10.png
turn/10.png
  • 2-up
  • Swipe
  • Onion skin
This diff is collapsed. Click to expand it.
turn/100.png 0 → 100644
View file @ 2f10db7f
turn/100.png

10.2 KB

This diff is collapsed. Click to expand it.
turn/101.png 0 → 100644
View file @ 2f10db7f
turn/101.png

10.2 KB

This diff is collapsed. Click to expand it.
turn/102.png 0 → 100644
View file @ 2f10db7f
turn/102.png

10.2 KB

This diff is collapsed. Click to expand it.
turn/103.png 0 → 100644
View file @ 2f10db7f
turn/103.png

10.1 KB

This diff is collapsed. Click to expand it.
turn/104.png 0 → 100644
View file @ 2f10db7f
turn/104.png

9.84 KB

This diff is collapsed. Click to expand it.
turn/105.png 0 → 100644
View file @ 2f10db7f
turn/105.png

9.83 KB

This diff is collapsed. Click to expand it.
turn/106.png 0 → 100644
View file @ 2f10db7f
turn/106.png

9.88 KB

This diff is collapsed. Click to expand it.
turn/107.png 0 → 100644
View file @ 2f10db7f
turn/107.png

9.78 KB

This diff is collapsed. Click to expand it.
turn/108.png 0 → 100644
View file @ 2f10db7f
turn/108.png

9.8 KB

This diff is collapsed. Click to expand it.
turn/109.png 0 → 100644
View file @ 2f10db7f
turn/109.png

9.76 KB

This diff is collapsed. Click to expand it.
turn/11.png
View file @ 2f10db7f
turn/11.png

52.6 KB | W: | H:

turn/11.png

9.15 KB | W: | H:

turn/11.png
turn/11.png
turn/11.png
turn/11.png
  • 2-up
  • Swipe
  • Onion skin
This diff is collapsed. Click to expand it.
turn/110.png 0 → 100644
View file @ 2f10db7f
turn/110.png

9.73 KB

This diff is collapsed. Click to expand it.
turn/111.png 0 → 100644
View file @ 2f10db7f
turn/111.png

9.72 KB

This diff is collapsed. Click to expand it.
turn/112.png 0 → 100644
View file @ 2f10db7f
turn/112.png

9.68 KB

This diff is collapsed. Click to expand it.
turn/113.png 0 → 100644
View file @ 2f10db7f
turn/113.png

9.63 KB

This diff is collapsed. Click to expand it.
turn/114.png 0 → 100644
View file @ 2f10db7f
turn/114.png

9.59 KB

This diff is collapsed. Click to expand it.
turn/115.png 0 → 100644
View file @ 2f10db7f
turn/115.png

9.6 KB

This diff is collapsed. Click to expand it.
turn/116.png 0 → 100644
View file @ 2f10db7f
turn/116.png

9.46 KB

This diff is collapsed. Click to expand it.
turn/117.png 0 → 100644
View file @ 2f10db7f
turn/117.png

9.13 KB

This diff is collapsed. Click to expand it.
turn/118.png 0 → 100644
View file @ 2f10db7f
turn/118.png

9.06 KB

This diff is collapsed. Click to expand it.
turn/119.png 0 → 100644
View file @ 2f10db7f
turn/119.png

9.03 KB

This diff is collapsed. Click to expand it.
turn/12.png
View file @ 2f10db7f
turn/12.png

51.8 KB | W: | H:

turn/12.png

9.2 KB | W: | H:

turn/12.png
turn/12.png
turn/12.png
turn/12.png
  • 2-up
  • Swipe
  • Onion skin
This diff is collapsed. Click to expand it.
turn/120.png 0 → 100644
View file @ 2f10db7f
turn/120.png

9.03 KB

This diff is collapsed. Click to expand it.
turn/121.png 0 → 100644
View file @ 2f10db7f
turn/121.png

8.97 KB

This diff is collapsed. Click to expand it.
turn/122.png 0 → 100644
View file @ 2f10db7f
turn/122.png

8.94 KB

This diff is collapsed. Click to expand it.
turn/123.png 0 → 100644
View file @ 2f10db7f
turn/123.png

9 KB

This diff is collapsed. Click to expand it.
turn/124.png 0 → 100644
View file @ 2f10db7f
turn/124.png

8.93 KB

This diff is collapsed. Click to expand it.
turn/125.png 0 → 100644
View file @ 2f10db7f
turn/125.png

9.04 KB

This diff is collapsed. Click to expand it.
turn/126.png 0 → 100644
View file @ 2f10db7f
turn/126.png

9.01 KB

This diff is collapsed. Click to expand it.
turn/127.png 0 → 100644
View file @ 2f10db7f
turn/127.png

8.97 KB

This diff is collapsed. Click to expand it.
turn/128.png 0 → 100644
View file @ 2f10db7f
turn/128.png

9 KB

This diff is collapsed. Click to expand it.
turn/129.png 0 → 100644
View file @ 2f10db7f
turn/129.png

8.84 KB

This diff is collapsed. Click to expand it.
turn/13.png
View file @ 2f10db7f
turn/13.png

51.4 KB | W: | H:

turn/13.png

9.21 KB | W: | H:

turn/13.png
turn/13.png
turn/13.png
turn/13.png
  • 2-up
  • Swipe
  • Onion skin
This diff is collapsed. Click to expand it.
turn/130.png 0 → 100644
View file @ 2f10db7f
turn/130.png

8.75 KB

This diff is collapsed. Click to expand it.
turn/131.png 0 → 100644
View file @ 2f10db7f
turn/131.png

8.61 KB

This diff is collapsed. Click to expand it.
turn/132.png 0 → 100644
View file @ 2f10db7f
turn/132.png

8.61 KB

This diff is collapsed. Click to expand it.
turn/133.png 0 → 100644
View file @ 2f10db7f
turn/133.png

8.41 KB

This diff is collapsed. Click to expand it.
turn/134.png 0 → 100644
View file @ 2f10db7f
turn/134.png

7.71 KB

This diff is collapsed. Click to expand it.
turn/135.png 0 → 100644
View file @ 2f10db7f
turn/135.png

8.07 KB

This diff is collapsed. Click to expand it.
turn/136.png 0 → 100644
View file @ 2f10db7f
turn/136.png

8.67 KB

This diff is collapsed. Click to expand it.
turn/137.png 0 → 100644
View file @ 2f10db7f
turn/137.png

8.58 KB

This diff is collapsed. Click to expand it.
turn/138.png 0 → 100644
View file @ 2f10db7f
turn/138.png

8.56 KB

This diff is collapsed. Click to expand it.
turn/139.png 0 → 100644
View file @ 2f10db7f
turn/139.png

8.11 KB

This diff is collapsed. Click to expand it.
turn/14.png
View file @ 2f10db7f
turn/14.png

50.2 KB | W: | H:

turn/14.png

9.12 KB | W: | H:

turn/14.png
turn/14.png
turn/14.png
turn/14.png
  • 2-up
  • Swipe
  • Onion skin
This diff is collapsed. Click to expand it.
turn/140.png 0 → 100644
View file @ 2f10db7f
turn/140.png

8.1 KB

This diff is collapsed. Click to expand it.
turn/141.png 0 → 100644
View file @ 2f10db7f
turn/141.png

9.03 KB

This diff is collapsed. Click to expand it.
turn/142.png 0 → 100644
View file @ 2f10db7f
turn/142.png

8.63 KB

This diff is collapsed. Click to expand it.
turn/143.png 0 → 100644
View file @ 2f10db7f
turn/143.png

8.6 KB

This diff is collapsed. Click to expand it.
turn/144.png 0 → 100644
View file @ 2f10db7f
turn/144.png

8.59 KB

This diff is collapsed. Click to expand it.
turn/145.png 0 → 100644
View file @ 2f10db7f
turn/145.png

8.56 KB

This diff is collapsed. Click to expand it.
turn/146.png 0 → 100644
View file @ 2f10db7f
turn/146.png

8.63 KB

This diff is collapsed. Click to expand it.
turn/147.png 0 → 100644
View file @ 2f10db7f
turn/147.png

8.44 KB

This diff is collapsed. Click to expand it.
turn/148.png 0 → 100644
View file @ 2f10db7f
turn/148.png

8.78 KB

This diff is collapsed. Click to expand it.
turn/149.png 0 → 100644
View file @ 2f10db7f
turn/149.png

8.65 KB

This diff is collapsed. Click to expand it.
turn/15.png
View file @ 2f10db7f
turn/15.png

50.9 KB | W: | H:

turn/15.png

9.13 KB | W: | H:

turn/15.png
turn/15.png
turn/15.png
turn/15.png
  • 2-up
  • Swipe
  • Onion skin
This diff is collapsed. Click to expand it.
turn/150.png 0 → 100644
View file @ 2f10db7f
turn/150.png

8.81 KB

This diff is collapsed. Click to expand it.
turn/151.png 0 → 100644
View file @ 2f10db7f
turn/151.png

8.36 KB

This diff is collapsed. Click to expand it.
turn/152.png 0 → 100644
View file @ 2f10db7f
turn/152.png

8.47 KB

This diff is collapsed. Click to expand it.
turn/153.png 0 → 100644
View file @ 2f10db7f
turn/153.png

8.45 KB

This diff is collapsed. Click to expand it.
turn/154.png 0 → 100644
View file @ 2f10db7f
turn/154.png

8.51 KB

This diff is collapsed. Click to expand it.
turn/155.png 0 → 100644
View file @ 2f10db7f
turn/155.png

8.41 KB

This diff is collapsed. Click to expand it.
turn/156.png 0 → 100644
View file @ 2f10db7f
turn/156.png

8.45 KB

This diff is collapsed. Click to expand it.
turn/157.png 0 → 100644
View file @ 2f10db7f
turn/157.png

7.84 KB

This diff is collapsed. Click to expand it.
turn/158.png 0 → 100644
View file @ 2f10db7f
turn/158.png

7.82 KB

This diff is collapsed. Click to expand it.
turn/159.png 0 → 100644
View file @ 2f10db7f
turn/159.png

8.09 KB

This diff is collapsed. Click to expand it.
turn/16.png
View file @ 2f10db7f
turn/16.png

50.2 KB | W: | H:

turn/16.png

9.31 KB | W: | H:

turn/16.png
turn/16.png
turn/16.png
turn/16.png
  • 2-up
  • Swipe
  • Onion skin
This diff is collapsed. Click to expand it.
turn/160.png 0 → 100644
View file @ 2f10db7f
turn/160.png

8.1 KB

This diff is collapsed. Click to expand it.
turn/161.png 0 → 100644
View file @ 2f10db7f
turn/161.png

8.69 KB

This diff is collapsed. Click to expand it.
turn/162.png 0 → 100644
View file @ 2f10db7f
turn/162.png

8.37 KB

This diff is collapsed. Click to expand it.
turn/163.png 0 → 100644
View file @ 2f10db7f
turn/163.png

8.31 KB

This diff is collapsed. Click to expand it.
turn/164.png 0 → 100644
View file @ 2f10db7f
turn/164.png

8.33 KB

This diff is collapsed. Click to expand it.
turn/165.png 0 → 100644
View file @ 2f10db7f
turn/165.png

8.33 KB

This diff is collapsed. Click to expand it.
turn/166.png 0 → 100644
View file @ 2f10db7f
turn/166.png

8.3 KB

This diff is collapsed. Click to expand it.
turn/167.png 0 → 100644
View file @ 2f10db7f
turn/167.png

8.24 KB

This diff is collapsed. Click to expand it.
turn/168.png 0 → 100644
View file @ 2f10db7f
turn/168.png

8.36 KB

This diff is collapsed. Click to expand it.
turn/169.png 0 → 100644
View file @ 2f10db7f
turn/169.png

8.38 KB

This diff is collapsed. Click to expand it.
turn/17.png
View file @ 2f10db7f
turn/17.png

50.2 KB | W: | H:

turn/17.png

9.52 KB | W: | H:

turn/17.png
turn/17.png
turn/17.png
turn/17.png
  • 2-up
  • Swipe
  • Onion skin
This diff is collapsed. Click to expand it.
turn/170.png 0 → 100644
View file @ 2f10db7f
turn/170.png

8.33 KB

This diff is collapsed. Click to expand it.
turn/171.png 0 → 100644
View file @ 2f10db7f
turn/171.png

8.33 KB

This diff is collapsed. Click to expand it.
turn/172.png 0 → 100644
View file @ 2f10db7f
turn/172.png

8.11 KB

This diff is collapsed. Click to expand it.
turn/173.png 0 → 100644
View file @ 2f10db7f
turn/173.png

7.8 KB

This diff is collapsed. Click to expand it.
turn/174.png 0 → 100644
View file @ 2f10db7f
turn/174.png

7.92 KB

This diff is collapsed. Click to expand it.
turn/175.png 0 → 100644
View file @ 2f10db7f
turn/175.png

7.74 KB

This diff is collapsed. Click to expand it.
turn/176.png 0 → 100644
View file @ 2f10db7f
turn/176.png

7.69 KB

This diff is collapsed. Click to expand it.
turn/177.png 0 → 100644
View file @ 2f10db7f
turn/177.png

7.72 KB

This diff is collapsed. Click to expand it.
turn/178.png 0 → 100644
View file @ 2f10db7f
turn/178.png

7.58 KB

This diff is collapsed. Click to expand it.
turn/179.png 0 → 100644
View file @ 2f10db7f
turn/179.png

7.57 KB

This diff is collapsed. Click to expand it.
turn/18.png
View file @ 2f10db7f
turn/18.png

50.1 KB | W: | H:

turn/18.png

9.34 KB | W: | H:

turn/18.png
turn/18.png
turn/18.png
turn/18.png
  • 2-up
  • Swipe
  • Onion skin
This diff is collapsed. Click to expand it.
turn/180.png 0 → 100644
View file @ 2f10db7f
turn/180.png

7.57 KB

This diff is collapsed. Click to expand it.
turn/181.png 0 → 100644
View file @ 2f10db7f
turn/181.png

7.52 KB

This diff is collapsed. Click to expand it.
turn/182.png 0 → 100644
View file @ 2f10db7f
turn/182.png

7.56 KB

This diff is collapsed. Click to expand it.
turn/183.png 0 → 100644
View file @ 2f10db7f
turn/183.png

7.54 KB

This diff is collapsed. Click to expand it.
turn/184.png 0 → 100644
View file @ 2f10db7f
turn/184.png

7.61 KB

This diff is collapsed. Click to expand it.
turn/185.png 0 → 100644
View file @ 2f10db7f
turn/185.png

7.63 KB

This diff is collapsed. Click to expand it.
turn/186.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/187.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/188.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/19.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/2.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/20.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/21.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/22.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/23.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/24.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/25.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/26.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/27.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/28.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/29.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/3.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/30.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/31.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/32.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/33.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/34.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/35.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/36.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/37.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/38.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/39.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/4.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/40.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/41.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/42.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/43.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/44.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/45.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/46.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/47.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/48.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/49.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/5.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/50.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/51.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/52.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/53.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/54.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/55.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/56.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/57.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/58.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/59.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/6.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/60.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/61.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/62.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/63.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/64.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/65.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/66.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/67.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/68.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/69.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/7.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/70.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/71.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/72.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/73.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/74.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/75.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/76.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/77.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/78.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/79.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/8.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/80.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/81.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/82.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/83.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/84.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/85.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/86.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/87.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/88.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/89.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/9.png
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/90.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/91.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/92.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/93.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/94.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/95.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/96.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/97.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/98.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
turn/99.png 0 → 100644
View file @ 2f10db7f
This diff is collapsed. Click to expand it.
  • Write
  • Preview
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment