diff options
65 files changed, 2708 insertions, 384 deletions
diff --git a/Documentation/feature-removal-schedule.txt b/Documentation/feature-removal-schedule.txt index 3c35d452b1a9..5b3f31faed56 100644 --- a/Documentation/feature-removal-schedule.txt +++ b/Documentation/feature-removal-schedule.txt | |||
@@ -289,6 +289,14 @@ Who: Glauber Costa <gcosta@redhat.com> | |||
289 | 289 | ||
290 | --------------------------- | 290 | --------------------------- |
291 | 291 | ||
292 | What: old style serial driver for ColdFire (CONFIG_SERIAL_COLDFIRE) | ||
293 | When: 2.6.28 | ||
294 | Why: This driver still uses the old interface and has been replaced | ||
295 | by CONFIG_SERIAL_MCF. | ||
296 | Who: Sebastian Siewior <sebastian@breakpoint.cc> | ||
297 | |||
298 | --------------------------- | ||
299 | |||
292 | What: /sys/o2cb symlink | 300 | What: /sys/o2cb symlink |
293 | When: January 2010 | 301 | When: January 2010 |
294 | Why: /sys/fs/o2cb is the proper location for this information - /sys/o2cb | 302 | Why: /sys/fs/o2cb is the proper location for this information - /sys/o2cb |
diff --git a/arch/arm/mach-at91/at91sam9261_devices.c b/arch/arm/mach-at91/at91sam9261_devices.c index 728bb8f39441..0babb645b83c 100644 --- a/arch/arm/mach-at91/at91sam9261_devices.c +++ b/arch/arm/mach-at91/at91sam9261_devices.c | |||
@@ -544,10 +544,10 @@ void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data) | |||
544 | struct resource *fb_res = &lcdc_resources[2]; | 544 | struct resource *fb_res = &lcdc_resources[2]; |
545 | size_t fb_len = fb_res->end - fb_res->start + 1; | 545 | size_t fb_len = fb_res->end - fb_res->start + 1; |
546 | 546 | ||
547 | fb = ioremap_writecombine(fb_res->start, fb_len); | 547 | fb = ioremap(fb_res->start, fb_len); |
548 | if (fb) { | 548 | if (fb) { |
549 | memset(fb, 0, fb_len); | 549 | memset(fb, 0, fb_len); |
550 | iounmap(fb, fb_len); | 550 | iounmap(fb); |
551 | } | 551 | } |
552 | } | 552 | } |
553 | lcdc_data = *data; | 553 | lcdc_data = *data; |
diff --git a/arch/arm/mach-at91/at91sam9rl_devices.c b/arch/arm/mach-at91/at91sam9rl_devices.c index 054689804e77..450db304936f 100644 --- a/arch/arm/mach-at91/at91sam9rl_devices.c +++ b/arch/arm/mach-at91/at91sam9rl_devices.c | |||
@@ -332,13 +332,6 @@ static struct resource lcdc_resources[] = { | |||
332 | .end = AT91SAM9RL_ID_LCDC, | 332 | .end = AT91SAM9RL_ID_LCDC, |
333 | .flags = IORESOURCE_IRQ, | 333 | .flags = IORESOURCE_IRQ, |
334 | }, | 334 | }, |
335 | #if defined(CONFIG_FB_INTSRAM) | ||
336 | [2] = { | ||
337 | .start = AT91SAM9RL_SRAM_BASE, | ||
338 | .end = AT91SAM9RL_SRAM_BASE + AT91SAM9RL_SRAM_SIZE - 1, | ||
339 | .flags = IORESOURCE_MEM, | ||
340 | }, | ||
341 | #endif | ||
342 | }; | 335 | }; |
343 | 336 | ||
344 | static struct platform_device at91_lcdc_device = { | 337 | static struct platform_device at91_lcdc_device = { |
@@ -381,20 +374,6 @@ void __init at91_add_device_lcdc(struct atmel_lcdfb_info *data) | |||
381 | at91_set_B_periph(AT91_PIN_PC24, 0); /* LCDD22 */ | 374 | at91_set_B_periph(AT91_PIN_PC24, 0); /* LCDD22 */ |
382 | at91_set_B_periph(AT91_PIN_PC25, 0); /* LCDD23 */ | 375 | at91_set_B_periph(AT91_PIN_PC25, 0); /* LCDD23 */ |
383 | 376 | ||
384 | #ifdef CONFIG_FB_INTSRAM | ||
385 | { | ||
386 | void __iomem *fb; | ||
387 | struct resource *fb_res = &lcdc_resources[2]; | ||
388 | size_t fb_len = fb_res->end - fb_res->start + 1; | ||
389 | |||
390 | fb = ioremap_writecombine(fb_res->start, fb_len); | ||
391 | if (fb) { | ||
392 | memset(fb, 0, fb_len); | ||
393 | iounmap(fb, fb_len); | ||
394 | } | ||
395 | } | ||
396 | #endif | ||
397 | |||
398 | lcdc_data = *data; | 377 | lcdc_data = *data; |
399 | platform_device_register(&at91_lcdc_device); | 378 | platform_device_register(&at91_lcdc_device); |
400 | } | 379 | } |
diff --git a/arch/sh/kernel/kgdb_stub.c b/arch/sh/kernel/kgdb_stub.c index d453c3a1c79f..832641bbd47d 100644 --- a/arch/sh/kernel/kgdb_stub.c +++ b/arch/sh/kernel/kgdb_stub.c | |||
@@ -330,14 +330,6 @@ static char *ebin_to_mem(const char *buf, char *mem, int count) | |||
330 | return mem; | 330 | return mem; |
331 | } | 331 | } |
332 | 332 | ||
333 | /* Pack a hex byte */ | ||
334 | static char *pack_hex_byte(char *pkt, int byte) | ||
335 | { | ||
336 | *pkt++ = hexchars[(byte >> 4) & 0xf]; | ||
337 | *pkt++ = hexchars[(byte & 0xf)]; | ||
338 | return pkt; | ||
339 | } | ||
340 | |||
341 | /* Scan for the start char '$', read the packet and check the checksum */ | 333 | /* Scan for the start char '$', read the packet and check the checksum */ |
342 | static void get_packet(char *buffer, int buflen) | 334 | static void get_packet(char *buffer, int buflen) |
343 | { | 335 | { |
diff --git a/arch/sparc/kernel/sys_sparc.c b/arch/sparc/kernel/sys_sparc.c index e995491c4436..3c6b49a53ae8 100644 --- a/arch/sparc/kernel/sys_sparc.c +++ b/arch/sparc/kernel/sys_sparc.c | |||
@@ -219,7 +219,7 @@ out: | |||
219 | return err; | 219 | return err; |
220 | } | 220 | } |
221 | 221 | ||
222 | int sparc_mmap_check(unsigned long addr, unsigned long len, unsigned long flags) | 222 | int sparc_mmap_check(unsigned long addr, unsigned long len) |
223 | { | 223 | { |
224 | if (ARCH_SUN4C_SUN4 && | 224 | if (ARCH_SUN4C_SUN4 && |
225 | (len > 0x20000000 || | 225 | (len > 0x20000000 || |
@@ -295,52 +295,14 @@ asmlinkage unsigned long sparc_mremap(unsigned long addr, | |||
295 | unsigned long old_len, unsigned long new_len, | 295 | unsigned long old_len, unsigned long new_len, |
296 | unsigned long flags, unsigned long new_addr) | 296 | unsigned long flags, unsigned long new_addr) |
297 | { | 297 | { |
298 | struct vm_area_struct *vma; | ||
299 | unsigned long ret = -EINVAL; | 298 | unsigned long ret = -EINVAL; |
300 | if (ARCH_SUN4C_SUN4) { | 299 | |
301 | if (old_len > 0x20000000 || new_len > 0x20000000) | 300 | if (unlikely(sparc_mmap_check(addr, old_len))) |
302 | goto out; | 301 | goto out; |
303 | if (addr < 0xe0000000 && addr + old_len > 0x20000000) | 302 | if (unlikely(sparc_mmap_check(new_addr, new_len))) |
304 | goto out; | ||
305 | } | ||
306 | if (old_len > TASK_SIZE - PAGE_SIZE || | ||
307 | new_len > TASK_SIZE - PAGE_SIZE) | ||
308 | goto out; | 303 | goto out; |
309 | down_write(¤t->mm->mmap_sem); | 304 | down_write(¤t->mm->mmap_sem); |
310 | if (flags & MREMAP_FIXED) { | ||
311 | if (ARCH_SUN4C_SUN4 && | ||
312 | new_addr < 0xe0000000 && | ||
313 | new_addr + new_len > 0x20000000) | ||
314 | goto out_sem; | ||
315 | if (new_addr + new_len > TASK_SIZE - PAGE_SIZE) | ||
316 | goto out_sem; | ||
317 | } else if ((ARCH_SUN4C_SUN4 && addr < 0xe0000000 && | ||
318 | addr + new_len > 0x20000000) || | ||
319 | addr + new_len > TASK_SIZE - PAGE_SIZE) { | ||
320 | unsigned long map_flags = 0; | ||
321 | struct file *file = NULL; | ||
322 | |||
323 | ret = -ENOMEM; | ||
324 | if (!(flags & MREMAP_MAYMOVE)) | ||
325 | goto out_sem; | ||
326 | |||
327 | vma = find_vma(current->mm, addr); | ||
328 | if (vma) { | ||
329 | if (vma->vm_flags & VM_SHARED) | ||
330 | map_flags |= MAP_SHARED; | ||
331 | file = vma->vm_file; | ||
332 | } | ||
333 | |||
334 | new_addr = get_unmapped_area(file, addr, new_len, | ||
335 | vma ? vma->vm_pgoff : 0, | ||
336 | map_flags); | ||
337 | ret = new_addr; | ||
338 | if (new_addr & ~PAGE_MASK) | ||
339 | goto out_sem; | ||
340 | flags |= MREMAP_FIXED; | ||
341 | } | ||
342 | ret = do_mremap(addr, old_len, new_len, flags, new_addr); | 305 | ret = do_mremap(addr, old_len, new_len, flags, new_addr); |
343 | out_sem: | ||
344 | up_write(¤t->mm->mmap_sem); | 306 | up_write(¤t->mm->mmap_sem); |
345 | out: | 307 | out: |
346 | return ret; | 308 | return ret; |
diff --git a/arch/sparc64/kernel/rtrap.S b/arch/sparc64/kernel/rtrap.S index b9b785fd8b46..16689b2930db 100644 --- a/arch/sparc64/kernel/rtrap.S +++ b/arch/sparc64/kernel/rtrap.S | |||
@@ -46,7 +46,7 @@ __handle_user_windows: | |||
46 | wrpr %g0, RTRAP_PSTATE_IRQOFF, %pstate | 46 | wrpr %g0, RTRAP_PSTATE_IRQOFF, %pstate |
47 | ldx [%g6 + TI_FLAGS], %l0 | 47 | ldx [%g6 + TI_FLAGS], %l0 |
48 | 48 | ||
49 | 1: andcc %l0, (_TIF_SIGPENDING | _TIF_RESTORE_SIGMASK), %g0 | 49 | 1: andcc %l0, _TIF_SIGPENDING, %g0 |
50 | be,pt %xcc, __handle_user_windows_continue | 50 | be,pt %xcc, __handle_user_windows_continue |
51 | nop | 51 | nop |
52 | mov %l5, %o1 | 52 | mov %l5, %o1 |
@@ -86,7 +86,7 @@ __handle_perfctrs: | |||
86 | wrpr %g0, RTRAP_PSTATE, %pstate | 86 | wrpr %g0, RTRAP_PSTATE, %pstate |
87 | wrpr %g0, RTRAP_PSTATE_IRQOFF, %pstate | 87 | wrpr %g0, RTRAP_PSTATE_IRQOFF, %pstate |
88 | ldx [%g6 + TI_FLAGS], %l0 | 88 | ldx [%g6 + TI_FLAGS], %l0 |
89 | 1: andcc %l0, (_TIF_SIGPENDING | _TIF_RESTORE_SIGMASK), %g0 | 89 | 1: andcc %l0, _TIF_SIGPENDING, %g0 |
90 | 90 | ||
91 | be,pt %xcc, __handle_perfctrs_continue | 91 | be,pt %xcc, __handle_perfctrs_continue |
92 | sethi %hi(TSTATE_PEF), %o0 | 92 | sethi %hi(TSTATE_PEF), %o0 |
@@ -195,7 +195,7 @@ __handle_preemption_continue: | |||
195 | andcc %l1, %o0, %g0 | 195 | andcc %l1, %o0, %g0 |
196 | andcc %l0, _TIF_NEED_RESCHED, %g0 | 196 | andcc %l0, _TIF_NEED_RESCHED, %g0 |
197 | bne,pn %xcc, __handle_preemption | 197 | bne,pn %xcc, __handle_preemption |
198 | andcc %l0, (_TIF_SIGPENDING | _TIF_RESTORE_SIGMASK), %g0 | 198 | andcc %l0, _TIF_SIGPENDING, %g0 |
199 | bne,pn %xcc, __handle_signal | 199 | bne,pn %xcc, __handle_signal |
200 | __handle_signal_continue: | 200 | __handle_signal_continue: |
201 | ldub [%g6 + TI_WSAVED], %o2 | 201 | ldub [%g6 + TI_WSAVED], %o2 |
diff --git a/arch/sparc64/kernel/signal.c b/arch/sparc64/kernel/signal.c index 2378482c2aab..6e4dc67d16af 100644 --- a/arch/sparc64/kernel/signal.c +++ b/arch/sparc64/kernel/signal.c | |||
@@ -247,7 +247,9 @@ static long _sigpause_common(old_sigset_t set) | |||
247 | 247 | ||
248 | current->state = TASK_INTERRUPTIBLE; | 248 | current->state = TASK_INTERRUPTIBLE; |
249 | schedule(); | 249 | schedule(); |
250 | set_thread_flag(TIF_RESTORE_SIGMASK); | 250 | |
251 | set_restore_sigmask(); | ||
252 | |||
251 | return -ERESTARTNOHAND; | 253 | return -ERESTARTNOHAND; |
252 | } | 254 | } |
253 | 255 | ||
@@ -537,7 +539,7 @@ static void do_signal(struct pt_regs *regs, unsigned long orig_i0) | |||
537 | } else | 539 | } else |
538 | restart_syscall = 0; | 540 | restart_syscall = 0; |
539 | 541 | ||
540 | if (test_thread_flag(TIF_RESTORE_SIGMASK)) | 542 | if (current_thread_info()->status & TS_RESTORE_SIGMASK) |
541 | oldset = ¤t->saved_sigmask; | 543 | oldset = ¤t->saved_sigmask; |
542 | else | 544 | else |
543 | oldset = ¤t->blocked; | 545 | oldset = ¤t->blocked; |
@@ -566,13 +568,12 @@ static void do_signal(struct pt_regs *regs, unsigned long orig_i0) | |||
566 | syscall_restart(orig_i0, regs, &ka.sa); | 568 | syscall_restart(orig_i0, regs, &ka.sa); |
567 | handle_signal(signr, &ka, &info, oldset, regs); | 569 | handle_signal(signr, &ka, &info, oldset, regs); |
568 | 570 | ||
569 | /* a signal was successfully delivered; the saved | 571 | /* A signal was successfully delivered; the saved |
570 | * sigmask will have been stored in the signal frame, | 572 | * sigmask will have been stored in the signal frame, |
571 | * and will be restored by sigreturn, so we can simply | 573 | * and will be restored by sigreturn, so we can simply |
572 | * clear the TIF_RESTORE_SIGMASK flag. | 574 | * clear the TS_RESTORE_SIGMASK flag. |
573 | */ | 575 | */ |
574 | if (test_thread_flag(TIF_RESTORE_SIGMASK)) | 576 | current_thread_info()->status &= ~TS_RESTORE_SIGMASK; |
575 | clear_thread_flag(TIF_RESTORE_SIGMASK); | ||
576 | return; | 577 | return; |
577 | } | 578 | } |
578 | if (restart_syscall && | 579 | if (restart_syscall && |
@@ -591,17 +592,17 @@ static void do_signal(struct pt_regs *regs, unsigned long orig_i0) | |||
591 | regs->tnpc -= 4; | 592 | regs->tnpc -= 4; |
592 | } | 593 | } |
593 | 594 | ||
594 | /* if there's no signal to deliver, we just put the saved sigmask | 595 | /* If there's no signal to deliver, we just put the saved sigmask |
595 | * back | 596 | * back |
596 | */ | 597 | */ |
597 | if (test_thread_flag(TIF_RESTORE_SIGMASK)) { | 598 | if (current_thread_info()->status & TS_RESTORE_SIGMASK) { |
598 | clear_thread_flag(TIF_RESTORE_SIGMASK); | 599 | current_thread_info()->status &= ~TS_RESTORE_SIGMASK; |
599 | sigprocmask(SIG_SETMASK, ¤t->saved_sigmask, NULL); | 600 | sigprocmask(SIG_SETMASK, ¤t->saved_sigmask, NULL); |
600 | } | 601 | } |
601 | } | 602 | } |
602 | 603 | ||
603 | void do_notify_resume(struct pt_regs *regs, unsigned long orig_i0, unsigned long thread_info_flags) | 604 | void do_notify_resume(struct pt_regs *regs, unsigned long orig_i0, unsigned long thread_info_flags) |
604 | { | 605 | { |
605 | if (thread_info_flags & (_TIF_SIGPENDING | _TIF_RESTORE_SIGMASK)) | 606 | if (thread_info_flags & _TIF_SIGPENDING) |
606 | do_signal(regs, orig_i0); | 607 | do_signal(regs, orig_i0); |
607 | } | 608 | } |
diff --git a/arch/sparc64/kernel/signal32.c b/arch/sparc64/kernel/signal32.c index 3f19e9af3d1b..97cdd1bf4a10 100644 --- a/arch/sparc64/kernel/signal32.c +++ b/arch/sparc64/kernel/signal32.c | |||
@@ -788,13 +788,12 @@ void do_signal32(sigset_t *oldset, struct pt_regs * regs, | |||
788 | syscall_restart32(orig_i0, regs, &ka.sa); | 788 | syscall_restart32(orig_i0, regs, &ka.sa); |
789 | handle_signal32(signr, &ka, &info, oldset, regs); | 789 | handle_signal32(signr, &ka, &info, oldset, regs); |
790 | 790 | ||
791 | /* a signal was successfully delivered; the saved | 791 | /* A signal was successfully delivered; the saved |
792 | * sigmask will have been stored in the signal frame, | 792 | * sigmask will have been stored in the signal frame, |
793 | * and will be restored by sigreturn, so we can simply | 793 | * and will be restored by sigreturn, so we can simply |
794 | * clear the TIF_RESTORE_SIGMASK flag. | 794 | * clear the TS_RESTORE_SIGMASK flag. |
795 | */ | 795 | */ |
796 | if (test_thread_flag(TIF_RESTORE_SIGMASK)) | 796 | current_thread_info()->status &= ~TS_RESTORE_SIGMASK; |
797 | clear_thread_flag(TIF_RESTORE_SIGMASK); | ||
798 | return; | 797 | return; |
799 | } | 798 | } |
800 | if (restart_syscall && | 799 | if (restart_syscall && |
@@ -813,11 +812,11 @@ void do_signal32(sigset_t *oldset, struct pt_regs * regs, | |||
813 | regs->tnpc -= 4; | 812 | regs->tnpc -= 4; |
814 | } | 813 | } |
815 | 814 | ||
816 | /* if there's no signal to deliver, we just put the saved sigmask | 815 | /* If there's no signal to deliver, we just put the saved sigmask |
817 | * back | 816 | * back |
818 | */ | 817 | */ |
819 | if (test_thread_flag(TIF_RESTORE_SIGMASK)) { | 818 | if (current_thread_info()->status & TS_RESTORE_SIGMASK) { |
820 | clear_thread_flag(TIF_RESTORE_SIGMASK); | 819 | current_thread_info()->status &= ~TS_RESTORE_SIGMASK; |
821 | sigprocmask(SIG_SETMASK, ¤t->saved_sigmask, NULL); | 820 | sigprocmask(SIG_SETMASK, ¤t->saved_sigmask, NULL); |
822 | } | 821 | } |
823 | } | 822 | } |
diff --git a/arch/sparc64/kernel/sys_sparc.c b/arch/sparc64/kernel/sys_sparc.c index 0dbc941f130e..ac1bff58c1ac 100644 --- a/arch/sparc64/kernel/sys_sparc.c +++ b/arch/sparc64/kernel/sys_sparc.c | |||
@@ -542,8 +542,7 @@ asmlinkage long sparc64_personality(unsigned long personality) | |||
542 | return ret; | 542 | return ret; |
543 | } | 543 | } |
544 | 544 | ||
545 | int sparc64_mmap_check(unsigned long addr, unsigned long len, | 545 | int sparc64_mmap_check(unsigned long addr, unsigned long len) |
546 | unsigned long flags) | ||
547 | { | 546 | { |
548 | if (test_thread_flag(TIF_32BIT)) { | 547 | if (test_thread_flag(TIF_32BIT)) { |
549 | if (len >= STACK_TOP32) | 548 | if (len >= STACK_TOP32) |
@@ -609,46 +608,19 @@ asmlinkage unsigned long sys64_mremap(unsigned long addr, | |||
609 | unsigned long old_len, unsigned long new_len, | 608 | unsigned long old_len, unsigned long new_len, |
610 | unsigned long flags, unsigned long new_addr) | 609 | unsigned long flags, unsigned long new_addr) |
611 | { | 610 | { |
612 | struct vm_area_struct *vma; | ||
613 | unsigned long ret = -EINVAL; | 611 | unsigned long ret = -EINVAL; |
614 | 612 | ||
615 | if (test_thread_flag(TIF_32BIT)) | 613 | if (test_thread_flag(TIF_32BIT)) |
616 | goto out; | 614 | goto out; |
617 | if (unlikely(new_len >= VA_EXCLUDE_START)) | 615 | if (unlikely(new_len >= VA_EXCLUDE_START)) |
618 | goto out; | 616 | goto out; |
619 | if (unlikely(invalid_64bit_range(addr, old_len))) | 617 | if (unlikely(sparc64_mmap_check(addr, old_len))) |
618 | goto out; | ||
619 | if (unlikely(sparc64_mmap_check(new_addr, new_len))) | ||
620 | goto out; | 620 | goto out; |
621 | 621 | ||
622 | down_write(¤t->mm->mmap_sem); | 622 | down_write(¤t->mm->mmap_sem); |
623 | if (flags & MREMAP_FIXED) { | ||
624 | if (invalid_64bit_range(new_addr, new_len)) | ||
625 | goto out_sem; | ||
626 | } else if (invalid_64bit_range(addr, new_len)) { | ||
627 | unsigned long map_flags = 0; | ||
628 | struct file *file = NULL; | ||
629 | |||
630 | ret = -ENOMEM; | ||
631 | if (!(flags & MREMAP_MAYMOVE)) | ||
632 | goto out_sem; | ||
633 | |||
634 | vma = find_vma(current->mm, addr); | ||
635 | if (vma) { | ||
636 | if (vma->vm_flags & VM_SHARED) | ||
637 | map_flags |= MAP_SHARED; | ||
638 | file = vma->vm_file; | ||
639 | } | ||
640 | |||
641 | /* MREMAP_FIXED checked above. */ | ||
642 | new_addr = get_unmapped_area(file, addr, new_len, | ||
643 | vma ? vma->vm_pgoff : 0, | ||
644 | map_flags); | ||
645 | ret = new_addr; | ||
646 | if (new_addr & ~PAGE_MASK) | ||
647 | goto out_sem; | ||
648 | flags |= MREMAP_FIXED; | ||
649 | } | ||
650 | ret = do_mremap(addr, old_len, new_len, flags, new_addr); | 623 | ret = do_mremap(addr, old_len, new_len, flags, new_addr); |
651 | out_sem: | ||
652 | up_write(¤t->mm->mmap_sem); | 624 | up_write(¤t->mm->mmap_sem); |
653 | out: | 625 | out: |
654 | return ret; | 626 | return ret; |
diff --git a/arch/sparc64/kernel/sys_sparc32.c b/arch/sparc64/kernel/sys_sparc32.c index 1aa4288125f2..ba5bd626b39e 100644 --- a/arch/sparc64/kernel/sys_sparc32.c +++ b/arch/sparc64/kernel/sys_sparc32.c | |||
@@ -867,44 +867,15 @@ asmlinkage unsigned long sys32_mremap(unsigned long addr, | |||
867 | unsigned long old_len, unsigned long new_len, | 867 | unsigned long old_len, unsigned long new_len, |
868 | unsigned long flags, u32 __new_addr) | 868 | unsigned long flags, u32 __new_addr) |
869 | { | 869 | { |
870 | struct vm_area_struct *vma; | ||
871 | unsigned long ret = -EINVAL; | 870 | unsigned long ret = -EINVAL; |
872 | unsigned long new_addr = __new_addr; | 871 | unsigned long new_addr = __new_addr; |
873 | 872 | ||
874 | if (old_len > STACK_TOP32 || new_len > STACK_TOP32) | 873 | if (unlikely(sparc64_mmap_check(addr, old_len))) |
875 | goto out; | 874 | goto out; |
876 | if (addr > STACK_TOP32 - old_len) | 875 | if (unlikely(sparc64_mmap_check(new_addr, new_len))) |
877 | goto out; | 876 | goto out; |
878 | down_write(¤t->mm->mmap_sem); | 877 | down_write(¤t->mm->mmap_sem); |
879 | if (flags & MREMAP_FIXED) { | ||
880 | if (new_addr > STACK_TOP32 - new_len) | ||
881 | goto out_sem; | ||
882 | } else if (addr > STACK_TOP32 - new_len) { | ||
883 | unsigned long map_flags = 0; | ||
884 | struct file *file = NULL; | ||
885 | |||
886 | ret = -ENOMEM; | ||
887 | if (!(flags & MREMAP_MAYMOVE)) | ||
888 | goto out_sem; | ||
889 | |||
890 | vma = find_vma(current->mm, addr); | ||
891 | if (vma) { | ||
892 | if (vma->vm_flags & VM_SHARED) | ||
893 | map_flags |= MAP_SHARED; | ||
894 | file = vma->vm_file; | ||
895 | } | ||
896 | |||
897 | /* MREMAP_FIXED checked above. */ | ||
898 | new_addr = get_unmapped_area(file, addr, new_len, | ||
899 | vma ? vma->vm_pgoff : 0, | ||
900 | map_flags); | ||
901 | ret = new_addr; | ||
902 | if (new_addr & ~PAGE_MASK) | ||
903 | goto out_sem; | ||
904 | flags |= MREMAP_FIXED; | ||
905 | } | ||
906 | ret = do_mremap(addr, old_len, new_len, flags, new_addr); | 878 | ret = do_mremap(addr, old_len, new_len, flags, new_addr); |
907 | out_sem: | ||
908 | up_write(¤t->mm->mmap_sem); | 879 | up_write(¤t->mm->mmap_sem); |
909 | out: | 880 | out: |
910 | return ret; | 881 | return ret; |
diff --git a/block/blk-core.c b/block/blk-core.c index 2987fe47b5ee..6a9cc0d22a61 100644 --- a/block/blk-core.c +++ b/block/blk-core.c | |||
@@ -482,6 +482,7 @@ struct request_queue *blk_alloc_queue_node(gfp_t gfp_mask, int node_id) | |||
482 | kobject_init(&q->kobj, &blk_queue_ktype); | 482 | kobject_init(&q->kobj, &blk_queue_ktype); |
483 | 483 | ||
484 | mutex_init(&q->sysfs_lock); | 484 | mutex_init(&q->sysfs_lock); |
485 | spin_lock_init(&q->__queue_lock); | ||
485 | 486 | ||
486 | return q; | 487 | return q; |
487 | } | 488 | } |
@@ -544,10 +545,8 @@ blk_init_queue_node(request_fn_proc *rfn, spinlock_t *lock, int node_id) | |||
544 | * if caller didn't supply a lock, they get per-queue locking with | 545 | * if caller didn't supply a lock, they get per-queue locking with |
545 | * our embedded lock | 546 | * our embedded lock |
546 | */ | 547 | */ |
547 | if (!lock) { | 548 | if (!lock) |
548 | spin_lock_init(&q->__queue_lock); | ||
549 | lock = &q->__queue_lock; | 549 | lock = &q->__queue_lock; |
550 | } | ||
551 | 550 | ||
552 | q->request_fn = rfn; | 551 | q->request_fn = rfn; |
553 | q->prep_rq_fn = NULL; | 552 | q->prep_rq_fn = NULL; |
diff --git a/block/blk-settings.c b/block/blk-settings.c index bb93d4c32775..8dd86418f35d 100644 --- a/block/blk-settings.c +++ b/block/blk-settings.c | |||
@@ -286,8 +286,14 @@ void blk_queue_stack_limits(struct request_queue *t, struct request_queue *b) | |||
286 | t->max_hw_segments = min(t->max_hw_segments, b->max_hw_segments); | 286 | t->max_hw_segments = min(t->max_hw_segments, b->max_hw_segments); |
287 | t->max_segment_size = min(t->max_segment_size, b->max_segment_size); | 287 | t->max_segment_size = min(t->max_segment_size, b->max_segment_size); |
288 | t->hardsect_size = max(t->hardsect_size, b->hardsect_size); | 288 | t->hardsect_size = max(t->hardsect_size, b->hardsect_size); |
289 | if (!test_bit(QUEUE_FLAG_CLUSTER, &b->queue_flags)) | 289 | if (!t->queue_lock) |
290 | WARN_ON_ONCE(1); | ||
291 | else if (!test_bit(QUEUE_FLAG_CLUSTER, &b->queue_flags)) { | ||
292 | unsigned long flags; | ||
293 | spin_lock_irqsave(t->queue_lock, flags); | ||
290 | queue_flag_clear(QUEUE_FLAG_CLUSTER, t); | 294 | queue_flag_clear(QUEUE_FLAG_CLUSTER, t); |
295 | spin_unlock_irqrestore(t->queue_lock, flags); | ||
296 | } | ||
291 | } | 297 | } |
292 | EXPORT_SYMBOL(blk_queue_stack_limits); | 298 | EXPORT_SYMBOL(blk_queue_stack_limits); |
293 | 299 | ||
diff --git a/drivers/char/Kconfig b/drivers/char/Kconfig index 5dce3877eee5..595a925c62a9 100644 --- a/drivers/char/Kconfig +++ b/drivers/char/Kconfig | |||
@@ -196,6 +196,7 @@ config ESPSERIAL | |||
196 | config MOXA_INTELLIO | 196 | config MOXA_INTELLIO |
197 | tristate "Moxa Intellio support" | 197 | tristate "Moxa Intellio support" |
198 | depends on SERIAL_NONSTANDARD && (ISA || EISA || PCI) | 198 | depends on SERIAL_NONSTANDARD && (ISA || EISA || PCI) |
199 | select FW_LOADER | ||
199 | help | 200 | help |
200 | Say Y here if you have a Moxa Intellio multiport serial card. | 201 | Say Y here if you have a Moxa Intellio multiport serial card. |
201 | 202 | ||
diff --git a/drivers/char/ipmi/ipmi_si_intf.c b/drivers/char/ipmi/ipmi_si_intf.c index 5a5455585c1d..192688344ed2 100644 --- a/drivers/char/ipmi/ipmi_si_intf.c +++ b/drivers/char/ipmi/ipmi_si_intf.c | |||
@@ -2352,10 +2352,16 @@ static int __devinit ipmi_of_probe(struct of_device *dev, | |||
2352 | 2352 | ||
2353 | info->si_type = (enum si_type) match->data; | 2353 | info->si_type = (enum si_type) match->data; |
2354 | info->addr_source = "device-tree"; | 2354 | info->addr_source = "device-tree"; |
2355 | info->io_setup = mem_setup; | ||
2356 | info->irq_setup = std_irq_setup; | 2355 | info->irq_setup = std_irq_setup; |
2357 | 2356 | ||
2358 | info->io.addr_type = IPMI_MEM_ADDR_SPACE; | 2357 | if (resource.flags & IORESOURCE_IO) { |
2358 | info->io_setup = port_setup; | ||
2359 | info->io.addr_type = IPMI_IO_ADDR_SPACE; | ||
2360 | } else { | ||
2361 | info->io_setup = mem_setup; | ||
2362 | info->io.addr_type = IPMI_MEM_ADDR_SPACE; | ||
2363 | } | ||
2364 | |||
2359 | info->io.addr_data = resource.start; | 2365 | info->io.addr_data = resource.start; |
2360 | 2366 | ||
2361 | info->io.regsize = regsize ? *regsize : DEFAULT_REGSIZE; | 2367 | info->io.regsize = regsize ? *regsize : DEFAULT_REGSIZE; |
diff --git a/drivers/char/tty_io.c b/drivers/char/tty_io.c index 49c1a2267a55..e94bee032314 100644 --- a/drivers/char/tty_io.c +++ b/drivers/char/tty_io.c | |||
@@ -1215,10 +1215,11 @@ int tty_check_change(struct tty_struct *tty) | |||
1215 | 1215 | ||
1216 | if (!tty->pgrp) { | 1216 | if (!tty->pgrp) { |
1217 | printk(KERN_WARNING "tty_check_change: tty->pgrp == NULL!\n"); | 1217 | printk(KERN_WARNING "tty_check_change: tty->pgrp == NULL!\n"); |
1218 | goto out; | 1218 | goto out_unlock; |
1219 | } | 1219 | } |
1220 | if (task_pgrp(current) == tty->pgrp) | 1220 | if (task_pgrp(current) == tty->pgrp) |
1221 | goto out; | 1221 | goto out_unlock; |
1222 | spin_unlock_irqrestore(&tty->ctrl_lock, flags); | ||
1222 | if (is_ignored(SIGTTOU)) | 1223 | if (is_ignored(SIGTTOU)) |
1223 | goto out; | 1224 | goto out; |
1224 | if (is_current_pgrp_orphaned()) { | 1225 | if (is_current_pgrp_orphaned()) { |
@@ -1229,6 +1230,8 @@ int tty_check_change(struct tty_struct *tty) | |||
1229 | set_thread_flag(TIF_SIGPENDING); | 1230 | set_thread_flag(TIF_SIGPENDING); |
1230 | ret = -ERESTARTSYS; | 1231 | ret = -ERESTARTSYS; |
1231 | out: | 1232 | out: |
1233 | return ret; | ||
1234 | out_unlock: | ||
1232 | spin_unlock_irqrestore(&tty->ctrl_lock, flags); | 1235 | spin_unlock_irqrestore(&tty->ctrl_lock, flags); |
1233 | return ret; | 1236 | return ret; |
1234 | } | 1237 | } |
diff --git a/drivers/ide/Kconfig b/drivers/ide/Kconfig index f702f9152ce6..b4f3aefa12b6 100644 --- a/drivers/ide/Kconfig +++ b/drivers/ide/Kconfig | |||
@@ -1,8 +1,6 @@ | |||
1 | # | 1 | # |
2 | # IDE ATA ATAPI Block device driver configuration | 2 | # IDE ATA ATAPI Block device driver configuration |
3 | # | 3 | # |
4 | # Andre Hedrick <andre@linux-ide.org> | ||
5 | # | ||
6 | 4 | ||
7 | # Select HAVE_IDE if IDE is supported | 5 | # Select HAVE_IDE if IDE is supported |
8 | config HAVE_IDE | 6 | config HAVE_IDE |
@@ -335,7 +333,7 @@ config BLK_DEV_CMD640 | |||
335 | This driver will work automatically in PCI based systems (most new | 333 | This driver will work automatically in PCI based systems (most new |
336 | systems have PCI slots). But if your system uses VESA local bus | 334 | systems have PCI slots). But if your system uses VESA local bus |
337 | (VLB) instead of PCI, you must also supply a kernel boot parameter | 335 | (VLB) instead of PCI, you must also supply a kernel boot parameter |
338 | to enable the CMD640 bugfix/support: "ide0=cmd640_vlb". (Try "man | 336 | to enable the CMD640 bugfix/support: "cmd640.probe_vlb". (Try "man |
339 | bootparam" or see the documentation of your boot loader about how to | 337 | bootparam" or see the documentation of your boot loader about how to |
340 | pass options to the kernel.) | 338 | pass options to the kernel.) |
341 | 339 | ||
@@ -457,27 +455,11 @@ config BLK_DEV_ALI15X3 | |||
457 | onboard chipsets. It also tests for Simplex mode and enables | 455 | onboard chipsets. It also tests for Simplex mode and enables |
458 | normal dual channel support. | 456 | normal dual channel support. |
459 | 457 | ||
460 | If you say Y here, you also need to say Y to "Use DMA by default | 458 | Please read the comments at the top of |
461 | when available", above. Please read the comments at the top of | ||
462 | <file:drivers/ide/pci/alim15x3.c>. | 459 | <file:drivers/ide/pci/alim15x3.c>. |
463 | 460 | ||
464 | If unsure, say N. | 461 | If unsure, say N. |
465 | 462 | ||
466 | config WDC_ALI15X3 | ||
467 | bool "ALI M15x3 WDC support (DANGEROUS)" | ||
468 | depends on BLK_DEV_ALI15X3 | ||
469 | ---help--- | ||
470 | This allows for UltraDMA support for WDC drives that ignore CRC | ||
471 | checking. You are a fool for enabling this option, but there have | ||
472 | been requests. DO NOT COMPLAIN IF YOUR DRIVE HAS FS CORRUPTION, IF | ||
473 | YOU ENABLE THIS! No one will listen, just laugh for ignoring this | ||
474 | SERIOUS WARNING. | ||
475 | |||
476 | Using this option can allow WDC drives to run at ATA-4/5 transfer | ||
477 | rates with only an ATA-2 support structure. | ||
478 | |||
479 | SAY N! | ||
480 | |||
481 | config BLK_DEV_AMD74XX | 463 | config BLK_DEV_AMD74XX |
482 | tristate "AMD and nVidia IDE support" | 464 | tristate "AMD and nVidia IDE support" |
483 | depends on !ARM | 465 | depends on !ARM |
@@ -520,9 +502,6 @@ config BLK_DEV_CY82C693 | |||
520 | This driver adds detection and support for the CY82C693 chipset | 502 | This driver adds detection and support for the CY82C693 chipset |
521 | used on Digital's PC-Alpha 164SX boards. | 503 | used on Digital's PC-Alpha 164SX boards. |
522 | 504 | ||
523 | If you say Y here, you need to say Y to "Use DMA by default | ||
524 | when available" as well. | ||
525 | |||
526 | config BLK_DEV_CS5520 | 505 | config BLK_DEV_CS5520 |
527 | tristate "Cyrix CS5510/20 MediaGX chipset support (VERY EXPERIMENTAL)" | 506 | tristate "Cyrix CS5510/20 MediaGX chipset support (VERY EXPERIMENTAL)" |
528 | depends on EXPERIMENTAL | 507 | depends on EXPERIMENTAL |
@@ -613,13 +592,12 @@ config BLK_DEV_SC1200 | |||
613 | National SCx200 series of embedded x86 "Geode" systems. | 592 | National SCx200 series of embedded x86 "Geode" systems. |
614 | 593 | ||
615 | config BLK_DEV_PIIX | 594 | config BLK_DEV_PIIX |
616 | tristate "Intel PIIXn chipsets support" | 595 | tristate "Intel PIIX/ICH chipsets support" |
617 | select BLK_DEV_IDEDMA_PCI | 596 | select BLK_DEV_IDEDMA_PCI |
618 | help | 597 | help |
619 | This driver adds explicit support for Intel PIIX and ICH chips | 598 | This driver adds explicit support for Intel PIIX and ICH chips. |
620 | and also for the Efar Victory66 (slc90e66) chip. This allows | 599 | This allows the kernel to change PIO, DMA and UDMA speeds and to |
621 | the kernel to change PIO, DMA and UDMA speeds and to configure | 600 | configure the chip to optimum performance. |
622 | the chip to optimum performance. | ||
623 | 601 | ||
624 | config BLK_DEV_IT8213 | 602 | config BLK_DEV_IT8213 |
625 | tristate "IT8213 IDE support" | 603 | tristate "IT8213 IDE support" |
@@ -657,11 +635,7 @@ config BLK_DEV_PDC202XX_OLD | |||
657 | happen if the BIOS revisions of all installed cards (three-max) do | 635 | happen if the BIOS revisions of all installed cards (three-max) do |
658 | not match, the driver attempts to do dynamic tuning of the chipset | 636 | not match, the driver attempts to do dynamic tuning of the chipset |
659 | at boot-time for max-speed. Ultra33 BIOS 1.25 or newer is required | 637 | at boot-time for max-speed. Ultra33 BIOS 1.25 or newer is required |
660 | for more than one card. This card may require that you say Y to | 638 | for more than one card. |
661 | "Special UDMA Feature". | ||
662 | |||
663 | If you say Y here, you need to say Y to "Use DMA by default when | ||
664 | available" as well. | ||
665 | 639 | ||
666 | Please read the comments at the top of | 640 | Please read the comments at the top of |
667 | <file:drivers/ide/pci/pdc202xx_old.c>. | 641 | <file:drivers/ide/pci/pdc202xx_old.c>. |
@@ -710,9 +684,6 @@ config BLK_DEV_SIS5513 | |||
710 | ATA100: SiS635, SiS645, SiS650, SiS730, SiS735, SiS740, | 684 | ATA100: SiS635, SiS645, SiS650, SiS730, SiS735, SiS740, |
711 | SiS745, SiS750 | 685 | SiS745, SiS750 |
712 | 686 | ||
713 | If you say Y here, you need to say Y to "Use DMA by default when | ||
714 | available" as well. | ||
715 | |||
716 | Please read the comments at the top of <file:drivers/ide/pci/sis5513.c>. | 687 | Please read the comments at the top of <file:drivers/ide/pci/sis5513.c>. |
717 | 688 | ||
718 | config BLK_DEV_SL82C105 | 689 | config BLK_DEV_SL82C105 |
@@ -734,9 +705,6 @@ config BLK_DEV_SLC90E66 | |||
734 | and it will handle timing cycles. Since this is an improved | 705 | and it will handle timing cycles. Since this is an improved |
735 | look-a-like to the PIIX4 it should be a nice addition. | 706 | look-a-like to the PIIX4 it should be a nice addition. |
736 | 707 | ||
737 | If you say Y here, you need to say Y to "Use DMA by default when | ||
738 | available" as well. | ||
739 | |||
740 | Please read the comments at the top of | 708 | Please read the comments at the top of |
741 | <file:drivers/ide/pci/slc90e66.c>. | 709 | <file:drivers/ide/pci/slc90e66.c>. |
742 | 710 | ||
@@ -888,17 +856,17 @@ config BLK_DEV_IDEDOUBLER | |||
888 | bool "Amiga IDE Doubler support (EXPERIMENTAL)" | 856 | bool "Amiga IDE Doubler support (EXPERIMENTAL)" |
889 | depends on BLK_DEV_GAYLE && EXPERIMENTAL | 857 | depends on BLK_DEV_GAYLE && EXPERIMENTAL |
890 | ---help--- | 858 | ---help--- |
891 | This driver provides support for the so-called `IDE doublers' (made | 859 | This feature provides support for the so-called `IDE doublers' (made |
892 | by various manufacturers, e.g. Eyetech) that can be connected to | 860 | by various manufacturers, e.g. Eyetech) that can be connected to |
893 | the on-board IDE interface of some Amiga models. Using such an IDE | 861 | the on-board IDE interface of some Amiga models. Using such an IDE |
894 | doubler, you can connect up to four instead of two IDE devices to | 862 | doubler, you can connect up to four instead of two IDE devices to |
895 | the Amiga's on-board IDE interface. | 863 | the Amiga's on-board IDE interface. |
896 | 864 | ||
897 | Note that the normal Amiga Gayle IDE driver may not work correctly | 865 | Note that the normal Amiga Gayle IDE driver may not work correctly |
898 | if you have an IDE doubler and don't enable this driver! | 866 | if you have an IDE doubler and don't enable this feature! |
899 | 867 | ||
900 | Say Y if you have an IDE doubler. The driver is enabled at kernel | 868 | Say Y if you have an IDE doubler. The feature is enabled at kernel |
901 | runtime using the "ide=doubler" kernel boot parameter. | 869 | runtime using the "gayle.doubler" kernel boot parameter. |
902 | 870 | ||
903 | config BLK_DEV_BUDDHA | 871 | config BLK_DEV_BUDDHA |
904 | tristate "Buddha/Catweasel/X-Surf IDE interface support (EXPERIMENTAL)" | 872 | tristate "Buddha/Catweasel/X-Surf IDE interface support (EXPERIMENTAL)" |
diff --git a/drivers/ide/ide-iops.c b/drivers/ide/ide-iops.c index 57d9a9a79a6f..0daf923541ff 100644 --- a/drivers/ide/ide-iops.c +++ b/drivers/ide/ide-iops.c | |||
@@ -95,7 +95,7 @@ void SELECT_DRIVE (ide_drive_t *drive) | |||
95 | hwif->OUTB(drive->select.all, hwif->io_ports.device_addr); | 95 | hwif->OUTB(drive->select.all, hwif->io_ports.device_addr); |
96 | } | 96 | } |
97 | 97 | ||
98 | void SELECT_MASK (ide_drive_t *drive, int mask) | 98 | static void SELECT_MASK(ide_drive_t *drive, int mask) |
99 | { | 99 | { |
100 | const struct ide_port_ops *port_ops = drive->hwif->port_ops; | 100 | const struct ide_port_ops *port_ops = drive->hwif->port_ops; |
101 | 101 | ||
diff --git a/drivers/ide/mips/swarm.c b/drivers/ide/mips/swarm.c index 712d17bdd470..52fee3d2771a 100644 --- a/drivers/ide/mips/swarm.c +++ b/drivers/ide/mips/swarm.c | |||
@@ -4,7 +4,7 @@ | |||
4 | * Author: Manish Lachwani, mlachwani@mvista.com | 4 | * Author: Manish Lachwani, mlachwani@mvista.com |
5 | * Copyright (C) 2004 MIPS Technologies, Inc. All rights reserved. | 5 | * Copyright (C) 2004 MIPS Technologies, Inc. All rights reserved. |
6 | * Author: Maciej W. Rozycki <macro@mips.com> | 6 | * Author: Maciej W. Rozycki <macro@mips.com> |
7 | * Copyright (c) 2006 Maciej W. Rozycki | 7 | * Copyright (c) 2006, 2008 Maciej W. Rozycki |
8 | * | 8 | * |
9 | * This program is free software; you can redistribute it and/or | 9 | * This program is free software; you can redistribute it and/or |
10 | * modify it under the terms of the GNU General Public License | 10 | * modify it under the terms of the GNU General Public License |
@@ -70,8 +70,9 @@ static int __devinit swarm_ide_probe(struct device *dev) | |||
70 | ide_hwif_t *hwif; | 70 | ide_hwif_t *hwif; |
71 | u8 __iomem *base; | 71 | u8 __iomem *base; |
72 | phys_t offset, size; | 72 | phys_t offset, size; |
73 | hw_regs_t hw; | ||
73 | int i; | 74 | int i; |
74 | u8 idx[4] = { 0xff, 0xff, 0xff, 0xff }; | 75 | u8 idx[] = { 0xff, 0xff, 0xff, 0xff }; |
75 | 76 | ||
76 | if (!SIBYTE_HAVE_IDE) | 77 | if (!SIBYTE_HAVE_IDE) |
77 | return -ENODEV; | 78 | return -ENODEV; |
@@ -112,14 +113,15 @@ static int __devinit swarm_ide_probe(struct device *dev) | |||
112 | hwif->host_flags = IDE_HFLAG_MMIO; | 113 | hwif->host_flags = IDE_HFLAG_MMIO; |
113 | default_hwif_mmiops(hwif); | 114 | default_hwif_mmiops(hwif); |
114 | 115 | ||
115 | hwif->chipset = ide_generic; | ||
116 | |||
117 | for (i = 0; i <= 7; i++) | 116 | for (i = 0; i <= 7; i++) |
118 | hwif->io_ports_array[i] = | 117 | hw.io_ports_array[i] = |
119 | (unsigned long)(base + ((0x1f0 + i) << 5)); | 118 | (unsigned long)(base + ((0x1f0 + i) << 5)); |
120 | hwif->io_ports.ctl_addr = | 119 | hw.io_ports.ctl_addr = |
121 | (unsigned long)(base + (0x3f6 << 5)); | 120 | (unsigned long)(base + (0x3f6 << 5)); |
122 | hwif->irq = K_INT_GB_IDE; | 121 | hw.irq = K_INT_GB_IDE; |
122 | hw.chipset = ide_generic; | ||
123 | |||
124 | ide_init_port_hw(hwif, &hw); | ||
123 | 125 | ||
124 | idx[0] = hwif->index; | 126 | idx[0] = hwif->index; |
125 | 127 | ||
diff --git a/drivers/ide/pci/alim15x3.c b/drivers/ide/pci/alim15x3.c index c1922f9cfe80..f2129d5e07f2 100644 --- a/drivers/ide/pci/alim15x3.c +++ b/drivers/ide/pci/alim15x3.c | |||
@@ -39,6 +39,16 @@ | |||
39 | #include <asm/io.h> | 39 | #include <asm/io.h> |
40 | 40 | ||
41 | /* | 41 | /* |
42 | * Allow UDMA on M1543C-E chipset for WDC disks that ignore CRC checking | ||
43 | * (this is DANGEROUS and could result in data corruption). | ||
44 | */ | ||
45 | static int wdc_udma; | ||
46 | |||
47 | module_param(wdc_udma, bool, 0); | ||
48 | MODULE_PARM_DESC(wdc_udma, | ||
49 | "allow UDMA on M1543C-E chipset for WDC disks (DANGEROUS)"); | ||
50 | |||
51 | /* | ||
42 | * ALi devices are not plug in. Otherwise these static values would | 52 | * ALi devices are not plug in. Otherwise these static values would |
43 | * need to go. They ought to go away anyway | 53 | * need to go. They ought to go away anyway |
44 | */ | 54 | */ |
@@ -76,11 +86,6 @@ static void ali_set_pio_mode(ide_drive_t *drive, const u8 pio) | |||
76 | a_clc = 0; | 86 | a_clc = 0; |
77 | c_time = ide_pio_timings[pio].cycle_time; | 87 | c_time = ide_pio_timings[pio].cycle_time; |
78 | 88 | ||
79 | #if 0 | ||
80 | if ((r_clc = ((c_time - s_time - a_time) * bus_speed + 999) / 1000) >= 16) | ||
81 | r_clc = 0; | ||
82 | #endif | ||
83 | |||
84 | if (!(r_clc = (c_time * bus_speed + 999) / 1000 - a_clc - s_clc)) { | 89 | if (!(r_clc = (c_time * bus_speed + 999) / 1000 - a_clc - s_clc)) { |
85 | r_clc = 1; | 90 | r_clc = 1; |
86 | } else { | 91 | } else { |
@@ -110,16 +115,6 @@ static void ali_set_pio_mode(ide_drive_t *drive, const u8 pio) | |||
110 | pci_write_config_byte(dev, port, s_clc); | 115 | pci_write_config_byte(dev, port, s_clc); |
111 | pci_write_config_byte(dev, port+drive->select.b.unit+2, (a_clc << 4) | r_clc); | 116 | pci_write_config_byte(dev, port+drive->select.b.unit+2, (a_clc << 4) | r_clc); |
112 | local_irq_restore(flags); | 117 | local_irq_restore(flags); |
113 | |||
114 | /* | ||
115 | * setup active rec | ||
116 | * { 70, 165, 365 }, PIO Mode 0 | ||
117 | * { 50, 125, 208 }, PIO Mode 1 | ||
118 | * { 30, 100, 110 }, PIO Mode 2 | ||
119 | * { 30, 80, 70 }, PIO Mode 3 with IORDY | ||
120 | * { 25, 70, 25 }, PIO Mode 4 with IORDY ns | ||
121 | * { 20, 50, 30 } PIO Mode 5 with IORDY (nonstandard) | ||
122 | */ | ||
123 | } | 118 | } |
124 | 119 | ||
125 | /** | 120 | /** |
@@ -131,9 +126,7 @@ static void ali_set_pio_mode(ide_drive_t *drive, const u8 pio) | |||
131 | * The actual rules for the ALi are: | 126 | * The actual rules for the ALi are: |
132 | * No UDMA on revisions <= 0x20 | 127 | * No UDMA on revisions <= 0x20 |
133 | * Disk only for revisions < 0xC2 | 128 | * Disk only for revisions < 0xC2 |
134 | * Not WDC drives for revisions < 0xC2 | 129 | * Not WDC drives on M1543C-E (?) |
135 | * | ||
136 | * FIXME: WDC ifdef needs to die | ||
137 | */ | 130 | */ |
138 | 131 | ||
139 | static u8 ali_udma_filter(ide_drive_t *drive) | 132 | static u8 ali_udma_filter(ide_drive_t *drive) |
@@ -141,10 +134,9 @@ static u8 ali_udma_filter(ide_drive_t *drive) | |||
141 | if (m5229_revision > 0x20 && m5229_revision < 0xC2) { | 134 | if (m5229_revision > 0x20 && m5229_revision < 0xC2) { |
142 | if (drive->media != ide_disk) | 135 | if (drive->media != ide_disk) |
143 | return 0; | 136 | return 0; |
144 | #ifndef CONFIG_WDC_ALI15X3 | 137 | if (chip_is_1543c_e && strstr(drive->id->model, "WDC ") && |
145 | if (chip_is_1543c_e && strstr(drive->id->model, "WDC ")) | 138 | wdc_udma == 0) |
146 | return 0; | 139 | return 0; |
147 | #endif | ||
148 | } | 140 | } |
149 | 141 | ||
150 | return drive->hwif->ultra_mask; | 142 | return drive->hwif->ultra_mask; |
@@ -537,17 +529,9 @@ static const struct ide_port_info ali15x3_chipset __devinitdata = { | |||
537 | 529 | ||
538 | static int __devinit alim15x3_init_one(struct pci_dev *dev, const struct pci_device_id *id) | 530 | static int __devinit alim15x3_init_one(struct pci_dev *dev, const struct pci_device_id *id) |
539 | { | 531 | { |
540 | static struct pci_device_id ati_rs100[] = { | ||
541 | { PCI_DEVICE(PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_RS100) }, | ||
542 | { }, | ||
543 | }; | ||
544 | |||
545 | struct ide_port_info d = ali15x3_chipset; | 532 | struct ide_port_info d = ali15x3_chipset; |
546 | u8 rev = dev->revision, idx = id->driver_data; | 533 | u8 rev = dev->revision, idx = id->driver_data; |
547 | 534 | ||
548 | if (pci_dev_present(ati_rs100)) | ||
549 | printk(KERN_WARNING "alim15x3: ATI Radeon IGP Northbridge is not yet fully tested.\n"); | ||
550 | |||
551 | /* don't use LBA48 DMA on ALi devices before rev 0xC5 */ | 535 | /* don't use LBA48 DMA on ALi devices before rev 0xC5 */ |
552 | if (rev <= 0xC4) | 536 | if (rev <= 0xC4) |
553 | d.host_flags |= IDE_HFLAG_NO_LBA48_DMA; | 537 | d.host_flags |= IDE_HFLAG_NO_LBA48_DMA; |
diff --git a/drivers/ide/pci/cs5520.c b/drivers/ide/pci/cs5520.c index 17669a434438..992b1cf8db69 100644 --- a/drivers/ide/pci/cs5520.c +++ b/drivers/ide/pci/cs5520.c | |||
@@ -119,6 +119,7 @@ static const struct ide_dma_ops cs5520_dma_ops = { | |||
119 | .dma_timeout = ide_dma_timeout, | 119 | .dma_timeout = ide_dma_timeout, |
120 | }; | 120 | }; |
121 | 121 | ||
122 | /* FIXME: VDMA is disabled because it caused system hangs */ | ||
122 | #define DECLARE_CS_DEV(name_str) \ | 123 | #define DECLARE_CS_DEV(name_str) \ |
123 | { \ | 124 | { \ |
124 | .name = name_str, \ | 125 | .name = name_str, \ |
@@ -126,7 +127,6 @@ static const struct ide_dma_ops cs5520_dma_ops = { | |||
126 | .dma_ops = &cs5520_dma_ops, \ | 127 | .dma_ops = &cs5520_dma_ops, \ |
127 | .host_flags = IDE_HFLAG_ISA_PORTS | \ | 128 | .host_flags = IDE_HFLAG_ISA_PORTS | \ |
128 | IDE_HFLAG_CS5520 | \ | 129 | IDE_HFLAG_CS5520 | \ |
129 | IDE_HFLAG_VDMA | \ | ||
130 | IDE_HFLAG_NO_ATAPI_DMA | \ | 130 | IDE_HFLAG_NO_ATAPI_DMA | \ |
131 | IDE_HFLAG_ABUSE_SET_DMA_MODE, \ | 131 | IDE_HFLAG_ABUSE_SET_DMA_MODE, \ |
132 | .pio_mask = ATA_PIO4, \ | 132 | .pio_mask = ATA_PIO4, \ |
diff --git a/drivers/md/linear.c b/drivers/md/linear.c index 0b8511776b3e..10748240cb2f 100644 --- a/drivers/md/linear.c +++ b/drivers/md/linear.c | |||
@@ -250,6 +250,7 @@ static int linear_run (mddev_t *mddev) | |||
250 | { | 250 | { |
251 | linear_conf_t *conf; | 251 | linear_conf_t *conf; |
252 | 252 | ||
253 | mddev->queue->queue_lock = &mddev->queue->__queue_lock; | ||
253 | conf = linear_conf(mddev, mddev->raid_disks); | 254 | conf = linear_conf(mddev, mddev->raid_disks); |
254 | 255 | ||
255 | if (!conf) | 256 | if (!conf) |
diff --git a/drivers/md/multipath.c b/drivers/md/multipath.c index 42ee1a2dc144..4f4d1f383842 100644 --- a/drivers/md/multipath.c +++ b/drivers/md/multipath.c | |||
@@ -417,6 +417,7 @@ static int multipath_run (mddev_t *mddev) | |||
417 | * bookkeeping area. [whatever we allocate in multipath_run(), | 417 | * bookkeeping area. [whatever we allocate in multipath_run(), |
418 | * should be freed in multipath_stop()] | 418 | * should be freed in multipath_stop()] |
419 | */ | 419 | */ |
420 | mddev->queue->queue_lock = &mddev->queue->__queue_lock; | ||
420 | 421 | ||
421 | conf = kzalloc(sizeof(multipath_conf_t), GFP_KERNEL); | 422 | conf = kzalloc(sizeof(multipath_conf_t), GFP_KERNEL); |
422 | mddev->private = conf; | 423 | mddev->private = conf; |
diff --git a/drivers/md/raid0.c b/drivers/md/raid0.c index 818b48284096..914c04ddec7c 100644 --- a/drivers/md/raid0.c +++ b/drivers/md/raid0.c | |||
@@ -280,6 +280,7 @@ static int raid0_run (mddev_t *mddev) | |||
280 | (mddev->chunk_size>>1)-1); | 280 | (mddev->chunk_size>>1)-1); |
281 | blk_queue_max_sectors(mddev->queue, mddev->chunk_size >> 9); | 281 | blk_queue_max_sectors(mddev->queue, mddev->chunk_size >> 9); |
282 | blk_queue_segment_boundary(mddev->queue, (mddev->chunk_size>>1) - 1); | 282 | blk_queue_segment_boundary(mddev->queue, (mddev->chunk_size>>1) - 1); |
283 | mddev->queue->queue_lock = &mddev->queue->__queue_lock; | ||
283 | 284 | ||
284 | conf = kmalloc(sizeof (raid0_conf_t), GFP_KERNEL); | 285 | conf = kmalloc(sizeof (raid0_conf_t), GFP_KERNEL); |
285 | if (!conf) | 286 | if (!conf) |
diff --git a/drivers/md/raid1.c b/drivers/md/raid1.c index 6778b7cb39bd..ac409b7d83f5 100644 --- a/drivers/md/raid1.c +++ b/drivers/md/raid1.c | |||
@@ -1935,6 +1935,9 @@ static int run(mddev_t *mddev) | |||
1935 | if (!conf->r1bio_pool) | 1935 | if (!conf->r1bio_pool) |
1936 | goto out_no_mem; | 1936 | goto out_no_mem; |
1937 | 1937 | ||
1938 | spin_lock_init(&conf->device_lock); | ||
1939 | mddev->queue->queue_lock = &conf->device_lock; | ||
1940 | |||
1938 | rdev_for_each(rdev, tmp, mddev) { | 1941 | rdev_for_each(rdev, tmp, mddev) { |
1939 | disk_idx = rdev->raid_disk; | 1942 | disk_idx = rdev->raid_disk; |
1940 | if (disk_idx >= mddev->raid_disks | 1943 | if (disk_idx >= mddev->raid_disks |
@@ -1958,7 +1961,6 @@ static int run(mddev_t *mddev) | |||
1958 | } | 1961 | } |
1959 | conf->raid_disks = mddev->raid_disks; | 1962 | conf->raid_disks = mddev->raid_disks; |
1960 | conf->mddev = mddev; | 1963 | conf->mddev = mddev; |
1961 | spin_lock_init(&conf->device_lock); | ||
1962 | INIT_LIST_HEAD(&conf->retry_list); | 1964 | INIT_LIST_HEAD(&conf->retry_list); |
1963 | 1965 | ||
1964 | spin_lock_init(&conf->resync_lock); | 1966 | spin_lock_init(&conf->resync_lock); |
diff --git a/drivers/md/raid10.c b/drivers/md/raid10.c index faf3d8912979..8536ede1e712 100644 --- a/drivers/md/raid10.c +++ b/drivers/md/raid10.c | |||
@@ -2082,6 +2082,9 @@ static int run(mddev_t *mddev) | |||
2082 | goto out_free_conf; | 2082 | goto out_free_conf; |
2083 | } | 2083 | } |
2084 | 2084 | ||
2085 | spin_lock_init(&conf->device_lock); | ||
2086 | mddev->queue->queue_lock = &conf->device_lock; | ||
2087 | |||
2085 | rdev_for_each(rdev, tmp, mddev) { | 2088 | rdev_for_each(rdev, tmp, mddev) { |
2086 | disk_idx = rdev->raid_disk; | 2089 | disk_idx = rdev->raid_disk; |
2087 | if (disk_idx >= mddev->raid_disks | 2090 | if (disk_idx >= mddev->raid_disks |
@@ -2103,7 +2106,6 @@ static int run(mddev_t *mddev) | |||
2103 | 2106 | ||
2104 | disk->head_position = 0; | 2107 | disk->head_position = 0; |
2105 | } | 2108 | } |
2106 | spin_lock_init(&conf->device_lock); | ||
2107 | INIT_LIST_HEAD(&conf->retry_list); | 2109 | INIT_LIST_HEAD(&conf->retry_list); |
2108 | 2110 | ||
2109 | spin_lock_init(&conf->resync_lock); | 2111 | spin_lock_init(&conf->resync_lock); |
diff --git a/drivers/md/raid5.c b/drivers/md/raid5.c index ee0ea9183080..93fde48c0f42 100644 --- a/drivers/md/raid5.c +++ b/drivers/md/raid5.c | |||
@@ -4257,6 +4257,7 @@ static int run(mddev_t *mddev) | |||
4257 | goto abort; | 4257 | goto abort; |
4258 | } | 4258 | } |
4259 | spin_lock_init(&conf->device_lock); | 4259 | spin_lock_init(&conf->device_lock); |
4260 | mddev->queue->queue_lock = &conf->device_lock; | ||
4260 | init_waitqueue_head(&conf->wait_for_stripe); | 4261 | init_waitqueue_head(&conf->wait_for_stripe); |
4261 | init_waitqueue_head(&conf->wait_for_overlap); | 4262 | init_waitqueue_head(&conf->wait_for_overlap); |
4262 | INIT_LIST_HEAD(&conf->handle_list); | 4263 | INIT_LIST_HEAD(&conf->handle_list); |
diff --git a/drivers/oprofile/cpu_buffer.c b/drivers/oprofile/cpu_buffer.c index efcbf4b4579f..2450b3a393ff 100644 --- a/drivers/oprofile/cpu_buffer.c +++ b/drivers/oprofile/cpu_buffer.c | |||
@@ -27,7 +27,7 @@ | |||
27 | #include "buffer_sync.h" | 27 | #include "buffer_sync.h" |
28 | #include "oprof.h" | 28 | #include "oprof.h" |
29 | 29 | ||
30 | DEFINE_PER_CPU_SHARED_ALIGNED(struct oprofile_cpu_buffer, cpu_buffer); | 30 | DEFINE_PER_CPU(struct oprofile_cpu_buffer, cpu_buffer); |
31 | 31 | ||
32 | static void wq_sync_buffer(struct work_struct *work); | 32 | static void wq_sync_buffer(struct work_struct *work); |
33 | 33 | ||
diff --git a/drivers/oprofile/cpu_buffer.h b/drivers/oprofile/cpu_buffer.h index 13588174311d..c3e366b52261 100644 --- a/drivers/oprofile/cpu_buffer.h +++ b/drivers/oprofile/cpu_buffer.h | |||
@@ -46,7 +46,7 @@ struct oprofile_cpu_buffer { | |||
46 | unsigned long sample_invalid_eip; | 46 | unsigned long sample_invalid_eip; |
47 | int cpu; | 47 | int cpu; |
48 | struct delayed_work work; | 48 | struct delayed_work work; |
49 | } ____cacheline_aligned; | 49 | }; |
50 | 50 | ||
51 | DECLARE_PER_CPU(struct oprofile_cpu_buffer, cpu_buffer); | 51 | DECLARE_PER_CPU(struct oprofile_cpu_buffer, cpu_buffer); |
52 | 52 | ||
diff --git a/drivers/pnp/base.h b/drivers/pnp/base.h index 4fe7c58f57e9..886dac823ed6 100644 --- a/drivers/pnp/base.h +++ b/drivers/pnp/base.h | |||
@@ -19,6 +19,7 @@ void pnp_remove_card(struct pnp_card *card); | |||
19 | int pnp_add_card_device(struct pnp_card *card, struct pnp_dev *dev); | 19 | int pnp_add_card_device(struct pnp_card *card, struct pnp_dev *dev); |
20 | void pnp_remove_card_device(struct pnp_dev *dev); | 20 | void pnp_remove_card_device(struct pnp_dev *dev); |
21 | 21 | ||
22 | struct pnp_option *pnp_build_option(int priority); | ||
22 | struct pnp_option *pnp_register_independent_option(struct pnp_dev *dev); | 23 | struct pnp_option *pnp_register_independent_option(struct pnp_dev *dev); |
23 | struct pnp_option *pnp_register_dependent_option(struct pnp_dev *dev, | 24 | struct pnp_option *pnp_register_dependent_option(struct pnp_dev *dev, |
24 | int priority); | 25 | int priority); |
diff --git a/drivers/pnp/quirks.c b/drivers/pnp/quirks.c index d049a2279fea..ffdb12a59c40 100644 --- a/drivers/pnp/quirks.c +++ b/drivers/pnp/quirks.c | |||
@@ -111,6 +111,113 @@ static void quirk_sb16audio_resources(struct pnp_dev *dev) | |||
111 | dev_info(&dev->dev, "SB audio device quirk - increased port range\n"); | 111 | dev_info(&dev->dev, "SB audio device quirk - increased port range\n"); |
112 | } | 112 | } |
113 | 113 | ||
114 | static struct pnp_option *quirk_isapnp_mpu_options(struct pnp_dev *dev) | ||
115 | { | ||
116 | struct pnp_option *head = NULL; | ||
117 | struct pnp_option *prev = NULL; | ||
118 | struct pnp_option *res; | ||
119 | |||
120 | /* | ||
121 | * Build a functional IRQ-less variant of each MPU option. | ||
122 | */ | ||
123 | |||
124 | for (res = dev->dependent; res; res = res->next) { | ||
125 | struct pnp_option *curr; | ||
126 | struct pnp_port *port; | ||
127 | struct pnp_port *copy; | ||
128 | |||
129 | port = res->port; | ||
130 | if (!port || !res->irq) | ||
131 | continue; | ||
132 | |||
133 | copy = pnp_alloc(sizeof *copy); | ||
134 | if (!copy) | ||
135 | break; | ||
136 | |||
137 | copy->min = port->min; | ||
138 | copy->max = port->max; | ||
139 | copy->align = port->align; | ||
140 | copy->size = port->size; | ||
141 | copy->flags = port->flags; | ||
142 | |||
143 | curr = pnp_build_option(PNP_RES_PRIORITY_FUNCTIONAL); | ||
144 | if (!curr) { | ||
145 | kfree(copy); | ||
146 | break; | ||
147 | } | ||
148 | curr->port = copy; | ||
149 | |||
150 | if (prev) | ||
151 | prev->next = curr; | ||
152 | else | ||
153 | head = curr; | ||
154 | prev = curr; | ||
155 | } | ||
156 | if (head) | ||
157 | dev_info(&dev->dev, "adding IRQ-less MPU options\n"); | ||
158 | |||
159 | return head; | ||
160 | } | ||
161 | |||
162 | static void quirk_ad1815_mpu_resources(struct pnp_dev *dev) | ||
163 | { | ||
164 | struct pnp_option *res; | ||
165 | struct pnp_irq *irq; | ||
166 | |||
167 | /* | ||
168 | * Distribute the independent IRQ over the dependent options | ||
169 | */ | ||
170 | |||
171 | res = dev->independent; | ||
172 | if (!res) | ||
173 | return; | ||
174 | |||
175 | irq = res->irq; | ||
176 | if (!irq || irq->next) | ||
177 | return; | ||
178 | |||
179 | res = dev->dependent; | ||
180 | if (!res) | ||
181 | return; | ||
182 | |||
183 | while (1) { | ||
184 | struct pnp_irq *copy; | ||
185 | |||
186 | copy = pnp_alloc(sizeof *copy); | ||
187 | if (!copy) | ||
188 | break; | ||
189 | |||
190 | memcpy(copy->map, irq->map, sizeof copy->map); | ||
191 | copy->flags = irq->flags; | ||
192 | |||
193 | copy->next = res->irq; /* Yes, this is NULL */ | ||
194 | res->irq = copy; | ||
195 | |||
196 | if (!res->next) | ||
197 | break; | ||
198 | res = res->next; | ||
199 | } | ||
200 | kfree(irq); | ||
201 | |||
202 | res->next = quirk_isapnp_mpu_options(dev); | ||
203 | |||
204 | res = dev->independent; | ||
205 | res->irq = NULL; | ||
206 | } | ||
207 | |||
208 | static void quirk_isapnp_mpu_resources(struct pnp_dev *dev) | ||
209 | { | ||
210 | struct pnp_option *res; | ||
211 | |||
212 | res = dev->dependent; | ||
213 | if (!res) | ||
214 | return; | ||
215 | |||
216 | while (res->next) | ||
217 | res = res->next; | ||
218 | |||
219 | res->next = quirk_isapnp_mpu_options(dev); | ||
220 | } | ||
114 | 221 | ||
115 | #include <linux/pci.h> | 222 | #include <linux/pci.h> |
116 | 223 | ||
@@ -205,6 +312,11 @@ static struct pnp_fixup pnp_fixups[] = { | |||
205 | {"CTL0043", quirk_sb16audio_resources}, | 312 | {"CTL0043", quirk_sb16audio_resources}, |
206 | {"CTL0044", quirk_sb16audio_resources}, | 313 | {"CTL0044", quirk_sb16audio_resources}, |
207 | {"CTL0045", quirk_sb16audio_resources}, | 314 | {"CTL0045", quirk_sb16audio_resources}, |
315 | /* Add IRQ-less MPU options */ | ||
316 | {"ADS7151", quirk_ad1815_mpu_resources}, | ||
317 | {"ADS7181", quirk_isapnp_mpu_resources}, | ||
318 | {"AZT0002", quirk_isapnp_mpu_resources}, | ||
319 | /* PnP resources that might overlap PCI BARs */ | ||
208 | {"PNP0c01", quirk_system_pci_resources}, | 320 | {"PNP0c01", quirk_system_pci_resources}, |
209 | {"PNP0c02", quirk_system_pci_resources}, | 321 | {"PNP0c02", quirk_system_pci_resources}, |
210 | {""} | 322 | {""} |
@@ -212,20 +324,16 @@ static struct pnp_fixup pnp_fixups[] = { | |||
212 | 324 | ||
213 | void pnp_fixup_device(struct pnp_dev *dev) | 325 | void pnp_fixup_device(struct pnp_dev *dev) |
214 | { | 326 | { |
215 | int i = 0; | 327 | struct pnp_fixup *f; |
216 | void (*quirk)(struct pnp_dev *); | ||
217 | |||
218 | while (*pnp_fixups[i].id) { | ||
219 | if (compare_pnp_id(dev->id, pnp_fixups[i].id)) { | ||
220 | quirk = pnp_fixups[i].quirk_function; | ||
221 | 328 | ||
329 | for (f = pnp_fixups; *f->id; f++) { | ||
330 | if (!compare_pnp_id(dev->id, f->id)) | ||
331 | continue; | ||
222 | #ifdef DEBUG | 332 | #ifdef DEBUG |
223 | dev_dbg(&dev->dev, "calling "); | 333 | dev_dbg(&dev->dev, "%s: calling ", f->id); |
224 | print_fn_descriptor_symbol("%s()\n", | 334 | print_fn_descriptor_symbol("%s\n", |
225 | (unsigned long) *quirk); | 335 | (unsigned long) f->quirk_function); |
226 | #endif | 336 | #endif |
227 | (*quirk)(dev); | 337 | f->quirk_function(dev); |
228 | } | ||
229 | i++; | ||
230 | } | 338 | } |
231 | } | 339 | } |
diff --git a/drivers/pnp/resource.c b/drivers/pnp/resource.c index 2041620d5682..390b50096e30 100644 --- a/drivers/pnp/resource.c +++ b/drivers/pnp/resource.c | |||
@@ -28,7 +28,7 @@ static int pnp_reserve_mem[16] = {[0 ... 15] = -1 }; /* reserve (don't use) some | |||
28 | * option registration | 28 | * option registration |
29 | */ | 29 | */ |
30 | 30 | ||
31 | static struct pnp_option *pnp_build_option(int priority) | 31 | struct pnp_option *pnp_build_option(int priority) |
32 | { | 32 | { |
33 | struct pnp_option *option = pnp_alloc(sizeof(struct pnp_option)); | 33 | struct pnp_option *option = pnp_alloc(sizeof(struct pnp_option)); |
34 | 34 | ||
diff --git a/drivers/pnp/support.c b/drivers/pnp/support.c index 3eba85ed729c..95b076c18c07 100644 --- a/drivers/pnp/support.c +++ b/drivers/pnp/support.c | |||
@@ -45,10 +45,10 @@ void pnp_eisa_id_to_string(u32 id, char *str) | |||
45 | str[0] = 'A' + ((id >> 26) & 0x3f) - 1; | 45 | str[0] = 'A' + ((id >> 26) & 0x3f) - 1; |
46 | str[1] = 'A' + ((id >> 21) & 0x1f) - 1; | 46 | str[1] = 'A' + ((id >> 21) & 0x1f) - 1; |
47 | str[2] = 'A' + ((id >> 16) & 0x1f) - 1; | 47 | str[2] = 'A' + ((id >> 16) & 0x1f) - 1; |
48 | str[3] = hex_asc((id >> 12) & 0xf); | 48 | str[3] = hex_asc_hi(id >> 8); |
49 | str[4] = hex_asc((id >> 8) & 0xf); | 49 | str[4] = hex_asc_lo(id >> 8); |
50 | str[5] = hex_asc((id >> 4) & 0xf); | 50 | str[5] = hex_asc_hi(id); |
51 | str[6] = hex_asc((id >> 0) & 0xf); | 51 | str[6] = hex_asc_lo(id); |
52 | str[7] = '\0'; | 52 | str[7] = '\0'; |
53 | } | 53 | } |
54 | 54 | ||
diff --git a/drivers/serial/Kconfig b/drivers/serial/Kconfig index 36acbcca2d48..62e6eb136a3c 100644 --- a/drivers/serial/Kconfig +++ b/drivers/serial/Kconfig | |||
@@ -976,11 +976,15 @@ config SERIAL_68328_RTS_CTS | |||
976 | depends on SERIAL_68328 | 976 | depends on SERIAL_68328 |
977 | 977 | ||
978 | config SERIAL_COLDFIRE | 978 | config SERIAL_COLDFIRE |
979 | bool "ColdFire serial support" | 979 | bool "ColdFire serial support (DEPRECATED)" |
980 | depends on COLDFIRE | 980 | depends on COLDFIRE |
981 | help | 981 | help |
982 | This driver supports the built-in serial ports of the Motorola ColdFire | 982 | This driver supports the built-in serial ports of the Motorola ColdFire |
983 | family of CPUs. | 983 | family of CPUs. |
984 | This driver is deprecated because it supports only the old interface | ||
985 | for serial drivers and features like magic keys are not working. | ||
986 | Please switch to the new style driver because this driver will be | ||
987 | removed soon. | ||
984 | 988 | ||
985 | config SERIAL_MCF | 989 | config SERIAL_MCF |
986 | bool "Coldfire serial support (new style driver)" | 990 | bool "Coldfire serial support (new style driver)" |
diff --git a/drivers/serial/mcfserial.c b/drivers/serial/mcfserial.c index 43af40d59b8a..56007cc8a9b3 100644 --- a/drivers/serial/mcfserial.c +++ b/drivers/serial/mcfserial.c | |||
@@ -1,3 +1,4 @@ | |||
1 | #warning This driver is deprecated. Check Kconfig for details. | ||
1 | /* | 2 | /* |
2 | * mcfserial.c -- serial driver for ColdFire internal UARTS. | 3 | * mcfserial.c -- serial driver for ColdFire internal UARTS. |
3 | * | 4 | * |
diff --git a/drivers/spi/mpc52xx_psc_spi.c b/drivers/spi/mpc52xx_psc_spi.c index 90729469d481..681d62325d3d 100644 --- a/drivers/spi/mpc52xx_psc_spi.c +++ b/drivers/spi/mpc52xx_psc_spi.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * MPC52xx SPC in SPI mode driver. | 2 | * MPC52xx PSC in SPI mode driver. |
3 | * | 3 | * |
4 | * Maintainer: Dragos Carp | 4 | * Maintainer: Dragos Carp |
5 | * | 5 | * |
diff --git a/drivers/video/geode/lxfb_ops.c b/drivers/video/geode/lxfb_ops.c index cd9d4cc26954..aaef9165ec9b 100644 --- a/drivers/video/geode/lxfb_ops.c +++ b/drivers/video/geode/lxfb_ops.c | |||
@@ -63,54 +63,32 @@ static const struct { | |||
63 | { 0x00014284, 19688 }, | 63 | { 0x00014284, 19688 }, |
64 | { 0x00011104, 20400 }, | 64 | { 0x00011104, 20400 }, |
65 | { 0x00016363, 23625 }, | 65 | { 0x00016363, 23625 }, |
66 | { 0x00015303, 24380 }, | ||
67 | { 0x000031AC, 24923 }, | 66 | { 0x000031AC, 24923 }, |
68 | { 0x0000215D, 25175 }, | 67 | { 0x0000215D, 25175 }, |
69 | { 0x00001087, 27000 }, | 68 | { 0x00001087, 27000 }, |
70 | { 0x0000216C, 28322 }, | 69 | { 0x0000216C, 28322 }, |
71 | { 0x0000218D, 28560 }, | 70 | { 0x0000218D, 28560 }, |
72 | { 0x00010041, 29913 }, | ||
73 | { 0x000010C9, 31200 }, | 71 | { 0x000010C9, 31200 }, |
74 | { 0x00003147, 31500 }, | 72 | { 0x00003147, 31500 }, |
75 | { 0x000141A1, 32400 }, | ||
76 | { 0x000010A7, 33032 }, | 73 | { 0x000010A7, 33032 }, |
77 | { 0x00012182, 33375 }, | ||
78 | { 0x000141B1, 33750 }, | ||
79 | { 0x00002159, 35112 }, | 74 | { 0x00002159, 35112 }, |
80 | { 0x00004249, 35500 }, | 75 | { 0x00004249, 35500 }, |
81 | { 0x00000057, 36000 }, | 76 | { 0x00000057, 36000 }, |
82 | { 0x000141E1, 37125 }, | ||
83 | { 0x0000219A, 37889 }, | 77 | { 0x0000219A, 37889 }, |
84 | { 0x00002158, 39168 }, | 78 | { 0x00002158, 39168 }, |
85 | { 0x00000045, 40000 }, | 79 | { 0x00000045, 40000 }, |
86 | { 0x000131A1, 40500 }, | ||
87 | { 0x00010061, 42301 }, | ||
88 | { 0x00000089, 43163 }, | 80 | { 0x00000089, 43163 }, |
89 | { 0x00012151, 43875 }, | ||
90 | { 0x000010E7, 44900 }, | 81 | { 0x000010E7, 44900 }, |
91 | { 0x00002136, 45720 }, | 82 | { 0x00002136, 45720 }, |
92 | { 0x000152E1, 47250 }, | ||
93 | { 0x00010071, 48000 }, | ||
94 | { 0x00003207, 49500 }, | 83 | { 0x00003207, 49500 }, |
95 | { 0x00002187, 50000 }, | 84 | { 0x00002187, 50000 }, |
96 | { 0x00014291, 50625 }, | ||
97 | { 0x00011101, 51188 }, | ||
98 | { 0x00017481, 54563 }, | ||
99 | { 0x00004286, 56250 }, | 85 | { 0x00004286, 56250 }, |
100 | { 0x00014170, 57375 }, | ||
101 | { 0x00016210, 58500 }, | ||
102 | { 0x000010E5, 60065 }, | 86 | { 0x000010E5, 60065 }, |
103 | { 0x00013140, 62796 }, | ||
104 | { 0x00004214, 65000 }, | 87 | { 0x00004214, 65000 }, |
105 | { 0x00016250, 65250 }, | ||
106 | { 0x00001105, 68179 }, | 88 | { 0x00001105, 68179 }, |
107 | { 0x000141C0, 69600 }, | ||
108 | { 0x00015220, 70160 }, | ||
109 | { 0x00010050, 72000 }, | ||
110 | { 0x000031E4, 74250 }, | 89 | { 0x000031E4, 74250 }, |
111 | { 0x00003183, 75000 }, | 90 | { 0x00003183, 75000 }, |
112 | { 0x00004284, 78750 }, | 91 | { 0x00004284, 78750 }, |
113 | { 0x00012130, 80052 }, | ||
114 | { 0x00001104, 81600 }, | 92 | { 0x00001104, 81600 }, |
115 | { 0x00006363, 94500 }, | 93 | { 0x00006363, 94500 }, |
116 | { 0x00005303, 97520 }, | 94 | { 0x00005303, 97520 }, |
diff --git a/drivers/video/logo/Kconfig b/drivers/video/logo/Kconfig index 9de1c114f809..39ac49e0682c 100644 --- a/drivers/video/logo/Kconfig +++ b/drivers/video/logo/Kconfig | |||
@@ -27,6 +27,16 @@ config LOGO_LINUX_CLUT224 | |||
27 | bool "Standard 224-color Linux logo" | 27 | bool "Standard 224-color Linux logo" |
28 | default y | 28 | default y |
29 | 29 | ||
30 | config LOGO_BLACKFIN_VGA16 | ||
31 | bool "16-colour Blackfin Processor Linux logo" | ||
32 | depends on BLACKFIN | ||
33 | default y | ||
34 | |||
35 | config LOGO_BLACKFIN_CLUT224 | ||
36 | bool "224-colour Blackfin Processor Linux logo" | ||
37 | depends on BLACKFIN | ||
38 | default y | ||
39 | |||
30 | config LOGO_DEC_CLUT224 | 40 | config LOGO_DEC_CLUT224 |
31 | bool "224-color Digital Equipment Corporation Linux logo" | 41 | bool "224-color Digital Equipment Corporation Linux logo" |
32 | depends on MACH_DECSTATION || ALPHA | 42 | depends on MACH_DECSTATION || ALPHA |
diff --git a/drivers/video/logo/Makefile b/drivers/video/logo/Makefile index a5fc4edf84e6..b91251d1fe41 100644 --- a/drivers/video/logo/Makefile +++ b/drivers/video/logo/Makefile | |||
@@ -4,6 +4,8 @@ obj-$(CONFIG_LOGO) += logo.o | |||
4 | obj-$(CONFIG_LOGO_LINUX_MONO) += logo_linux_mono.o | 4 | obj-$(CONFIG_LOGO_LINUX_MONO) += logo_linux_mono.o |
5 | obj-$(CONFIG_LOGO_LINUX_VGA16) += logo_linux_vga16.o | 5 | obj-$(CONFIG_LOGO_LINUX_VGA16) += logo_linux_vga16.o |
6 | obj-$(CONFIG_LOGO_LINUX_CLUT224) += logo_linux_clut224.o | 6 | obj-$(CONFIG_LOGO_LINUX_CLUT224) += logo_linux_clut224.o |
7 | obj-$(CONFIG_LOGO_BLACKFIN_CLUT224) += logo_blackfin_clut224.o | ||
8 | obj-$(CONFIG_LOGO_BLACKFIN_VGA16) += logo_blackfin_vga16.o | ||
7 | obj-$(CONFIG_LOGO_DEC_CLUT224) += logo_dec_clut224.o | 9 | obj-$(CONFIG_LOGO_DEC_CLUT224) += logo_dec_clut224.o |
8 | obj-$(CONFIG_LOGO_MAC_CLUT224) += logo_mac_clut224.o | 10 | obj-$(CONFIG_LOGO_MAC_CLUT224) += logo_mac_clut224.o |
9 | obj-$(CONFIG_LOGO_PARISC_CLUT224) += logo_parisc_clut224.o | 11 | obj-$(CONFIG_LOGO_PARISC_CLUT224) += logo_parisc_clut224.o |
diff --git a/drivers/video/logo/logo.c b/drivers/video/logo/logo.c index fc72684aae5a..2e85a2b52d05 100644 --- a/drivers/video/logo/logo.c +++ b/drivers/video/logo/logo.c | |||
@@ -24,6 +24,8 @@ | |||
24 | extern const struct linux_logo logo_linux_mono; | 24 | extern const struct linux_logo logo_linux_mono; |
25 | extern const struct linux_logo logo_linux_vga16; | 25 | extern const struct linux_logo logo_linux_vga16; |
26 | extern const struct linux_logo logo_linux_clut224; | 26 | extern const struct linux_logo logo_linux_clut224; |
27 | extern const struct linux_logo logo_blackfin_vga16; | ||
28 | extern const struct linux_logo logo_blackfin_clut224; | ||
27 | extern const struct linux_logo logo_dec_clut224; | 29 | extern const struct linux_logo logo_dec_clut224; |
28 | extern const struct linux_logo logo_mac_clut224; | 30 | extern const struct linux_logo logo_mac_clut224; |
29 | extern const struct linux_logo logo_parisc_clut224; | 31 | extern const struct linux_logo logo_parisc_clut224; |
@@ -65,6 +67,10 @@ const struct linux_logo * __init_refok fb_find_logo(int depth) | |||
65 | /* Generic Linux logo */ | 67 | /* Generic Linux logo */ |
66 | logo = &logo_linux_vga16; | 68 | logo = &logo_linux_vga16; |
67 | #endif | 69 | #endif |
70 | #ifdef CONFIG_LOGO_BLACKFIN_VGA16 | ||
71 | /* Blackfin processor logo */ | ||
72 | logo = &logo_blackfin_vga16; | ||
73 | #endif | ||
68 | #ifdef CONFIG_LOGO_SUPERH_VGA16 | 74 | #ifdef CONFIG_LOGO_SUPERH_VGA16 |
69 | /* SuperH Linux logo */ | 75 | /* SuperH Linux logo */ |
70 | logo = &logo_superh_vga16; | 76 | logo = &logo_superh_vga16; |
@@ -76,6 +82,10 @@ const struct linux_logo * __init_refok fb_find_logo(int depth) | |||
76 | /* Generic Linux logo */ | 82 | /* Generic Linux logo */ |
77 | logo = &logo_linux_clut224; | 83 | logo = &logo_linux_clut224; |
78 | #endif | 84 | #endif |
85 | #ifdef CONFIG_LOGO_BLACKFIN_CLUT224 | ||
86 | /* Blackfin Linux logo */ | ||
87 | logo = &logo_blackfin_clut224; | ||
88 | #endif | ||
79 | #ifdef CONFIG_LOGO_DEC_CLUT224 | 89 | #ifdef CONFIG_LOGO_DEC_CLUT224 |
80 | /* DEC Linux logo on MIPS/MIPS64 or ALPHA */ | 90 | /* DEC Linux logo on MIPS/MIPS64 or ALPHA */ |
81 | logo = &logo_dec_clut224; | 91 | logo = &logo_dec_clut224; |
diff --git a/drivers/video/logo/logo_blackfin_clut224.ppm b/drivers/video/logo/logo_blackfin_clut224.ppm new file mode 100644 index 000000000000..dc9a50a14477 --- /dev/null +++ b/drivers/video/logo/logo_blackfin_clut224.ppm | |||
@@ -0,0 +1,1127 @@ | |||
1 | P3 | ||
2 | # This was generated by the GIMP & Netpbm tools | ||
3 | # gimp linux_bf.svg (create 80x80 save as linux_bf.ppm) | ||
4 | # pnmquant 224 linux_bf.ppm | pnmnoraw > logo_blackfin_clut224.ppm | ||
5 | # | ||
6 | 80 80 | ||
7 | 255 | ||
8 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
9 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
10 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
11 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
12 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
13 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
14 | 1 1 1 3 3 3 4 6 6 6 6 6 4 6 6 3 3 3 | ||
15 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
16 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
17 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
18 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
19 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
20 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
21 | 0 0 0 0 0 0 | ||
22 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
23 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
24 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
25 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
26 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
27 | 0 0 0 0 0 0 0 0 0 2 2 2 10 10 10 26 26 27 | ||
28 | 44 44 45 66 66 66 78 81 81 78 81 81 75 75 76 60 60 60 | ||
29 | 39 39 39 20 20 20 6 6 6 1 1 1 0 0 0 0 0 0 | ||
30 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
31 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
32 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
33 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
34 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
35 | 0 0 0 0 0 0 | ||
36 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
37 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
38 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
39 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
40 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
41 | 0 0 0 2 2 2 14 14 14 47 47 47 84 84 84 75 75 76 | ||
42 | 47 47 47 12 12 12 0 0 0 0 0 0 0 0 0 20 20 20 | ||
43 | 53 54 54 81 81 82 74 74 74 31 31 31 6 6 6 0 0 0 | ||
44 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
45 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
46 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
47 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
48 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
49 | 0 0 0 0 0 0 | ||
50 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
51 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
52 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
53 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
54 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
55 | 4 4 4 34 34 35 84 84 84 60 60 60 4 4 4 0 0 0 | ||
56 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
57 | 0 0 0 0 0 0 17 18 18 75 75 76 66 66 66 17 18 18 | ||
58 | 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
59 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
60 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
61 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
62 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
63 | 0 0 0 0 0 0 | ||
64 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
65 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
66 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
67 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
68 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 3 3 3 | ||
69 | 42 42 43 84 84 84 8 8 8 0 0 0 0 0 0 0 0 0 | ||
70 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
71 | 0 3 3 36 40 40 10 16 16 0 0 0 31 31 31 84 84 84 | ||
72 | 29 29 30 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 | ||
73 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
74 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
75 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
76 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
77 | 0 0 0 0 0 0 | ||
78 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
79 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
80 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
81 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
82 | 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 26 27 27 | ||
83 | 84 84 84 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 | ||
84 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
85 | 15 19 19 114 115 115 110 114 114 44 46 46 0 0 0 12 12 12 | ||
86 | 90 87 86 24 24 24 1 1 1 0 0 0 0 0 0 0 0 0 | ||
87 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
88 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
89 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
90 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
91 | 0 0 0 0 0 0 | ||
92 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
93 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
94 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
95 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
96 | 0 0 0 0 0 0 0 0 0 0 0 0 8 8 8 75 75 76 | ||
97 | 14 14 14 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
98 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
99 | 30 40 40 133 133 133 129 130 130 78 85 85 23 31 30 0 0 0 | ||
100 | 19 19 19 78 81 81 13 13 13 0 0 0 0 0 0 0 0 0 | ||
101 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
102 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
103 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
104 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
105 | 0 0 0 0 0 0 | ||
106 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
107 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
108 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
109 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
110 | 0 0 0 0 0 0 0 0 0 0 0 0 26 27 27 81 81 82 | ||
111 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
112 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
113 | 36 40 40 89 90 91 55 63 63 23 31 30 4 6 6 0 0 0 | ||
114 | 0 0 0 60 60 60 47 47 47 2 2 2 0 0 0 0 0 0 | ||
115 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
116 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
117 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
118 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
119 | 0 0 0 0 0 0 | ||
120 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
121 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
122 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
123 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
124 | 0 0 0 0 0 0 0 0 0 2 2 2 53 54 54 34 34 35 | ||
125 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
126 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
127 | 4 10 10 7 9 9 0 0 0 0 0 0 0 0 0 0 0 0 | ||
128 | 0 0 0 1 1 1 84 84 84 13 13 13 0 0 0 0 0 0 | ||
129 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
130 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
131 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
132 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
133 | 0 0 0 0 0 0 | ||
134 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
135 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
136 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
137 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
138 | 0 0 0 0 0 0 0 0 0 4 6 6 78 81 81 2 2 2 | ||
139 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
140 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
141 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
142 | 0 0 0 0 0 0 65 64 64 36 36 36 0 0 0 0 0 0 | ||
143 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
144 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
145 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
146 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
147 | 0 0 0 0 0 0 | ||
148 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
149 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
150 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
151 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
152 | 0 0 0 0 0 0 0 0 0 10 11 11 81 81 82 0 0 0 | ||
153 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
154 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
155 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
156 | 0 0 0 0 0 0 12 12 12 67 70 70 4 4 4 0 0 0 | ||
157 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
158 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
159 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
160 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
161 | 0 0 0 0 0 0 | ||
162 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
163 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
164 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
165 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
166 | 0 0 0 0 0 0 0 0 0 16 16 16 81 81 82 0 0 0 | ||
167 | 0 0 0 0 0 0 4 10 10 44 50 50 18 21 21 0 0 0 | ||
168 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
169 | 0 1 1 78 85 85 120 121 122 7 9 9 0 0 0 0 0 0 | ||
170 | 0 0 0 0 0 0 0 0 0 82 82 81 12 12 12 0 0 0 | ||
171 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
172 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
173 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
174 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
175 | 0 0 0 0 0 0 | ||
176 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
177 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
178 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
179 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
180 | 0 0 0 0 0 0 0 0 0 19 19 19 81 81 82 0 0 0 | ||
181 | 0 0 0 2 2 2 8 8 8 55 63 63 108 110 110 52 58 58 | ||
182 | 0 0 0 0 0 0 0 0 0 0 0 0 42 42 43 129 130 130 | ||
183 | 140 142 143 114 115 115 110 114 114 129 130 130 0 0 0 0 0 0 | ||
184 | 0 0 0 0 0 0 0 0 0 75 75 76 24 24 24 0 0 0 | ||
185 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
186 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
187 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
188 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
189 | 0 0 0 0 0 0 | ||
190 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
191 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
192 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
193 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
194 | 0 0 0 0 0 0 0 0 0 19 19 19 74 74 74 0 0 0 | ||
195 | 4 6 6 167 168 167 196 196 197 196 196 197 61 65 66 78 85 85 | ||
196 | 0 0 0 0 0 0 0 0 0 118 118 118 202 202 203 219 219 219 | ||
197 | 219 219 219 214 214 215 187 187 188 78 85 85 29 33 34 0 0 0 | ||
198 | 0 0 0 0 0 0 0 0 0 60 60 60 39 39 39 0 0 0 | ||
199 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
200 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
201 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
202 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
203 | 0 0 0 0 0 0 | ||
204 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
205 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
206 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
207 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
208 | 0 0 0 0 0 0 0 0 0 19 19 19 72 71 71 0 0 0 | ||
209 | 185 185 184 244 245 245 250 251 252 251 251 252 247 248 249 36 36 36 | ||
210 | 0 0 0 0 0 0 13 13 13 243 243 241 252 252 252 253 253 253 | ||
211 | 253 253 253 252 252 252 247 247 246 193 193 194 0 0 0 0 0 0 | ||
212 | 0 0 0 0 0 0 0 0 0 42 42 43 50 51 51 1 1 1 | ||
213 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
214 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
215 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
216 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
217 | 0 0 0 0 0 0 | ||
218 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
219 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
220 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
221 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
222 | 0 0 0 0 0 0 0 0 0 19 19 19 78 81 81 0 0 0 | ||
223 | 247 247 246 193 193 194 95 97 97 193 193 194 255 255 255 237 237 238 | ||
224 | 0 0 0 0 0 0 202 202 203 255 255 255 247 247 246 108 107 107 | ||
225 | 82 85 86 167 168 167 255 255 255 248 248 249 0 0 0 0 0 0 | ||
226 | 0 0 0 0 0 0 0 0 0 34 34 35 56 56 56 2 2 2 | ||
227 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
228 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
229 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
230 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
231 | 0 0 0 0 0 0 | ||
232 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
233 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
234 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
235 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
236 | 0 0 0 0 0 0 0 0 0 19 19 19 78 81 81 0 0 0 | ||
237 | 250 250 251 50 51 51 153 154 155 150 151 151 244 245 245 244 245 245 | ||
238 | 44 50 50 84 89 89 153 154 155 255 255 255 140 142 143 0 0 0 | ||
239 | 149 149 150 156 155 156 237 237 238 254 254 254 67 70 70 0 0 0 | ||
240 | 0 0 0 0 0 0 0 0 0 39 39 39 47 47 47 1 1 1 | ||
241 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
242 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
243 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
244 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
245 | 0 0 0 0 0 0 | ||
246 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
247 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
248 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
249 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
250 | 0 0 0 0 0 0 0 0 0 19 19 19 81 81 82 0 0 0 | ||
251 | 248 248 249 34 34 35 72 71 71 165 165 165 202 202 203 244 245 245 | ||
252 | 10 16 16 82 85 86 89 90 91 255 255 255 95 97 97 0 0 0 | ||
253 | 0 0 0 53 54 54 177 177 174 255 255 255 127 127 126 0 0 0 | ||
254 | 0 0 0 0 0 0 0 0 0 39 39 39 36 36 36 0 0 0 | ||
255 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
256 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
257 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
258 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
259 | 0 0 0 0 0 0 | ||
260 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
261 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
262 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
263 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
264 | 0 0 0 0 0 0 0 0 0 14 14 14 78 81 81 0 0 0 | ||
265 | 243 243 243 89 90 91 0 0 0 36 40 40 201 147 55 241 205 27 | ||
266 | 241 205 27 241 205 27 241 205 27 238 192 33 108 110 110 0 0 0 | ||
267 | 0 0 0 0 0 0 191 190 190 254 254 254 34 34 35 0 0 0 | ||
268 | 0 0 0 0 0 0 0 0 0 42 42 43 42 42 43 0 0 0 | ||
269 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
270 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
271 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
272 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
273 | 0 0 0 0 0 0 | ||
274 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
275 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
276 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
277 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
278 | 0 0 0 0 0 0 0 0 0 10 10 10 75 75 76 0 0 0 | ||
279 | 202 202 203 218 217 217 21 19 17 230 165 41 199 129 48 213 157 40 | ||
280 | 244 212 23 243 206 27 180 121 62 243 206 27 244 209 25 226 179 40 | ||
281 | 15 10 7 103 103 103 254 254 254 251 251 252 0 0 0 0 0 0 | ||
282 | 0 0 0 0 0 0 0 0 0 17 18 18 58 58 58 2 2 2 | ||
283 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
284 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
285 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
286 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
287 | 0 0 0 0 0 0 | ||
288 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
289 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
290 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
291 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
292 | 0 0 0 0 0 0 0 0 0 9 9 9 84 84 84 0 0 0 | ||
293 | 0 0 0 226 226 219 213 157 40 244 209 25 245 211 23 245 211 23 | ||
294 | 245 214 38 245 214 38 245 211 23 245 211 23 245 211 23 244 212 23 | ||
295 | 244 212 23 241 205 27 226 179 40 196 196 197 0 0 0 0 0 0 | ||
296 | 0 0 0 0 0 0 0 0 0 0 0 0 74 74 74 4 6 6 | ||
297 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
298 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
299 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
300 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
301 | 0 0 0 0 0 0 | ||
302 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
303 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
304 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
305 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
306 | 0 0 0 0 0 0 0 0 0 7 7 7 84 84 84 0 0 0 | ||
307 | 54 42 32 213 157 40 243 206 27 245 211 23 245 211 23 245 211 23 | ||
308 | 245 215 41 245 214 35 245 211 23 245 211 23 245 214 35 245 215 41 | ||
309 | 245 214 35 245 211 23 245 211 23 238 204 29 0 0 0 0 0 0 | ||
310 | 0 0 0 0 0 0 0 0 0 0 0 0 81 81 82 12 12 12 | ||
311 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
312 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
313 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
314 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
315 | 0 0 0 0 0 0 | ||
316 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
317 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
318 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
319 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
320 | 0 0 0 0 0 0 0 0 0 4 6 6 74 74 74 0 0 0 | ||
321 | 201 147 55 241 205 27 245 211 23 245 211 23 245 211 23 245 213 29 | ||
322 | 245 214 38 245 211 23 245 211 23 245 214 35 245 215 41 245 215 41 | ||
323 | 245 213 29 142 83 36 142 83 36 244 209 25 1 1 1 0 0 0 | ||
324 | 0 0 0 0 0 0 0 0 0 0 0 0 74 74 74 25 25 26 | ||
325 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
326 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
327 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
328 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
329 | 0 0 0 0 0 0 | ||
330 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
331 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
332 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
333 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
334 | 0 0 0 0 0 0 0 0 0 4 4 4 72 71 71 6 6 6 | ||
335 | 213 157 40 244 209 25 245 211 23 245 211 23 245 211 23 245 213 29 | ||
336 | 244 212 23 245 211 23 245 214 35 245 215 41 245 215 41 245 213 29 | ||
337 | 142 83 36 142 83 36 238 192 33 241 205 27 0 0 0 0 0 0 | ||
338 | 0 0 0 0 0 0 0 0 0 0 0 0 44 44 44 49 50 50 | ||
339 | 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
340 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
341 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
342 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
343 | 0 0 0 0 0 0 | ||
344 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
345 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
346 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
347 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
348 | 0 0 0 0 0 0 0 0 0 3 3 3 65 64 64 17 18 18 | ||
349 | 199 129 48 199 129 48 245 211 23 245 211 23 245 211 23 245 211 23 | ||
350 | 245 211 23 244 212 23 245 214 38 245 214 38 142 83 36 142 83 36 | ||
351 | 142 83 36 245 211 23 244 210 23 230 165 41 0 0 0 0 0 0 | ||
352 | 78 81 81 114 115 115 73 79 79 0 0 0 3 3 3 81 81 82 | ||
353 | 9 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
354 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
355 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
356 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
357 | 0 0 0 0 0 0 | ||
358 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
359 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
360 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
361 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
362 | 0 0 0 0 0 0 0 0 0 1 1 1 49 50 50 29 29 30 | ||
363 | 90 87 86 199 129 48 173 101 51 173 101 51 245 211 23 245 211 23 | ||
364 | 245 211 23 230 165 41 142 83 36 142 83 36 142 83 36 245 211 23 | ||
365 | 244 210 23 241 205 27 230 165 41 175 173 165 3 3 3 0 0 0 | ||
366 | 44 46 46 118 118 118 118 118 118 108 110 110 0 0 0 75 75 76 | ||
367 | 28 28 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
368 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
369 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
370 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
371 | 0 0 0 0 0 0 | ||
372 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
373 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
374 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
375 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
376 | 0 0 0 0 0 0 0 0 0 1 1 1 52 53 53 26 26 27 | ||
377 | 118 118 118 175 173 165 199 129 48 173 101 51 173 101 51 173 101 51 | ||
378 | 173 101 51 142 83 36 173 101 51 245 211 23 244 209 25 238 204 29 | ||
379 | 213 157 40 214 196 166 227 227 227 214 214 215 120 121 122 0 0 0 | ||
380 | 0 0 0 108 110 110 118 118 118 118 118 118 0 0 0 23 23 23 | ||
381 | 66 66 66 4 6 6 0 0 0 0 0 0 0 0 0 0 0 0 | ||
382 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
383 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
384 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
385 | 0 0 0 0 0 0 | ||
386 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
387 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
388 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
389 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
390 | 0 0 0 0 0 0 0 0 0 7 7 7 75 75 76 4 4 4 | ||
391 | 127 127 126 205 205 205 181 181 181 199 129 48 226 179 40 244 209 25 | ||
392 | 244 209 25 244 209 25 243 206 27 238 192 33 213 157 40 187 166 103 | ||
393 | 234 234 234 248 248 249 251 252 252 248 248 249 214 214 215 0 0 0 | ||
394 | 0 0 0 0 0 0 103 103 103 100 103 103 0 0 0 0 0 0 | ||
395 | 78 81 81 24 24 24 0 0 0 0 0 0 0 0 0 0 0 0 | ||
396 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
397 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
398 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
399 | 0 0 0 0 0 0 | ||
400 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
401 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
402 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
403 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
404 | 0 0 0 0 0 0 0 0 0 26 27 27 82 82 81 0 0 0 | ||
405 | 146 146 147 234 234 234 222 221 221 178 178 179 180 121 62 213 157 40 | ||
406 | 213 157 40 213 157 40 201 147 55 180 121 62 219 219 219 243 243 241 | ||
407 | 253 253 253 255 255 255 255 255 255 255 255 255 250 250 251 120 121 122 | ||
408 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
409 | 20 20 20 72 71 71 8 8 8 0 0 0 0 0 0 0 0 0 | ||
410 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
411 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
412 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
413 | 0 0 0 0 0 0 | ||
414 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
415 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
416 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
417 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
418 | 0 0 0 0 0 0 10 10 10 75 75 76 22 22 22 0 0 0 | ||
419 | 205 205 205 253 253 253 247 248 249 212 211 212 178 178 179 161 161 162 | ||
420 | 165 165 165 181 181 181 205 205 205 227 227 227 244 245 245 254 254 254 | ||
421 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 239 239 240 | ||
422 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
423 | 0 0 0 67 70 70 39 39 39 2 2 2 0 0 0 0 0 0 | ||
424 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
425 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
426 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
427 | 0 0 0 0 0 0 | ||
428 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
429 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
430 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
431 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
432 | 0 0 0 4 4 4 50 51 51 60 60 60 0 0 0 16 16 16 | ||
433 | 249 250 251 255 255 255 255 255 255 240 240 240 209 210 210 193 193 194 | ||
434 | 200 200 197 212 211 212 231 231 231 246 247 248 255 255 255 255 255 255 | ||
435 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 253 253 253 | ||
436 | 153 154 155 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
437 | 0 0 0 3 3 3 84 84 84 20 20 20 0 0 0 0 0 0 | ||
438 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
439 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
440 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
441 | 0 0 0 0 0 0 | ||
442 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
443 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
444 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
445 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
446 | 2 2 2 33 33 34 81 81 82 0 0 0 0 0 0 231 231 231 | ||
447 | 255 255 255 255 255 255 255 255 255 253 253 253 234 234 234 222 221 221 | ||
448 | 227 227 227 237 237 238 250 250 251 255 255 255 255 255 255 255 255 255 | ||
449 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
450 | 240 240 240 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
451 | 0 0 0 0 0 0 26 27 27 72 71 71 8 8 8 0 0 0 | ||
452 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
453 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
454 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
455 | 0 0 0 0 0 0 | ||
456 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
457 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
458 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
459 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 | ||
460 | 21 21 22 84 84 84 7 7 7 0 0 0 150 151 151 252 252 252 | ||
461 | 255 255 255 255 255 255 255 255 255 255 255 255 252 252 252 244 245 245 | ||
462 | 246 247 248 253 253 253 255 255 255 255 255 255 255 255 255 255 255 255 | ||
463 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
464 | 251 251 252 9 9 9 0 0 0 0 0 0 0 0 0 0 0 0 | ||
465 | 0 0 0 0 0 0 0 0 0 65 64 64 47 47 47 3 3 3 | ||
466 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
467 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
468 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
469 | 0 0 0 0 0 0 | ||
470 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
471 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
472 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
473 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 12 12 12 | ||
474 | 75 75 76 26 26 27 0 0 0 1 1 1 239 239 240 255 255 255 | ||
475 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
476 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
477 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
478 | 255 255 255 202 202 203 0 0 0 0 0 0 0 0 0 0 0 0 | ||
479 | 0 0 0 0 0 0 0 0 0 0 0 0 84 84 84 28 28 29 | ||
480 | 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
481 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
482 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
483 | 0 0 0 0 0 0 | ||
484 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
485 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
486 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
487 | 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 55 55 55 | ||
488 | 60 60 60 0 0 0 0 0 0 95 97 97 248 248 249 255 255 255 | ||
489 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
490 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
491 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
492 | 255 255 255 244 245 245 0 0 0 0 0 0 0 0 0 0 0 0 | ||
493 | 0 0 0 0 0 0 0 0 0 0 0 0 14 14 14 82 82 81 | ||
494 | 15 15 15 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
495 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
496 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
497 | 0 0 0 0 0 0 | ||
498 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
499 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
500 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
501 | 0 0 0 0 0 0 0 0 0 1 1 1 29 29 30 84 84 84 | ||
502 | 0 0 0 0 0 0 0 0 0 156 155 156 247 247 246 255 255 255 | ||
503 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
504 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
505 | 255 255 255 255 255 255 247 247 246 240 240 240 232 232 233 232 232 233 | ||
506 | 243 243 243 253 253 253 53 54 54 0 0 0 0 0 0 0 0 0 | ||
507 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 44 44 44 | ||
508 | 60 60 60 6 6 6 0 0 0 0 0 0 0 0 0 0 0 0 | ||
509 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
510 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
511 | 0 0 0 0 0 0 | ||
512 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
513 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
514 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
515 | 0 0 0 0 0 0 0 0 0 10 10 10 81 81 82 14 14 14 | ||
516 | 0 0 0 0 0 0 6 6 6 150 151 151 214 214 215 250 251 252 | ||
517 | 255 255 255 255 255 255 255 255 255 246 247 248 218 217 217 214 214 215 | ||
518 | 218 217 217 244 245 245 255 255 255 255 255 255 255 255 255 250 248 249 | ||
519 | 232 232 233 214 214 215 196 196 197 182 183 184 181 181 181 181 181 181 | ||
520 | 187 187 188 240 240 240 232 232 233 0 0 0 0 0 0 0 0 0 | ||
521 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
522 | 78 81 81 34 34 35 1 1 1 0 0 0 0 0 0 0 0 0 | ||
523 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
524 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
525 | 0 0 0 0 0 0 | ||
526 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
527 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
528 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
529 | 0 0 0 0 0 0 1 1 1 39 39 39 74 74 74 0 0 0 | ||
530 | 0 0 0 0 0 0 60 60 60 161 161 162 200 200 197 229 229 230 | ||
531 | 251 251 252 255 255 255 255 255 255 255 255 255 243 243 241 214 214 215 | ||
532 | 248 248 249 255 255 255 255 255 255 255 255 255 255 255 255 254 254 254 | ||
533 | 239 239 240 214 214 215 193 193 194 182 183 184 178 178 179 176 177 177 | ||
534 | 176 177 177 182 183 184 248 248 249 14 14 14 0 0 0 61 65 66 | ||
535 | 10 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
536 | 10 10 10 84 84 84 13 13 13 0 0 0 0 0 0 0 0 0 | ||
537 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
538 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
539 | 0 0 0 0 0 0 | ||
540 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
541 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
542 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
543 | 0 0 0 0 0 0 10 11 11 82 82 81 7 7 7 0 0 0 | ||
544 | 0 0 0 0 0 0 165 165 165 229 229 230 249 250 251 254 254 254 | ||
545 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
546 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
547 | 255 255 255 255 255 255 253 253 253 240 240 240 227 227 227 205 205 205 | ||
548 | 181 181 181 176 177 177 191 190 190 227 227 227 0 0 0 44 50 50 | ||
549 | 84 89 89 61 65 66 0 0 0 0 0 0 0 0 0 0 0 0 | ||
550 | 0 0 0 58 58 58 49 50 50 3 3 3 0 0 0 0 0 0 | ||
551 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
552 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
553 | 0 0 0 0 0 0 | ||
554 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
555 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
556 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
557 | 0 0 0 1 1 1 36 36 36 66 66 66 0 0 0 29 33 34 | ||
558 | 0 3 3 26 27 27 234 234 234 254 254 254 255 255 255 255 255 255 | ||
559 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
560 | 254 254 254 253 253 254 252 253 253 253 253 254 253 254 254 253 254 254 | ||
561 | 254 254 254 255 255 255 255 255 255 255 255 255 255 255 255 251 251 252 | ||
562 | 227 227 227 187 187 188 176 177 177 222 221 221 13 13 13 0 0 0 | ||
563 | 12 15 14 73 79 79 36 40 40 0 0 0 0 0 0 0 0 0 | ||
564 | 0 0 0 1 1 1 90 87 86 17 18 18 0 0 0 0 0 0 | ||
565 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
566 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
567 | 0 0 0 0 0 0 | ||
568 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
569 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
570 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
571 | 0 0 0 7 7 7 78 81 81 12 12 12 23 31 30 52 58 58 | ||
572 | 0 0 0 209 210 210 253 253 253 255 255 255 255 255 255 255 255 255 | ||
573 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 254 254 254 | ||
574 | 251 251 252 150 151 151 103 103 103 129 130 130 196 196 197 250 250 251 | ||
575 | 252 252 253 254 254 254 255 255 255 255 255 255 255 255 255 255 255 255 | ||
576 | 255 255 255 240 240 240 193 193 194 196 196 197 229 229 230 0 0 0 | ||
577 | 0 0 0 4 10 10 30 40 40 0 3 3 0 0 0 0 0 0 | ||
578 | 0 0 0 0 0 0 47 47 47 53 54 54 3 3 3 0 0 0 | ||
579 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
580 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
581 | 0 0 0 0 0 0 | ||
582 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
583 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
584 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
585 | 0 0 0 23 23 23 81 81 82 0 0 0 52 58 58 36 40 40 | ||
586 | 42 42 43 250 250 251 255 255 255 255 255 255 255 255 255 255 255 255 | ||
587 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 254 254 254 | ||
588 | 227 227 227 7 7 7 7 7 7 7 7 7 7 7 7 44 44 45 | ||
589 | 156 155 156 249 250 251 253 253 253 254 254 254 255 255 255 255 255 255 | ||
590 | 255 255 255 255 255 255 247 247 246 222 221 221 239 239 240 0 0 0 | ||
591 | 30 40 40 44 50 50 23 31 30 29 33 34 0 0 0 0 0 0 | ||
592 | 0 0 0 0 0 0 0 0 0 90 87 86 16 16 16 0 0 0 | ||
593 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
594 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
595 | 0 0 0 0 0 0 | ||
596 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
597 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
598 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
599 | 2 2 2 50 51 51 42 42 43 29 33 34 52 58 58 0 0 0 | ||
600 | 232 232 233 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
601 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 254 254 254 | ||
602 | 250 251 252 44 44 44 7 7 7 7 7 7 7 7 7 7 7 7 | ||
603 | 7 7 7 56 56 56 209 210 210 252 252 253 254 254 254 255 255 255 | ||
604 | 255 255 255 255 255 255 255 255 255 254 253 253 249 250 251 146 146 147 | ||
605 | 36 40 40 44 50 50 36 40 40 67 70 70 61 65 66 0 0 0 | ||
606 | 0 0 0 0 0 0 0 0 0 55 55 55 44 44 45 1 1 1 | ||
607 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
608 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
609 | 0 0 0 0 0 0 | ||
610 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
611 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
612 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
613 | 10 10 10 81 81 82 1 1 1 52 58 58 44 50 50 52 53 53 | ||
614 | 251 251 252 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
615 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 254 254 254 | ||
616 | 253 253 253 187 187 188 8 8 8 7 7 7 7 7 7 7 7 7 | ||
617 | 7 7 7 7 7 7 19 19 19 178 178 179 252 252 253 254 254 254 | ||
618 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 237 237 238 | ||
619 | 10 16 16 30 40 40 0 3 3 23 31 30 84 89 89 0 0 0 | ||
620 | 0 0 0 0 0 0 0 0 0 3 3 3 81 81 82 9 9 9 | ||
621 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
622 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
623 | 0 0 0 0 0 0 | ||
624 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
625 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
626 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
627 | 29 29 30 72 71 71 10 16 16 52 58 58 0 0 0 222 221 221 | ||
628 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
629 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
630 | 254 254 254 251 251 252 95 97 97 7 7 7 7 7 7 7 7 7 | ||
631 | 7 7 7 7 7 7 7 7 7 10 10 10 161 161 162 251 252 252 | ||
632 | 254 254 254 255 255 255 255 255 255 255 255 255 255 255 255 248 248 249 | ||
633 | 0 0 0 0 0 0 0 0 0 0 0 0 84 89 89 0 3 3 | ||
634 | 0 0 0 0 0 0 0 0 0 0 0 0 74 74 74 26 27 27 | ||
635 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
636 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
637 | 0 0 0 0 0 0 | ||
638 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
639 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
640 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 4 4 4 | ||
641 | 65 64 64 20 20 20 20 25 25 30 40 40 0 0 0 247 247 246 | ||
642 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
643 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
644 | 255 255 255 253 253 254 222 221 221 9 9 9 7 7 7 7 7 7 | ||
645 | 7 7 7 7 7 7 7 7 7 7 7 7 8 8 8 149 149 150 | ||
646 | 252 252 253 254 254 254 255 255 255 255 255 255 255 255 255 252 252 252 | ||
647 | 0 0 0 0 0 0 0 0 0 0 0 0 73 79 79 12 15 14 | ||
648 | 0 0 0 0 0 0 0 0 0 0 0 0 36 36 36 58 58 58 | ||
649 | 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
650 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
651 | 0 0 0 0 0 0 | ||
652 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
653 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
654 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 20 20 20 | ||
655 | 74 74 74 0 0 0 4 10 10 4 10 10 36 36 36 252 252 252 | ||
656 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
657 | 255 255 255 255 255 255 255 255 255 227 227 227 253 253 253 255 255 255 | ||
658 | 255 255 255 254 254 254 250 251 252 65 64 64 7 7 7 7 7 7 | ||
659 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 8 8 8 | ||
660 | 146 146 147 251 252 252 254 254 254 255 255 255 255 255 255 253 254 254 | ||
661 | 0 0 0 0 0 0 0 0 0 0 0 0 52 58 58 10 16 16 | ||
662 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 82 82 81 | ||
663 | 9 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
664 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
665 | 0 0 0 0 0 0 | ||
666 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
667 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
668 | 0 0 0 0 0 0 0 0 0 0 0 0 4 6 6 65 64 64 | ||
669 | 25 25 25 0 3 3 30 40 40 0 0 0 187 187 188 254 254 254 | ||
670 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
671 | 255 255 255 255 255 255 255 255 255 193 193 194 253 252 252 255 255 255 | ||
672 | 255 255 255 255 255 255 252 253 253 129 130 130 7 7 7 7 7 7 | ||
673 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
674 | 8 8 8 149 149 150 252 252 253 254 254 254 255 255 255 254 254 254 | ||
675 | 52 53 53 0 0 0 0 0 0 0 0 0 20 25 25 2 5 4 | ||
676 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 81 81 82 | ||
677 | 20 20 20 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
678 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
679 | 0 0 0 0 0 0 | ||
680 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
681 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
682 | 0 0 0 0 0 0 0 0 0 0 0 0 26 26 27 81 81 82 | ||
683 | 0 0 0 18 21 21 73 79 79 0 0 0 237 237 238 255 255 255 | ||
684 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
685 | 255 255 255 255 255 255 255 255 255 182 183 184 255 255 255 255 255 255 | ||
686 | 255 255 255 255 255 255 253 253 253 176 177 177 7 7 7 7 7 7 | ||
687 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
688 | 7 7 7 8 8 8 153 154 155 251 252 252 254 254 254 255 255 255 | ||
689 | 150 151 151 0 0 0 0 0 0 0 0 0 20 25 25 0 0 0 | ||
690 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 65 64 64 | ||
691 | 33 33 34 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
692 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
693 | 0 0 0 0 0 0 | ||
694 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
695 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
696 | 0 0 0 0 0 0 0 0 0 6 6 6 67 70 70 20 20 20 | ||
697 | 0 0 0 23 31 30 82 85 86 0 0 0 247 247 246 255 255 255 | ||
698 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
699 | 255 255 255 255 255 255 255 255 255 182 183 184 255 255 255 255 255 255 | ||
700 | 255 255 255 255 255 255 253 254 254 214 214 215 7 7 7 7 7 7 | ||
701 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
702 | 7 7 7 7 7 7 8 8 8 156 155 156 252 252 253 254 254 254 | ||
703 | 167 168 167 0 0 0 0 0 0 0 0 0 67 70 70 0 0 0 | ||
704 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 47 47 47 | ||
705 | 44 44 44 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
706 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
707 | 0 0 0 0 0 0 | ||
708 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
709 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
710 | 0 0 0 0 0 0 0 0 0 21 21 22 75 75 76 0 0 0 | ||
711 | 0 0 0 29 33 34 84 89 89 0 0 0 248 248 249 255 255 255 | ||
712 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
713 | 255 255 255 255 255 255 248 248 249 181 181 181 255 255 255 255 255 255 | ||
714 | 255 255 255 255 255 255 254 254 254 240 240 240 7 7 7 7 7 7 | ||
715 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
716 | 7 7 7 7 7 7 7 7 7 8 8 8 161 161 162 251 252 252 | ||
717 | 185 185 184 4 4 4 0 0 0 10 11 11 100 103 103 0 0 0 | ||
718 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 36 36 | ||
719 | 55 55 55 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 | ||
720 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
721 | 0 0 0 0 0 0 | ||
722 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
723 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
724 | 0 0 0 0 0 0 0 0 0 33 33 34 50 51 51 0 0 0 | ||
725 | 0 0 0 9 11 11 82 85 86 10 16 16 248 248 249 255 255 255 | ||
726 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
727 | 255 255 255 255 255 255 245 244 245 179 180 181 255 255 255 255 255 255 | ||
728 | 255 255 255 255 255 255 254 254 254 251 252 252 20 20 20 7 7 7 | ||
729 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
730 | 7 7 7 7 7 7 7 7 7 7 7 7 10 10 10 161 161 162 | ||
731 | 205 205 205 17 18 18 0 0 0 95 97 97 78 81 81 0 0 0 | ||
732 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 36 36 36 | ||
733 | 53 54 54 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 | ||
734 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
735 | 0 0 0 0 0 0 | ||
736 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
737 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
738 | 0 0 0 0 0 0 0 0 0 31 31 31 58 58 58 0 0 0 | ||
739 | 0 0 0 0 0 0 67 70 70 78 81 81 248 248 249 255 255 255 | ||
740 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
741 | 255 255 255 255 255 255 234 234 234 179 180 181 255 255 255 255 255 255 | ||
742 | 255 255 255 255 255 255 254 254 254 251 252 252 23 23 23 7 7 7 | ||
743 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
744 | 10 11 11 84 84 84 161 161 162 209 210 210 229 229 230 237 237 238 | ||
745 | 202 202 203 26 26 27 9 11 11 44 50 50 0 0 0 4 6 6 | ||
746 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 52 53 53 | ||
747 | 39 39 39 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
748 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
749 | 0 0 0 0 0 0 | ||
750 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
751 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
752 | 0 0 0 0 0 0 0 0 0 23 23 23 78 81 81 213 157 40 | ||
753 | 243 206 27 243 206 27 54 42 32 73 79 79 222 221 221 255 255 255 | ||
754 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
755 | 255 255 255 255 255 255 238 238 236 178 178 179 255 255 255 255 255 255 | ||
756 | 255 255 255 255 255 255 254 254 254 251 252 253 36 36 36 7 7 7 | ||
757 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 84 84 84 | ||
758 | 222 221 221 251 252 252 252 253 253 253 253 253 253 254 254 252 252 253 | ||
759 | 146 146 147 140 142 143 156 155 156 110 114 114 26 27 27 82 85 86 | ||
760 | 84 89 89 95 97 97 36 40 40 0 0 0 0 0 0 74 74 74 | ||
761 | 23 23 23 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
762 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
763 | 0 0 0 0 0 0 | ||
764 | 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 14 14 14 | ||
765 | 24 24 24 26 26 27 26 26 27 26 26 27 25 25 26 21 21 22 | ||
766 | 7 7 7 0 0 0 1 1 1 34 34 35 238 192 33 244 210 23 | ||
767 | 244 212 23 244 212 23 244 210 23 88 79 47 200 200 197 254 254 254 | ||
768 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
769 | 255 255 255 255 255 255 244 245 245 179 180 181 255 255 255 255 255 255 | ||
770 | 255 255 255 255 255 255 254 254 254 252 252 253 36 36 36 7 7 7 | ||
771 | 7 7 7 7 7 7 7 7 7 8 8 8 149 149 150 251 251 252 | ||
772 | 252 252 253 253 253 253 253 253 253 250 248 249 239 223 156 239 223 156 | ||
773 | 120 121 122 182 183 184 176 177 177 120 121 122 33 33 34 3 3 3 | ||
774 | 0 0 0 67 70 70 146 146 147 20 25 25 1 1 1 82 82 81 | ||
775 | 9 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
776 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
777 | 0 0 0 0 0 0 | ||
778 | 0 0 0 0 0 0 0 0 0 0 0 0 19 19 19 89 90 91 | ||
779 | 146 146 147 150 151 151 150 151 151 150 151 151 150 151 151 129 130 130 | ||
780 | 58 58 58 6 6 6 14 14 14 201 147 55 245 211 23 245 213 29 | ||
781 | 245 214 35 245 215 41 245 213 29 244 210 23 142 83 36 232 232 233 | ||
782 | 254 254 254 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
783 | 255 255 255 255 255 255 255 255 255 185 185 184 255 255 255 255 255 255 | ||
784 | 255 255 255 255 255 255 254 254 254 251 252 252 50 51 51 7 7 7 | ||
785 | 7 7 7 7 7 7 7 7 7 146 146 147 251 252 252 252 253 253 | ||
786 | 251 252 253 239 239 240 171 168 154 129 130 130 137 136 134 175 173 165 | ||
787 | 221 218 200 65 64 64 22 22 22 186 186 187 114 115 115 26 26 27 | ||
788 | 2 2 2 0 0 0 61 65 66 31 33 27 238 192 33 108 96 91 | ||
789 | 9 9 9 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
790 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
791 | 0 0 0 0 0 0 | ||
792 | 0 0 0 0 0 0 0 0 0 2 2 2 52 53 53 178 178 179 | ||
793 | 21 21 22 7 7 7 7 7 7 7 7 7 7 7 7 118 118 118 | ||
794 | 137 136 134 36 36 36 65 64 64 243 206 27 244 212 23 245 215 41 | ||
795 | 245 215 41 245 215 41 245 215 41 244 209 25 244 209 25 1 1 1 | ||
796 | 219 219 219 253 253 253 255 255 255 255 255 255 255 255 255 255 255 255 | ||
797 | 255 255 255 255 255 255 255 255 255 214 214 215 255 255 255 255 255 255 | ||
798 | 255 255 255 255 255 255 254 254 254 252 252 253 50 51 51 7 7 7 | ||
799 | 7 7 7 7 7 7 84 84 84 250 251 252 252 253 253 251 251 252 | ||
800 | 167 168 167 22 22 22 7 7 7 7 7 7 7 7 7 7 7 7 | ||
801 | 7 7 7 7 7 7 7 7 7 34 34 35 187 187 188 103 103 103 | ||
802 | 29 29 30 3 3 3 7 9 9 238 204 29 245 215 41 245 214 35 | ||
803 | 28 28 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
804 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
805 | 0 0 0 0 0 0 | ||
806 | 0 0 0 0 0 0 0 0 0 7 7 7 90 87 86 178 178 179 | ||
807 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 16 16 16 | ||
808 | 193 193 194 133 133 133 187 166 103 245 218 76 245 218 76 245 216 51 | ||
809 | 245 216 51 245 218 76 246 224 96 245 218 76 245 218 76 245 218 76 | ||
810 | 25 25 25 186 186 187 252 252 252 254 254 254 254 254 254 253 254 254 | ||
811 | 254 254 254 254 254 254 254 254 254 246 247 248 254 254 254 253 254 254 | ||
812 | 254 254 254 254 254 254 253 254 254 251 252 252 36 36 36 7 7 7 | ||
813 | 7 7 7 20 20 20 229 229 230 253 253 253 252 253 253 178 178 179 | ||
814 | 10 10 10 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
815 | 7 7 7 7 7 7 7 7 7 7 7 7 42 42 43 196 196 197 | ||
816 | 118 118 118 33 33 34 238 204 29 245 215 41 245 215 41 245 215 41 | ||
817 | 49 50 50 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 | ||
818 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
819 | 0 0 0 0 0 0 | ||
820 | 0 0 0 0 0 0 0 0 0 17 18 18 120 121 122 137 136 134 | ||
821 | 7 7 7 7 7 7 34 34 35 20 20 20 7 7 7 7 7 7 | ||
822 | 202 202 203 209 206 202 193 187 162 193 187 162 248 234 156 245 218 76 | ||
823 | 245 218 76 248 234 156 193 187 162 193 187 162 193 187 162 214 196 166 | ||
824 | 240 219 129 95 97 97 196 196 197 186 186 187 187 187 188 196 196 197 | ||
825 | 252 252 253 251 252 253 212 211 212 187 187 188 196 196 197 251 252 252 | ||
826 | 218 217 217 187 187 188 191 190 190 250 251 252 24 24 24 7 7 7 | ||
827 | 7 7 7 110 114 114 252 252 253 253 254 254 250 251 252 89 90 91 | ||
828 | 89 90 91 129 130 130 127 127 126 44 44 44 7 7 7 7 7 7 | ||
829 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 49 50 50 | ||
830 | 202 202 203 214 196 166 245 216 51 245 214 38 245 214 35 245 214 38 | ||
831 | 58 58 58 2 2 2 0 0 0 0 0 0 0 0 0 0 0 0 | ||
832 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
833 | 0 0 0 0 0 0 | ||
834 | 0 0 0 0 0 0 0 0 0 31 31 31 156 155 156 82 82 81 | ||
835 | 7 7 7 10 10 10 237 237 238 66 66 66 7 7 7 25 25 25 | ||
836 | 247 248 249 81 81 82 7 7 7 31 31 31 247 237 174 245 218 76 | ||
837 | 246 226 108 200 200 197 7 7 7 7 7 7 7 7 7 137 136 134 | ||
838 | 247 237 174 193 193 194 72 71 71 7 7 7 7 7 7 8 8 8 | ||
839 | 196 196 197 250 251 252 67 70 70 7 7 7 84 84 84 244 245 245 | ||
840 | 47 47 47 7 7 7 118 118 118 249 250 251 12 12 12 7 7 7 | ||
841 | 9 9 9 218 217 217 253 253 253 254 254 254 252 253 253 251 251 252 | ||
842 | 249 250 251 237 237 238 95 97 97 9 9 9 15 15 15 95 97 97 | ||
843 | 47 47 47 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
844 | 66 66 66 240 230 197 246 226 108 245 214 38 245 211 23 244 212 23 | ||
845 | 65 64 64 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 | ||
846 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
847 | 0 0 0 0 0 0 | ||
848 | 0 0 0 0 0 0 2 2 2 52 53 53 185 185 184 25 25 25 | ||
849 | 7 7 7 60 60 60 240 240 240 14 14 14 7 7 7 84 84 84 | ||
850 | 247 248 249 23 23 23 7 7 7 94 91 88 248 234 156 245 218 76 | ||
851 | 248 234 156 127 127 126 7 7 7 7 7 7 7 7 7 167 168 167 | ||
852 | 251 248 240 65 64 64 7 7 7 7 7 7 7 7 7 7 7 7 | ||
853 | 84 84 84 243 243 243 15 15 15 7 7 7 140 142 143 146 146 147 | ||
854 | 7 7 7 33 33 34 237 237 238 243 243 243 21 21 22 120 121 122 | ||
855 | 218 217 217 252 252 253 254 254 254 253 253 254 252 253 253 251 252 252 | ||
856 | 247 248 249 72 71 71 7 7 7 58 58 58 222 221 221 248 248 249 | ||
857 | 75 75 76 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
858 | 7 7 7 82 82 81 246 239 193 246 226 108 245 216 51 245 214 38 | ||
859 | 238 192 33 21 21 22 1 1 1 0 0 0 0 0 0 0 0 0 | ||
860 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
861 | 0 0 0 0 0 0 | ||
862 | 0 0 0 0 0 0 8 8 8 90 87 86 182 183 184 7 7 7 | ||
863 | 7 7 7 120 121 122 187 187 188 7 7 7 7 7 7 146 146 147 | ||
864 | 205 205 205 7 7 7 7 7 7 153 153 148 240 219 129 246 224 96 | ||
865 | 246 239 193 39 39 39 60 60 60 108 110 110 7 7 7 202 202 203 | ||
866 | 227 227 227 7 7 7 7 7 7 205 205 205 89 90 91 7 7 7 | ||
867 | 120 121 122 193 193 194 7 7 7 7 7 7 186 186 187 25 25 25 | ||
868 | 7 7 7 167 168 167 251 251 252 243 243 243 214 214 215 250 251 252 | ||
869 | 251 252 253 254 254 254 253 253 253 219 219 219 140 140 139 140 140 139 | ||
870 | 118 118 118 7 7 7 52 53 53 237 237 238 247 247 246 176 177 177 | ||
871 | 8 8 8 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
872 | 7 7 7 7 7 7 95 97 97 246 239 193 246 226 108 245 216 51 | ||
873 | 245 214 38 201 147 55 31 31 31 103 103 103 103 103 103 72 71 71 | ||
874 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
875 | 0 0 0 0 0 0 | ||
876 | 0 0 0 0 0 0 17 18 18 127 127 126 140 140 139 7 7 7 | ||
877 | 7 7 7 17 18 18 17 18 18 7 7 7 95 97 97 244 245 245 | ||
878 | 146 146 147 7 7 7 7 7 7 200 200 197 246 226 108 240 219 129 | ||
879 | 194 194 184 7 7 7 140 140 139 89 90 91 7 7 7 232 232 233 | ||
880 | 165 165 165 7 7 7 31 31 31 249 250 251 39 39 39 7 7 7 | ||
881 | 176 177 177 133 133 133 7 7 7 22 22 22 108 110 110 7 7 7 | ||
882 | 72 71 71 251 252 252 252 253 253 250 251 252 247 248 249 205 205 205 | ||
883 | 251 252 253 254 254 254 252 252 253 84 84 84 7 7 7 7 7 7 | ||
884 | 7 7 7 7 7 7 140 142 143 247 248 249 140 140 139 14 14 14 | ||
885 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 16 16 16 | ||
886 | 14 14 14 7 7 7 7 7 7 114 115 115 246 239 193 246 224 96 | ||
887 | 245 216 51 245 216 51 243 235 220 176 177 177 185 185 184 229 229 230 | ||
888 | 47 47 47 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
889 | 0 0 0 0 0 0 | ||
890 | 0 0 0 0 0 0 31 31 31 156 155 156 90 87 86 7 7 7 | ||
891 | 7 7 7 7 7 7 7 7 7 31 31 31 243 243 241 247 247 246 | ||
892 | 84 84 84 7 7 7 26 27 27 246 239 193 246 226 108 248 234 156 | ||
893 | 108 110 110 7 7 7 212 211 212 44 44 44 22 22 22 249 250 251 | ||
894 | 108 107 107 7 7 7 89 90 91 238 238 236 114 115 115 118 118 118 | ||
895 | 231 231 231 75 75 76 7 7 7 34 34 35 10 11 11 12 12 12 | ||
896 | 214 214 215 253 253 253 253 253 253 200 200 197 31 31 31 103 103 103 | ||
897 | 252 252 253 252 253 253 218 217 217 9 9 9 7 7 7 7 7 7 | ||
898 | 7 7 7 7 7 7 25 25 25 39 39 39 7 7 7 7 7 7 | ||
899 | 7 7 7 7 7 7 7 7 7 7 7 7 103 103 103 234 234 234 | ||
900 | 181 181 181 7 7 7 7 7 7 7 7 7 133 133 133 247 237 174 | ||
901 | 246 224 96 246 226 108 185 185 184 177 177 174 153 154 155 181 181 181 | ||
902 | 140 140 139 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
903 | 0 0 0 0 0 0 | ||
904 | 0 0 0 1 1 1 49 50 50 186 186 187 28 28 28 7 7 7 | ||
905 | 12 12 12 22 22 22 7 7 7 7 7 7 108 107 107 247 247 246 | ||
906 | 25 25 25 7 7 7 90 87 86 247 237 174 246 226 108 246 239 193 | ||
907 | 28 28 28 44 44 44 237 237 238 9 9 9 53 54 54 249 250 251 | ||
908 | 49 50 50 7 7 7 153 153 148 249 241 199 214 196 166 185 185 184 | ||
909 | 229 229 230 19 19 19 7 7 7 7 7 7 7 7 7 103 103 103 | ||
910 | 251 252 253 254 254 254 253 253 253 150 151 151 7 7 7 187 187 188 | ||
911 | 252 252 253 251 251 252 103 103 103 7 7 7 7 7 7 7 7 7 | ||
912 | 7 7 7 23 23 23 17 18 18 7 7 7 7 7 7 7 7 7 | ||
913 | 7 7 7 7 7 7 12 12 12 153 153 148 246 239 193 249 241 199 | ||
914 | 161 161 162 9 9 9 84 84 84 108 110 110 25 25 25 153 153 148 | ||
915 | 247 237 174 246 224 96 218 217 217 165 165 165 182 183 184 193 193 194 | ||
916 | 114 115 115 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
917 | 0 0 0 0 0 0 | ||
918 | 0 0 0 4 4 4 74 74 74 181 181 181 7 7 7 7 7 7 | ||
919 | 110 114 114 200 200 197 7 7 7 7 7 7 60 60 60 209 210 210 | ||
920 | 7 7 7 7 7 7 146 146 147 248 234 156 248 234 156 177 177 174 | ||
921 | 7 7 7 118 118 118 193 193 194 7 7 7 84 84 84 232 232 233 | ||
922 | 8 8 8 7 7 7 209 210 210 221 218 200 193 187 162 219 219 219 | ||
923 | 200 200 197 7 7 7 7 7 7 7 7 7 7 7 7 95 97 97 | ||
924 | 251 252 252 254 254 254 252 253 253 118 118 118 29 29 30 247 248 249 | ||
925 | 252 252 253 227 227 227 16 16 16 7 7 7 7 7 7 7 7 7 | ||
926 | 100 103 103 218 217 217 219 218 214 7 7 7 7 7 7 7 7 7 | ||
927 | 7 7 7 21 21 22 185 185 184 246 239 193 248 234 156 240 230 197 | ||
928 | 60 60 60 194 194 184 246 239 193 249 241 199 137 136 134 10 10 10 | ||
929 | 171 168 154 248 234 156 248 234 156 226 226 219 209 210 210 249 241 199 | ||
930 | 28 28 28 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
931 | 0 0 0 0 0 0 | ||
932 | 0 0 0 13 13 13 108 110 110 146 146 147 7 7 7 7 7 7 | ||
933 | 167 168 167 140 140 139 7 7 7 7 7 7 120 121 122 146 146 147 | ||
934 | 7 7 7 7 7 7 194 194 184 240 219 129 247 237 174 95 97 97 | ||
935 | 7 7 7 95 97 97 90 87 86 7 7 7 118 118 118 176 177 177 | ||
936 | 7 7 7 28 28 28 248 248 249 44 44 45 7 7 7 167 168 167 | ||
937 | 140 140 139 7 7 7 36 36 36 74 74 74 7 7 7 65 64 64 | ||
938 | 251 252 253 254 254 254 251 252 252 81 81 82 108 110 110 251 252 252 | ||
939 | 251 251 252 127 127 126 7 7 7 7 7 7 8 8 8 140 140 139 | ||
940 | 181 181 181 140 140 139 221 218 200 7 7 7 7 7 7 7 7 7 | ||
941 | 34 34 35 209 210 210 231 231 231 246 239 193 247 237 174 194 194 184 | ||
942 | 227 227 227 249 241 199 240 219 129 248 234 156 153 153 148 7 7 7 | ||
943 | 13 13 13 185 185 184 248 234 156 245 218 76 245 216 51 245 214 38 | ||
944 | 31 31 31 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
945 | 0 0 0 0 0 0 | ||
946 | 0 0 0 31 31 31 153 154 155 89 90 91 7 7 7 8 8 8 | ||
947 | 232 232 233 82 82 81 7 7 7 7 7 7 179 180 181 89 90 91 | ||
948 | 7 7 7 24 24 24 243 235 220 248 234 156 240 230 197 20 20 20 | ||
949 | 7 7 7 7 7 7 7 7 7 7 7 7 149 149 150 118 118 118 | ||
950 | 7 7 7 90 87 86 229 229 230 7 7 7 7 7 7 229 229 230 | ||
951 | 82 82 81 7 7 7 95 97 97 100 103 103 7 7 7 34 34 35 | ||
952 | 251 252 252 253 253 254 251 251 252 47 47 47 193 193 194 251 252 252 | ||
953 | 239 239 240 23 23 23 7 7 7 13 13 13 165 165 165 234 234 234 | ||
954 | 149 149 150 146 114 101 200 200 197 7 7 7 7 7 7 52 53 53 | ||
955 | 227 227 227 167 168 167 16 16 16 214 196 166 248 234 156 243 235 220 | ||
956 | 219 219 219 156 155 156 247 237 174 246 239 193 75 75 76 7 7 7 | ||
957 | 60 60 60 227 227 227 243 235 220 240 219 129 245 218 76 245 213 29 | ||
958 | 16 16 16 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
959 | 0 0 0 0 0 0 | ||
960 | 1 1 1 49 50 50 185 185 184 33 33 34 7 7 7 10 11 11 | ||
961 | 56 56 56 16 16 16 7 7 7 10 10 10 237 237 238 26 27 27 | ||
962 | 7 7 7 55 55 55 185 185 184 221 218 200 167 168 167 7 7 7 | ||
963 | 20 20 20 39 39 39 10 11 11 7 7 7 181 181 181 58 58 58 | ||
964 | 7 7 7 103 103 103 133 133 133 7 7 7 44 44 44 247 248 249 | ||
965 | 24 24 24 7 7 7 156 155 156 129 130 130 7 7 7 9 9 9 | ||
966 | 244 245 245 252 253 253 237 237 238 34 34 35 248 248 249 251 251 252 | ||
967 | 161 161 162 7 7 7 24 24 24 187 187 188 212 211 212 67 70 70 | ||
968 | 187 187 188 173 170 143 209 206 202 10 10 10 95 97 97 237 237 238 | ||
969 | 129 130 130 8 8 8 89 90 91 246 239 193 247 237 174 177 177 174 | ||
970 | 17 18 18 137 136 134 249 241 199 219 218 214 10 10 10 95 97 97 | ||
971 | 243 243 243 150 151 151 31 31 31 221 218 200 240 219 129 53 54 54 | ||
972 | 3 3 3 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
973 | 0 0 0 0 0 0 | ||
974 | 4 4 4 72 71 71 182 183 184 7 7 7 7 7 7 7 7 7 | ||
975 | 7 7 7 7 7 7 12 12 12 161 161 162 209 210 210 7 7 7 | ||
976 | 7 7 7 7 7 7 7 7 7 187 187 188 82 82 81 7 7 7 | ||
977 | 146 146 147 247 248 249 17 18 18 7 7 7 212 211 212 47 47 47 | ||
978 | 7 7 7 7 7 7 7 7 7 8 8 8 146 146 147 205 205 205 | ||
979 | 7 7 7 7 7 7 214 214 215 156 155 156 7 7 7 7 7 7 | ||
980 | 218 217 217 251 252 252 186 186 187 110 114 114 249 250 251 248 248 249 | ||
981 | 75 75 76 34 34 35 205 205 205 129 130 130 16 16 16 7 7 7 | ||
982 | 156 155 156 214 196 166 240 230 197 243 243 241 227 227 227 74 74 74 | ||
983 | 7 7 7 29 29 30 226 226 219 249 241 199 175 173 165 14 14 14 | ||
984 | 9 9 9 221 218 200 246 239 193 153 153 148 146 146 147 246 247 248 | ||
985 | 110 114 114 7 7 7 7 7 7 42 42 43 193 193 194 95 97 97 | ||
986 | 19 19 19 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 | ||
987 | 0 0 0 0 0 0 | ||
988 | 6 6 6 84 84 84 140 142 143 7 7 7 7 7 7 7 7 7 | ||
989 | 7 7 7 20 20 20 177 177 174 249 241 199 149 149 150 7 7 7 | ||
990 | 7 7 7 7 7 7 10 11 11 226 226 219 13 13 13 8 8 8 | ||
991 | 219 218 214 219 218 214 7 7 7 8 8 8 238 238 236 200 200 197 | ||
992 | 13 13 13 7 7 7 13 13 13 161 161 162 243 235 220 146 146 147 | ||
993 | 7 7 7 29 29 30 232 232 233 176 177 177 7 7 7 7 7 7 | ||
994 | 182 183 184 237 237 238 129 130 130 167 168 167 176 177 177 202 202 203 | ||
995 | 10 11 11 95 97 97 44 44 45 7 7 7 7 7 7 7 7 7 | ||
996 | 75 75 76 226 226 219 243 235 220 156 155 156 24 24 24 7 7 7 | ||
997 | 7 7 7 176 177 177 247 247 246 200 200 197 17 18 18 7 7 7 | ||
998 | 49 50 50 246 239 193 248 234 156 251 248 240 239 239 240 84 84 84 | ||
999 | 7 7 7 7 7 7 7 7 7 7 7 7 60 60 60 187 187 188 | ||
1000 | 84 84 84 14 14 14 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1001 | 0 0 0 0 0 0 | ||
1002 | 4 4 4 53 54 54 137 136 134 156 155 156 161 161 162 161 161 162 | ||
1003 | 167 168 167 239 223 156 240 219 129 246 226 108 239 223 156 239 223 156 | ||
1004 | 239 223 156 239 223 156 214 196 166 239 223 156 193 187 162 193 187 162 | ||
1005 | 248 234 156 239 223 156 193 187 162 193 187 162 248 234 156 248 234 156 | ||
1006 | 214 196 166 193 187 162 214 196 166 248 234 156 240 219 129 214 196 166 | ||
1007 | 193 187 162 193 187 162 171 168 154 146 146 147 137 136 134 137 136 134 | ||
1008 | 161 161 162 209 210 210 65 64 64 202 202 203 179 180 181 140 140 139 | ||
1009 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1010 | 7 7 7 60 60 60 39 39 39 7 7 7 7 7 7 7 7 7 | ||
1011 | 66 66 66 249 250 251 202 202 203 16 16 16 7 7 7 7 7 7 | ||
1012 | 23 23 23 243 235 220 246 239 193 226 226 219 52 53 53 7 7 7 | ||
1013 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 75 75 76 | ||
1014 | 176 177 177 66 66 66 9 9 9 0 0 0 0 0 0 0 0 0 | ||
1015 | 0 0 0 0 0 0 | ||
1016 | 0 0 0 10 10 10 28 28 29 34 34 35 36 36 36 36 36 36 | ||
1017 | 44 44 45 146 114 101 241 207 50 241 207 50 241 207 50 241 211 63 | ||
1018 | 241 211 63 241 211 63 241 211 63 241 211 63 241 211 63 245 216 51 | ||
1019 | 245 216 51 245 216 51 241 211 63 241 211 63 245 216 51 241 211 63 | ||
1020 | 245 218 76 245 218 76 245 216 51 245 215 41 245 214 38 241 207 50 | ||
1021 | 241 211 63 201 147 55 88 79 47 29 29 30 34 34 35 42 42 43 | ||
1022 | 103 103 103 191 190 190 75 75 76 196 196 197 200 200 197 65 64 64 | ||
1023 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1024 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1025 | 90 87 86 146 146 147 19 19 19 7 7 7 7 7 7 7 7 7 | ||
1026 | 7 7 7 90 87 86 140 140 139 31 31 31 7 7 7 7 7 7 | ||
1027 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1028 | 103 103 103 161 161 162 53 54 54 7 7 7 0 0 0 0 0 0 | ||
1029 | 0 0 0 0 0 0 | ||
1030 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1031 | 0 0 0 12 12 12 50 51 51 146 114 101 180 121 62 199 129 48 | ||
1032 | 201 147 55 213 157 40 213 157 40 230 165 41 226 179 40 226 179 40 | ||
1033 | 238 192 33 241 205 27 244 209 25 244 210 23 244 212 23 245 211 23 | ||
1034 | 245 211 23 245 211 23 245 211 23 244 209 25 238 204 29 226 179 40 | ||
1035 | 213 157 40 199 129 48 54 42 32 0 0 0 4 6 6 44 44 45 | ||
1036 | 150 151 151 129 130 130 137 136 134 205 205 205 202 202 203 8 8 8 | ||
1037 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1038 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1039 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1040 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1041 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1042 | 7 7 7 129 130 130 146 146 147 47 47 47 4 4 4 0 0 0 | ||
1043 | 0 0 0 0 0 0 | ||
1044 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1045 | 0 0 0 0 0 0 2 2 2 12 12 12 28 28 29 49 50 50 | ||
1046 | 74 74 74 108 96 91 180 121 62 180 121 62 199 129 48 201 147 55 | ||
1047 | 213 157 40 230 165 41 226 179 40 238 192 33 241 205 27 241 205 27 | ||
1048 | 243 206 27 243 206 27 241 205 27 238 204 29 226 179 40 213 157 40 | ||
1049 | 199 129 48 199 129 48 21 19 17 65 64 64 103 103 103 167 168 167 | ||
1050 | 202 202 203 24 24 24 193 193 194 229 229 230 140 140 139 7 7 7 | ||
1051 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1052 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1053 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1054 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1055 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1056 | 7 7 7 8 8 8 156 155 156 133 133 133 36 36 36 3 3 3 | ||
1057 | 0 0 0 0 0 0 | ||
1058 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1059 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 | ||
1060 | 4 4 4 10 11 11 21 21 22 39 39 39 60 60 60 108 96 91 | ||
1061 | 180 121 62 199 129 48 199 129 48 213 157 40 230 165 41 226 179 40 | ||
1062 | 226 179 40 226 179 40 226 179 40 226 179 40 213 157 40 199 129 48 | ||
1063 | 180 121 62 99 91 79 72 71 71 56 56 56 129 130 130 167 168 167 | ||
1064 | 21 21 22 17 18 18 231 231 231 229 229 230 52 53 53 7 7 7 | ||
1065 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1066 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1067 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1068 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1069 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1070 | 7 7 7 7 7 7 13 13 13 176 177 177 120 121 122 33 33 34 | ||
1071 | 2 2 2 0 0 0 | ||
1072 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1073 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1074 | 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 8 8 8 | ||
1075 | 21 21 22 47 47 47 99 91 79 180 121 62 199 129 48 199 129 48 | ||
1076 | 201 147 55 213 157 40 213 157 40 201 147 55 199 129 48 180 121 62 | ||
1077 | 99 91 79 26 26 27 9 9 9 60 60 60 186 186 187 31 31 31 | ||
1078 | 7 7 7 60 60 60 243 243 243 209 210 210 7 7 7 7 7 7 | ||
1079 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1080 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1081 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1082 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1083 | 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 | ||
1084 | 7 7 7 7 7 7 7 7 7 26 27 27 193 193 194 108 110 110 | ||
1085 | 22 22 22 0 0 0 | ||
1086 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1087 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1088 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1089 | 0 0 0 1 1 1 8 8 8 24 24 24 58 58 58 108 96 91 | ||
1090 | 180 121 62 180 121 62 180 121 62 180 121 62 180 121 62 72 71 71 | ||
1091 | 15 15 15 0 0 0 4 6 6 75 75 76 156 155 156 24 24 24 | ||
1092 | 24 24 24 108 107 107 232 232 233 137 136 134 24 24 24 24 24 24 | ||
1093 | 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 | ||
1094 | 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 | ||
1095 | 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 | ||
1096 | 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 | ||
1097 | 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 | ||
1098 | 24 24 24 24 24 24 24 24 24 24 24 24 58 58 58 176 177 177 | ||
1099 | 60 60 60 3 3 3 | ||
1100 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1101 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1102 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1103 | 0 0 0 0 0 0 0 0 0 0 0 0 2 2 2 12 12 12 | ||
1104 | 26 27 27 44 44 44 55 55 55 50 51 51 29 29 30 8 8 8 | ||
1105 | 0 0 0 0 0 0 3 3 3 47 47 47 127 127 126 150 151 151 | ||
1106 | 150 151 151 140 142 143 129 130 130 140 142 143 150 151 151 150 151 151 | ||
1107 | 150 151 151 150 151 151 150 151 151 150 151 151 150 151 151 150 151 151 | ||
1108 | 150 151 151 150 151 151 153 154 155 161 161 162 165 165 165 167 168 167 | ||
1109 | 177 177 174 167 168 167 161 161 162 156 155 156 150 151 151 150 151 151 | ||
1110 | 150 151 151 150 151 151 150 151 151 150 151 151 150 151 151 150 151 151 | ||
1111 | 150 151 151 150 151 151 150 151 151 150 151 151 150 151 151 150 151 151 | ||
1112 | 150 151 151 150 151 151 150 151 151 150 151 151 149 149 150 127 127 126 | ||
1113 | 44 44 45 2 2 2 | ||
1114 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1115 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1116 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1117 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1118 | 0 0 0 0 0 0 2 2 2 1 1 1 0 0 0 0 0 0 | ||
1119 | 0 0 0 0 0 0 0 0 0 7 7 7 21 21 22 25 25 26 | ||
1120 | 25 25 26 24 24 24 20 20 20 23 23 24 25 25 26 26 26 27 | ||
1121 | 26 26 27 26 26 27 26 26 27 26 26 27 26 26 27 26 26 27 | ||
1122 | 26 26 27 26 26 27 26 26 27 26 26 27 26 26 27 26 27 27 | ||
1123 | 28 28 29 26 27 27 26 26 27 26 26 27 26 26 27 26 26 27 | ||
1124 | 26 26 27 26 26 27 26 26 27 26 26 27 26 26 27 26 26 27 | ||
1125 | 26 26 27 26 26 27 26 26 27 26 26 27 26 26 27 26 26 27 | ||
1126 | 26 26 27 26 26 27 26 26 27 26 26 27 25 25 26 21 21 22 | ||
1127 | 7 7 7 0 0 0 | ||
diff --git a/drivers/video/logo/logo_blackfin_vga16.ppm b/drivers/video/logo/logo_blackfin_vga16.ppm new file mode 100644 index 000000000000..1352b02a9d93 --- /dev/null +++ b/drivers/video/logo/logo_blackfin_vga16.ppm | |||
@@ -0,0 +1,1127 @@ | |||
1 | P3 | ||
2 | # This was generated by the GIMP & Netpbm tools | ||
3 | # gimp linux_bf.svg (create 80x80 save as linux_bf.ppm) | ||
4 | # ppmquant -mapfile clut_vga16.ppm linux_bf.ppm | pnmnoraw > logo_blackfin_vga16.ppm | ||
5 | # | ||
6 | 80 80 | ||
7 | 255 | ||
8 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
9 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
10 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
11 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
12 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
13 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
14 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
15 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
16 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
17 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
18 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
19 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
20 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
21 | 0 0 0 0 0 0 | ||
22 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
23 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
24 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
25 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
26 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
27 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
28 | 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 85 | ||
29 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
30 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
31 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
32 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
33 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
34 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
35 | 0 0 0 0 0 0 | ||
36 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
37 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
38 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
39 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
40 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
41 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | ||
42 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
43 | 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
44 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
45 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
46 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
47 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
48 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
49 | 0 0 0 0 0 0 | ||
50 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
51 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
52 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
53 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
54 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
55 | 0 0 0 0 0 0 85 85 85 85 85 85 0 0 0 0 0 0 | ||
56 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
57 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 0 0 0 | ||
58 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
59 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
60 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
61 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
62 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
63 | 0 0 0 0 0 0 | ||
64 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
65 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
66 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
67 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
68 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
69 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
70 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
71 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
72 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
73 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
74 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
75 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
76 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
77 | 0 0 0 0 0 0 | ||
78 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
79 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
80 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
81 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
82 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
83 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
84 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
85 | 0 0 0 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 | ||
86 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
87 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
88 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
89 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
90 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
91 | 0 0 0 0 0 0 | ||
92 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
93 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
94 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
95 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
96 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
97 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
98 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
99 | 0 0 0 170 170 170 170 170 170 85 85 85 0 0 0 0 0 0 | ||
100 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
101 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
102 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
103 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
104 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
105 | 0 0 0 0 0 0 | ||
106 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
107 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
108 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
109 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
110 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
111 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
112 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
113 | 0 0 0 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
114 | 0 0 0 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
115 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
116 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
117 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
118 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
119 | 0 0 0 0 0 0 | ||
120 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
121 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
122 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
123 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
124 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
125 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
126 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
127 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
128 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
129 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
130 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
131 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
132 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
133 | 0 0 0 0 0 0 | ||
134 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
135 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
136 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
137 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
138 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
139 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
140 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
141 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
142 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
143 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
144 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
145 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
146 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
147 | 0 0 0 0 0 0 | ||
148 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
149 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
150 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
151 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
152 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
153 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
154 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
155 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
156 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
157 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
158 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
159 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
160 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
161 | 0 0 0 0 0 0 | ||
162 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
163 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
164 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
165 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
166 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
167 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
168 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
169 | 0 0 0 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
170 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
171 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
172 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
173 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
174 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
175 | 0 0 0 0 0 0 | ||
176 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
177 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
178 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
179 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
180 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
181 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 85 85 85 | ||
182 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 | ||
183 | 170 170 170 85 85 85 85 85 85 170 170 170 0 0 0 0 0 0 | ||
184 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
185 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
186 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
187 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
188 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
189 | 0 0 0 0 0 0 | ||
190 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
191 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
192 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
193 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
194 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
195 | 0 0 0 170 170 170 170 170 170 170 170 170 85 85 85 85 85 85 | ||
196 | 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 255 255 255 | ||
197 | 255 255 255 255 255 255 170 170 170 85 85 85 0 0 0 0 0 0 | ||
198 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
199 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
200 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
201 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
202 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
203 | 0 0 0 0 0 0 | ||
204 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
205 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
206 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
207 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
208 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
209 | 170 170 170 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 | ||
210 | 0 0 0 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 | ||
211 | 255 255 255 255 255 255 255 255 255 170 170 170 0 0 0 0 0 0 | ||
212 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
213 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
214 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
215 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
216 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
217 | 0 0 0 0 0 0 | ||
218 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
219 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
220 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
221 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
222 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
223 | 255 255 255 170 170 170 85 85 85 170 170 170 255 255 255 255 255 255 | ||
224 | 0 0 0 0 0 0 170 170 170 255 255 255 255 255 255 85 85 85 | ||
225 | 85 85 85 170 170 170 255 255 255 255 255 255 0 0 0 0 0 0 | ||
226 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
227 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
228 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
229 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
230 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
231 | 0 0 0 0 0 0 | ||
232 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
233 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
234 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
235 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
236 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
237 | 255 255 255 85 85 85 170 170 170 170 170 170 255 255 255 255 255 255 | ||
238 | 85 85 85 85 85 85 170 170 170 255 255 255 170 170 170 0 0 0 | ||
239 | 170 170 170 170 170 170 255 255 255 255 255 255 85 85 85 0 0 0 | ||
240 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
241 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
242 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
243 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
244 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
245 | 0 0 0 0 0 0 | ||
246 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
247 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
248 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
249 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
250 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
251 | 255 255 255 0 0 0 85 85 85 170 170 170 170 170 170 255 255 255 | ||
252 | 0 0 0 85 85 85 85 85 85 255 255 255 85 85 85 0 0 0 | ||
253 | 0 0 0 85 85 85 170 170 170 255 255 255 85 85 85 0 0 0 | ||
254 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
255 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
256 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
257 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
258 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
259 | 0 0 0 0 0 0 | ||
260 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
261 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
262 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
263 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
264 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
265 | 255 255 255 85 85 85 0 0 0 0 0 0 255 85 85 255 255 85 | ||
266 | 255 255 85 255 255 85 255 255 85 255 255 85 85 85 85 0 0 0 | ||
267 | 0 0 0 0 0 0 170 170 170 255 255 255 0 0 0 0 0 0 | ||
268 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
269 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
270 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
271 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
272 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
273 | 0 0 0 0 0 0 | ||
274 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
275 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
276 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
277 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
278 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
279 | 170 170 170 255 255 255 0 0 0 255 85 85 170 85 0 170 85 0 | ||
280 | 255 255 85 255 255 85 170 85 0 255 255 85 255 255 85 255 255 85 | ||
281 | 0 0 0 85 85 85 255 255 255 255 255 255 0 0 0 0 0 0 | ||
282 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
283 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
284 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
285 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
286 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
287 | 0 0 0 0 0 0 | ||
288 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
289 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
290 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
291 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
292 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
293 | 0 0 0 255 255 255 255 85 85 255 255 85 255 255 85 255 255 85 | ||
294 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
295 | 255 255 85 255 255 85 255 255 85 170 170 170 0 0 0 0 0 0 | ||
296 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
297 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
298 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
299 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
300 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
301 | 0 0 0 0 0 0 | ||
302 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
303 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
304 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
305 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
306 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
307 | 0 0 0 255 85 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
308 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
309 | 255 255 85 255 255 85 255 255 85 255 255 85 0 0 0 0 0 0 | ||
310 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
311 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
312 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
313 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
314 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
315 | 0 0 0 0 0 0 | ||
316 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
317 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
318 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
319 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
320 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
321 | 170 85 0 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
322 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
323 | 255 255 85 170 85 0 85 85 85 255 255 85 0 0 0 0 0 0 | ||
324 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
325 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
326 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
327 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
328 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
329 | 0 0 0 0 0 0 | ||
330 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
331 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
332 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
333 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
334 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
335 | 255 85 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
336 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
337 | 170 85 0 85 85 85 255 255 85 255 255 85 0 0 0 0 0 0 | ||
338 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | ||
339 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
340 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
341 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
342 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
343 | 0 0 0 0 0 0 | ||
344 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
345 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
346 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
347 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
348 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
349 | 170 85 0 170 85 0 255 255 85 255 255 85 255 255 85 255 255 85 | ||
350 | 255 255 85 255 255 85 255 255 85 255 255 85 170 85 0 170 85 0 | ||
351 | 170 85 0 255 255 85 255 255 85 255 85 85 0 0 0 0 0 0 | ||
352 | 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 85 85 85 | ||
353 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
354 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
355 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
356 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
357 | 0 0 0 0 0 0 | ||
358 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
359 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
360 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
361 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
362 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
363 | 85 85 85 170 85 0 170 85 0 170 85 0 255 255 85 255 255 85 | ||
364 | 255 255 85 255 85 85 170 85 0 170 85 0 170 85 0 255 255 85 | ||
365 | 255 255 85 255 255 85 255 85 85 170 170 170 0 0 0 0 0 0 | ||
366 | 85 85 85 85 85 85 85 85 85 85 85 85 0 0 0 85 85 85 | ||
367 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
368 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
369 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
370 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
371 | 0 0 0 0 0 0 | ||
372 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
373 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
374 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
375 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
376 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
377 | 85 85 85 170 170 170 170 85 0 170 85 0 170 85 0 170 85 0 | ||
378 | 170 85 0 170 85 0 170 85 0 255 255 85 255 255 85 255 255 85 | ||
379 | 255 85 85 170 170 170 255 255 255 255 255 255 85 85 85 0 0 0 | ||
380 | 0 0 0 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 | ||
381 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
382 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
383 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
384 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
385 | 0 0 0 0 0 0 | ||
386 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
387 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
388 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
389 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
390 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
391 | 170 170 170 170 170 170 170 170 170 170 85 0 255 255 85 255 255 85 | ||
392 | 255 255 85 255 255 85 255 255 85 255 255 85 255 85 85 170 170 170 | ||
393 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 | ||
394 | 0 0 0 0 0 0 85 85 85 85 85 85 0 0 0 0 0 0 | ||
395 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
396 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
397 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
398 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
399 | 0 0 0 0 0 0 | ||
400 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
401 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
402 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
403 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
404 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
405 | 170 170 170 255 255 255 255 255 255 170 170 170 170 85 0 255 85 85 | ||
406 | 255 85 85 255 85 85 255 85 85 255 85 85 255 255 255 255 255 255 | ||
407 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 85 85 85 | ||
408 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
409 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
410 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
411 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
412 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
413 | 0 0 0 0 0 0 | ||
414 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
415 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
416 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
417 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
418 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
419 | 170 170 170 255 255 255 255 255 255 170 170 170 170 170 170 170 170 170 | ||
420 | 170 170 170 170 170 170 170 170 170 255 255 255 255 255 255 255 255 255 | ||
421 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
422 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
423 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
424 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
425 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
426 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
427 | 0 0 0 0 0 0 | ||
428 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
429 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
430 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
431 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
432 | 0 0 0 0 0 0 85 85 85 85 85 85 0 0 0 0 0 0 | ||
433 | 255 255 255 255 255 255 255 255 255 255 255 255 170 170 170 170 170 170 | ||
434 | 170 170 170 170 170 170 255 255 255 255 255 255 255 255 255 255 255 255 | ||
435 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
436 | 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
437 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
438 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
439 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
440 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
441 | 0 0 0 0 0 0 | ||
442 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
443 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
444 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
445 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
446 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 255 255 255 | ||
447 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
448 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
449 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
450 | 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
451 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
452 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
453 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
454 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
455 | 0 0 0 0 0 0 | ||
456 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
457 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
458 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
459 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
460 | 0 0 0 85 85 85 0 0 0 0 0 0 170 170 170 255 255 255 | ||
461 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
462 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
463 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
464 | 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
465 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 0 0 0 | ||
466 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
467 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
468 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
469 | 0 0 0 0 0 0 | ||
470 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
471 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
472 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
473 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
474 | 85 85 85 0 0 0 0 0 0 0 0 0 255 255 255 255 255 255 | ||
475 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
476 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
477 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
478 | 255 255 255 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 | ||
479 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
480 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
481 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
482 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
483 | 0 0 0 0 0 0 | ||
484 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
485 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
486 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
487 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
488 | 85 85 85 0 0 0 0 0 0 85 85 85 255 255 255 255 255 255 | ||
489 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
490 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
491 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
492 | 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 | ||
493 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
494 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
495 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
496 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
497 | 0 0 0 0 0 0 | ||
498 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
499 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
500 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
501 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
502 | 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 255 255 255 | ||
503 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
504 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
505 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
506 | 255 255 255 255 255 255 85 85 85 0 0 0 0 0 0 0 0 0 | ||
507 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
508 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
509 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
510 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
511 | 0 0 0 0 0 0 | ||
512 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
513 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
514 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
515 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
516 | 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 255 255 255 | ||
517 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
518 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
519 | 255 255 255 255 255 255 170 170 170 170 170 170 170 170 170 170 170 170 | ||
520 | 170 170 170 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 | ||
521 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
522 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
523 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
524 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
525 | 0 0 0 0 0 0 | ||
526 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
527 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
528 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
529 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
530 | 0 0 0 0 0 0 85 85 85 170 170 170 170 170 170 255 255 255 | ||
531 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
532 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
533 | 255 255 255 255 255 255 170 170 170 170 170 170 170 170 170 170 170 170 | ||
534 | 170 170 170 170 170 170 255 255 255 0 0 0 0 0 0 85 85 85 | ||
535 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
536 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
537 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
538 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
539 | 0 0 0 0 0 0 | ||
540 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
541 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
542 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
543 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
544 | 0 0 0 0 0 0 170 170 170 255 255 255 255 255 255 255 255 255 | ||
545 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
546 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
547 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 170 170 170 | ||
548 | 170 170 170 170 170 170 170 170 170 255 255 255 0 0 0 85 85 85 | ||
549 | 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
550 | 0 0 0 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
551 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
552 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
553 | 0 0 0 0 0 0 | ||
554 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
555 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
556 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
557 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
558 | 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 | ||
559 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
560 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
561 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
562 | 255 255 255 170 170 170 170 170 170 255 255 255 0 0 0 0 0 0 | ||
563 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
564 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 | ||
565 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
566 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
567 | 0 0 0 0 0 0 | ||
568 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
569 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
570 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
571 | 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 | ||
572 | 0 0 0 170 170 170 255 255 255 255 255 255 255 255 255 255 255 255 | ||
573 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
574 | 255 255 255 170 170 170 85 85 85 170 170 170 170 170 170 255 255 255 | ||
575 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
576 | 255 255 255 255 255 255 170 170 170 170 170 170 255 255 255 0 0 0 | ||
577 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
578 | 0 0 0 0 0 0 85 85 85 85 85 85 0 0 0 0 0 0 | ||
579 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
580 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
581 | 0 0 0 0 0 0 | ||
582 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
583 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
584 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
585 | 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 | ||
586 | 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
587 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
588 | 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
589 | 170 170 170 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
590 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 | ||
591 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
592 | 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
593 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
594 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
595 | 0 0 0 0 0 0 | ||
596 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
597 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
598 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
599 | 0 0 0 85 85 85 0 0 0 0 0 0 85 85 85 0 0 0 | ||
600 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
601 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
602 | 255 255 255 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
603 | 0 0 0 85 85 85 170 170 170 255 255 255 255 255 255 255 255 255 | ||
604 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 170 170 170 | ||
605 | 0 0 0 85 85 85 0 0 0 85 85 85 85 85 85 0 0 0 | ||
606 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 0 0 0 | ||
607 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
608 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
609 | 0 0 0 0 0 0 | ||
610 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
611 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
612 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
613 | 0 0 0 85 85 85 0 0 0 85 85 85 85 85 85 85 85 85 | ||
614 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
615 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
616 | 255 255 255 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 | ||
617 | 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 255 255 255 | ||
618 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
619 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
620 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
621 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
622 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
623 | 0 0 0 0 0 0 | ||
624 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
625 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
626 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
627 | 0 0 0 85 85 85 0 0 0 85 85 85 0 0 0 255 255 255 | ||
628 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
629 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
630 | 255 255 255 255 255 255 85 85 85 0 0 0 0 0 0 0 0 0 | ||
631 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 | ||
632 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
633 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
634 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
635 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
636 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
637 | 0 0 0 0 0 0 | ||
638 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
639 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
640 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
641 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 | ||
642 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
643 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
644 | 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 | ||
645 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 | ||
646 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
647 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
648 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
649 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
650 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
651 | 0 0 0 0 0 0 | ||
652 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
653 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
654 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
655 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 | ||
656 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
657 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
658 | 255 255 255 255 255 255 255 255 255 85 85 85 0 0 0 0 0 0 | ||
659 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
660 | 170 170 170 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
661 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
662 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
663 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
664 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
665 | 0 0 0 0 0 0 | ||
666 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
667 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
668 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
669 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 | ||
670 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
671 | 255 255 255 255 255 255 255 255 255 170 170 170 255 255 255 255 255 255 | ||
672 | 255 255 255 255 255 255 255 255 255 170 170 170 0 0 0 0 0 0 | ||
673 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
674 | 0 0 0 170 170 170 255 255 255 255 255 255 255 255 255 255 255 255 | ||
675 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
676 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
677 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
678 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
679 | 0 0 0 0 0 0 | ||
680 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
681 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
682 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
683 | 0 0 0 0 0 0 85 85 85 0 0 0 255 255 255 255 255 255 | ||
684 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
685 | 255 255 255 255 255 255 255 255 255 170 170 170 255 255 255 255 255 255 | ||
686 | 255 255 255 255 255 255 255 255 255 170 170 170 0 0 0 0 0 0 | ||
687 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
688 | 0 0 0 0 0 0 170 170 170 255 255 255 255 255 255 255 255 255 | ||
689 | 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
690 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
691 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
692 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
693 | 0 0 0 0 0 0 | ||
694 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
695 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
696 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
697 | 0 0 0 0 0 0 85 85 85 0 0 0 255 255 255 255 255 255 | ||
698 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
699 | 255 255 255 255 255 255 255 255 255 170 170 170 255 255 255 255 255 255 | ||
700 | 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 | ||
701 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
702 | 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 255 255 255 | ||
703 | 170 170 170 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
704 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
705 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
706 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
707 | 0 0 0 0 0 0 | ||
708 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
709 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
710 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
711 | 0 0 0 0 0 0 85 85 85 0 0 0 255 255 255 255 255 255 | ||
712 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
713 | 255 255 255 255 255 255 255 255 255 170 170 170 255 255 255 255 255 255 | ||
714 | 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 | ||
715 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
716 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 | ||
717 | 170 170 170 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
718 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
719 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
720 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
721 | 0 0 0 0 0 0 | ||
722 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
723 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
724 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
725 | 0 0 0 0 0 0 85 85 85 0 0 0 255 255 255 255 255 255 | ||
726 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
727 | 255 255 255 255 255 255 255 255 255 170 170 170 255 255 255 255 255 255 | ||
728 | 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 | ||
729 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
730 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 | ||
731 | 170 170 170 0 0 0 0 0 0 85 85 85 85 85 85 0 0 0 | ||
732 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
733 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
734 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
735 | 0 0 0 0 0 0 | ||
736 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
737 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
738 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 0 0 0 | ||
739 | 0 0 0 0 0 0 85 85 85 85 85 85 255 255 255 255 255 255 | ||
740 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
741 | 255 255 255 255 255 255 255 255 255 170 170 170 255 255 255 255 255 255 | ||
742 | 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 | ||
743 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
744 | 0 0 0 85 85 85 170 170 170 170 170 170 255 255 255 255 255 255 | ||
745 | 170 170 170 0 0 0 0 0 0 85 85 85 0 0 0 0 0 0 | ||
746 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
747 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
748 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
749 | 0 0 0 0 0 0 | ||
750 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
751 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
752 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 85 0 | ||
753 | 255 255 85 255 255 85 0 0 0 85 85 85 255 255 255 255 255 255 | ||
754 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
755 | 255 255 255 255 255 255 255 255 255 170 170 170 255 255 255 255 255 255 | ||
756 | 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 | ||
757 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
758 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
759 | 170 170 170 170 170 170 170 170 170 85 85 85 0 0 0 85 85 85 | ||
760 | 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 85 85 85 | ||
761 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
762 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
763 | 0 0 0 0 0 0 | ||
764 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
765 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
766 | 0 0 0 0 0 0 0 0 0 0 0 0 255 255 85 255 255 85 | ||
767 | 255 255 85 255 255 85 255 255 85 85 85 85 170 170 170 255 255 255 | ||
768 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
769 | 255 255 255 255 255 255 255 255 255 170 170 170 255 255 255 255 255 255 | ||
770 | 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 | ||
771 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 | ||
772 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 85 170 170 170 | ||
773 | 85 85 85 170 170 170 170 170 170 85 85 85 0 0 0 0 0 0 | ||
774 | 0 0 0 85 85 85 170 170 170 0 0 0 0 0 0 85 85 85 | ||
775 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
776 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
777 | 0 0 0 0 0 0 | ||
778 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
779 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | ||
780 | 85 85 85 0 0 0 0 0 0 170 85 0 255 255 85 255 255 85 | ||
781 | 255 255 85 255 255 85 255 255 85 255 255 85 170 85 0 255 255 255 | ||
782 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
783 | 255 255 255 255 255 255 255 255 255 170 170 170 255 255 255 255 255 255 | ||
784 | 255 255 255 255 255 255 255 255 255 255 255 255 85 85 85 0 0 0 | ||
785 | 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 255 255 255 | ||
786 | 255 255 255 255 255 255 170 170 170 170 170 170 170 170 170 170 170 170 | ||
787 | 255 255 255 85 85 85 0 0 0 170 170 170 85 85 85 0 0 0 | ||
788 | 0 0 0 0 0 0 85 85 85 0 0 0 255 255 85 85 85 85 | ||
789 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
790 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
791 | 0 0 0 0 0 0 | ||
792 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 | ||
793 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
794 | 170 170 170 0 0 0 85 85 85 255 255 85 255 255 85 255 255 85 | ||
795 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 0 0 0 | ||
796 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
797 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
798 | 255 255 255 255 255 255 255 255 255 255 255 255 85 85 85 0 0 0 | ||
799 | 0 0 0 0 0 0 85 85 85 255 255 255 255 255 255 255 255 255 | ||
800 | 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
801 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 85 85 85 | ||
802 | 0 0 0 0 0 0 0 0 0 255 255 85 255 255 85 255 255 85 | ||
803 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
804 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
805 | 0 0 0 0 0 0 | ||
806 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 | ||
807 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
808 | 170 170 170 170 170 170 255 255 85 255 255 85 255 255 85 255 255 85 | ||
809 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
810 | 0 0 0 170 170 170 255 255 255 255 255 255 255 255 255 255 255 255 | ||
811 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
812 | 255 255 255 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 | ||
813 | 0 0 0 0 0 0 255 255 255 255 255 255 255 255 255 170 170 170 | ||
814 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
815 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 | ||
816 | 85 85 85 0 0 0 255 255 85 255 255 85 255 255 85 255 255 85 | ||
817 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
818 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
819 | 0 0 0 0 0 0 | ||
820 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 | ||
821 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
822 | 170 170 170 170 170 170 170 170 170 170 170 170 255 255 85 255 255 85 | ||
823 | 255 255 85 255 255 85 170 170 170 170 170 170 170 170 170 170 170 170 | ||
824 | 255 255 85 85 85 85 170 170 170 170 170 170 170 170 170 170 170 170 | ||
825 | 255 255 255 255 255 255 170 170 170 170 170 170 170 170 170 255 255 255 | ||
826 | 255 255 255 170 170 170 170 170 170 255 255 255 0 0 0 0 0 0 | ||
827 | 0 0 0 85 85 85 255 255 255 255 255 255 255 255 255 85 85 85 | ||
828 | 85 85 85 170 170 170 170 170 170 85 85 85 0 0 0 0 0 0 | ||
829 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
830 | 170 170 170 170 170 170 255 255 85 255 255 85 255 255 85 255 255 85 | ||
831 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
832 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
833 | 0 0 0 0 0 0 | ||
834 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 85 85 85 | ||
835 | 0 0 0 0 0 0 255 255 255 85 85 85 0 0 0 0 0 0 | ||
836 | 255 255 255 85 85 85 0 0 0 0 0 0 255 255 255 255 255 85 | ||
837 | 255 255 85 170 170 170 0 0 0 0 0 0 0 0 0 170 170 170 | ||
838 | 255 255 255 170 170 170 85 85 85 0 0 0 0 0 0 0 0 0 | ||
839 | 170 170 170 255 255 255 85 85 85 0 0 0 85 85 85 255 255 255 | ||
840 | 85 85 85 0 0 0 85 85 85 255 255 255 0 0 0 0 0 0 | ||
841 | 0 0 0 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
842 | 255 255 255 255 255 255 85 85 85 0 0 0 0 0 0 85 85 85 | ||
843 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
844 | 85 85 85 255 255 255 255 255 85 255 255 85 255 255 85 255 255 85 | ||
845 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
846 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
847 | 0 0 0 0 0 0 | ||
848 | 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 0 0 0 | ||
849 | 0 0 0 85 85 85 255 255 255 0 0 0 0 0 0 85 85 85 | ||
850 | 255 255 255 0 0 0 0 0 0 85 85 85 255 255 85 255 255 85 | ||
851 | 255 255 85 85 85 85 0 0 0 0 0 0 0 0 0 170 170 170 | ||
852 | 255 255 255 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
853 | 85 85 85 255 255 255 0 0 0 0 0 0 170 170 170 170 170 170 | ||
854 | 0 0 0 0 0 0 255 255 255 255 255 255 0 0 0 85 85 85 | ||
855 | 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 255 | ||
856 | 255 255 255 85 85 85 0 0 0 85 85 85 255 255 255 255 255 255 | ||
857 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
858 | 0 0 0 85 85 85 255 255 255 255 255 85 255 255 85 255 255 85 | ||
859 | 255 255 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
860 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
861 | 0 0 0 0 0 0 | ||
862 | 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 0 0 0 | ||
863 | 0 0 0 85 85 85 170 170 170 0 0 0 0 0 0 170 170 170 | ||
864 | 170 170 170 0 0 0 0 0 0 170 170 170 255 255 85 255 255 85 | ||
865 | 255 255 255 0 0 0 85 85 85 85 85 85 0 0 0 170 170 170 | ||
866 | 255 255 255 0 0 0 0 0 0 170 170 170 85 85 85 0 0 0 | ||
867 | 85 85 85 170 170 170 0 0 0 0 0 0 170 170 170 0 0 0 | ||
868 | 0 0 0 170 170 170 255 255 255 255 255 255 255 255 255 255 255 255 | ||
869 | 255 255 255 255 255 255 255 255 255 255 255 255 170 170 170 170 170 170 | ||
870 | 85 85 85 0 0 0 85 85 85 255 255 255 255 255 255 170 170 170 | ||
871 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
872 | 0 0 0 0 0 0 85 85 85 255 255 255 255 255 85 255 255 85 | ||
873 | 255 255 85 170 85 0 0 0 0 85 85 85 85 85 85 85 85 85 | ||
874 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
875 | 0 0 0 0 0 0 | ||
876 | 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 0 0 0 | ||
877 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 255 255 255 | ||
878 | 170 170 170 0 0 0 0 0 0 170 170 170 255 255 85 255 255 85 | ||
879 | 170 170 170 0 0 0 170 170 170 85 85 85 0 0 0 255 255 255 | ||
880 | 170 170 170 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 | ||
881 | 170 170 170 170 170 170 0 0 0 0 0 0 85 85 85 0 0 0 | ||
882 | 85 85 85 255 255 255 255 255 255 255 255 255 255 255 255 170 170 170 | ||
883 | 255 255 255 255 255 255 255 255 255 85 85 85 0 0 0 0 0 0 | ||
884 | 0 0 0 0 0 0 170 170 170 255 255 255 170 170 170 0 0 0 | ||
885 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
886 | 0 0 0 0 0 0 0 0 0 85 85 85 255 255 255 255 255 85 | ||
887 | 255 255 85 255 255 85 255 255 255 170 170 170 170 170 170 255 255 255 | ||
888 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
889 | 0 0 0 0 0 0 | ||
890 | 0 0 0 0 0 0 0 0 0 170 170 170 85 85 85 0 0 0 | ||
891 | 0 0 0 0 0 0 0 0 0 0 0 0 255 255 255 255 255 255 | ||
892 | 85 85 85 0 0 0 0 0 0 255 255 255 255 255 85 255 255 85 | ||
893 | 85 85 85 0 0 0 255 255 255 85 85 85 0 0 0 255 255 255 | ||
894 | 85 85 85 0 0 0 85 85 85 255 255 255 85 85 85 85 85 85 | ||
895 | 255 255 255 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
896 | 255 255 255 255 255 255 255 255 255 170 170 170 0 0 0 85 85 85 | ||
897 | 255 255 255 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 | ||
898 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
899 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 255 255 255 | ||
900 | 170 170 170 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 | ||
901 | 255 255 85 255 255 85 170 170 170 170 170 170 170 170 170 170 170 170 | ||
902 | 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
903 | 0 0 0 0 0 0 | ||
904 | 0 0 0 0 0 0 85 85 85 170 170 170 0 0 0 0 0 0 | ||
905 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 255 255 255 | ||
906 | 0 0 0 0 0 0 85 85 85 255 255 85 255 255 85 255 255 255 | ||
907 | 0 0 0 85 85 85 255 255 255 0 0 0 85 85 85 255 255 255 | ||
908 | 85 85 85 0 0 0 170 170 170 255 255 255 170 170 170 170 170 170 | ||
909 | 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
910 | 255 255 255 255 255 255 255 255 255 170 170 170 0 0 0 170 170 170 | ||
911 | 255 255 255 255 255 255 85 85 85 0 0 0 0 0 0 0 0 0 | ||
912 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
913 | 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 255 255 255 | ||
914 | 170 170 170 0 0 0 85 85 85 85 85 85 0 0 0 170 170 170 | ||
915 | 255 255 85 255 255 85 255 255 255 170 170 170 170 170 170 170 170 170 | ||
916 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
917 | 0 0 0 0 0 0 | ||
918 | 0 0 0 0 0 0 85 85 85 170 170 170 0 0 0 0 0 0 | ||
919 | 85 85 85 170 170 170 0 0 0 0 0 0 85 85 85 170 170 170 | ||
920 | 0 0 0 0 0 0 170 170 170 255 255 85 255 255 85 170 170 170 | ||
921 | 0 0 0 85 85 85 170 170 170 0 0 0 85 85 85 255 255 255 | ||
922 | 0 0 0 0 0 0 170 170 170 170 170 170 170 170 170 255 255 255 | ||
923 | 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
924 | 255 255 255 255 255 255 255 255 255 85 85 85 0 0 0 255 255 255 | ||
925 | 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 0 0 0 | ||
926 | 85 85 85 255 255 255 255 255 255 0 0 0 0 0 0 0 0 0 | ||
927 | 0 0 0 0 0 0 170 170 170 255 255 255 255 255 85 255 255 255 | ||
928 | 85 85 85 170 170 170 255 255 255 255 255 255 170 170 170 0 0 0 | ||
929 | 170 170 170 255 255 85 255 255 85 255 255 255 170 170 170 255 255 255 | ||
930 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
931 | 0 0 0 0 0 0 | ||
932 | 0 0 0 0 0 0 85 85 85 170 170 170 0 0 0 0 0 0 | ||
933 | 170 170 170 170 170 170 0 0 0 0 0 0 85 85 85 170 170 170 | ||
934 | 0 0 0 0 0 0 170 170 170 255 255 85 255 255 255 85 85 85 | ||
935 | 0 0 0 85 85 85 85 85 85 0 0 0 85 85 85 170 170 170 | ||
936 | 0 0 0 0 0 0 255 255 255 85 85 85 0 0 0 170 170 170 | ||
937 | 170 170 170 0 0 0 0 0 0 85 85 85 0 0 0 85 85 85 | ||
938 | 255 255 255 255 255 255 255 255 255 85 85 85 85 85 85 255 255 255 | ||
939 | 255 255 255 85 85 85 0 0 0 0 0 0 0 0 0 170 170 170 | ||
940 | 170 170 170 170 170 170 255 255 255 0 0 0 0 0 0 0 0 0 | ||
941 | 0 0 0 170 170 170 255 255 255 255 255 255 255 255 85 170 170 170 | ||
942 | 255 255 255 255 255 255 255 255 85 255 255 85 170 170 170 0 0 0 | ||
943 | 0 0 0 170 170 170 255 255 85 255 255 85 255 255 85 255 255 85 | ||
944 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
945 | 0 0 0 0 0 0 | ||
946 | 0 0 0 0 0 0 170 170 170 85 85 85 0 0 0 0 0 0 | ||
947 | 255 255 255 85 85 85 0 0 0 0 0 0 170 170 170 85 85 85 | ||
948 | 0 0 0 0 0 0 255 255 255 255 255 85 255 255 255 0 0 0 | ||
949 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 85 85 85 | ||
950 | 0 0 0 85 85 85 255 255 255 0 0 0 0 0 0 255 255 255 | ||
951 | 85 85 85 0 0 0 85 85 85 85 85 85 0 0 0 0 0 0 | ||
952 | 255 255 255 255 255 255 255 255 255 85 85 85 170 170 170 255 255 255 | ||
953 | 255 255 255 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 | ||
954 | 170 170 170 85 85 85 170 170 170 0 0 0 0 0 0 85 85 85 | ||
955 | 255 255 255 170 170 170 0 0 0 170 170 170 255 255 85 255 255 255 | ||
956 | 255 255 255 170 170 170 255 255 255 255 255 255 85 85 85 0 0 0 | ||
957 | 85 85 85 255 255 255 255 255 255 255 255 85 255 255 85 255 255 85 | ||
958 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
959 | 0 0 0 0 0 0 | ||
960 | 0 0 0 85 85 85 170 170 170 0 0 0 0 0 0 0 0 0 | ||
961 | 85 85 85 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 | ||
962 | 0 0 0 85 85 85 170 170 170 255 255 255 170 170 170 0 0 0 | ||
963 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 85 85 85 | ||
964 | 0 0 0 85 85 85 170 170 170 0 0 0 85 85 85 255 255 255 | ||
965 | 0 0 0 0 0 0 170 170 170 170 170 170 0 0 0 0 0 0 | ||
966 | 255 255 255 255 255 255 255 255 255 0 0 0 255 255 255 255 255 255 | ||
967 | 170 170 170 0 0 0 0 0 0 170 170 170 255 255 255 85 85 85 | ||
968 | 170 170 170 170 170 170 170 170 170 0 0 0 85 85 85 255 255 255 | ||
969 | 170 170 170 0 0 0 85 85 85 255 255 255 255 255 85 170 170 170 | ||
970 | 0 0 0 170 170 170 255 255 255 255 255 255 0 0 0 85 85 85 | ||
971 | 255 255 255 170 170 170 0 0 0 170 170 170 255 255 85 85 85 85 | ||
972 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
973 | 0 0 0 0 0 0 | ||
974 | 0 0 0 85 85 85 170 170 170 0 0 0 0 0 0 0 0 0 | ||
975 | 0 0 0 0 0 0 0 0 0 170 170 170 170 170 170 0 0 0 | ||
976 | 0 0 0 0 0 0 0 0 0 170 170 170 85 85 85 0 0 0 | ||
977 | 170 170 170 255 255 255 0 0 0 0 0 0 170 170 170 85 85 85 | ||
978 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 170 170 170 | ||
979 | 0 0 0 0 0 0 255 255 255 170 170 170 0 0 0 0 0 0 | ||
980 | 255 255 255 255 255 255 170 170 170 85 85 85 255 255 255 255 255 255 | ||
981 | 85 85 85 0 0 0 170 170 170 170 170 170 0 0 0 0 0 0 | ||
982 | 170 170 170 170 170 170 255 255 255 255 255 255 255 255 255 85 85 85 | ||
983 | 0 0 0 0 0 0 255 255 255 255 255 255 170 170 170 0 0 0 | ||
984 | 0 0 0 170 170 170 255 255 255 170 170 170 170 170 170 255 255 255 | ||
985 | 85 85 85 0 0 0 0 0 0 0 0 0 170 170 170 85 85 85 | ||
986 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
987 | 0 0 0 0 0 0 | ||
988 | 0 0 0 85 85 85 170 170 170 0 0 0 0 0 0 0 0 0 | ||
989 | 0 0 0 0 0 0 170 170 170 255 255 255 170 170 170 0 0 0 | ||
990 | 0 0 0 0 0 0 0 0 0 255 255 255 0 0 0 0 0 0 | ||
991 | 255 255 255 255 255 255 0 0 0 0 0 0 255 255 255 170 170 170 | ||
992 | 0 0 0 0 0 0 0 0 0 170 170 170 255 255 255 170 170 170 | ||
993 | 0 0 0 0 0 0 255 255 255 170 170 170 0 0 0 0 0 0 | ||
994 | 170 170 170 255 255 255 170 170 170 170 170 170 170 170 170 170 170 170 | ||
995 | 0 0 0 85 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
996 | 85 85 85 255 255 255 255 255 255 170 170 170 0 0 0 0 0 0 | ||
997 | 0 0 0 170 170 170 255 255 255 170 170 170 0 0 0 0 0 0 | ||
998 | 85 85 85 255 255 255 255 255 85 255 255 255 255 255 255 85 85 85 | ||
999 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 | ||
1000 | 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1001 | 0 0 0 0 0 0 | ||
1002 | 0 0 0 85 85 85 170 170 170 170 170 170 170 170 170 170 170 170 | ||
1003 | 170 170 170 170 170 170 255 255 85 255 255 85 255 255 85 170 170 170 | ||
1004 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | ||
1005 | 255 255 85 170 170 170 170 170 170 170 170 170 255 255 85 255 255 85 | ||
1006 | 170 170 170 170 170 170 170 170 170 255 255 85 255 255 85 170 170 170 | ||
1007 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | ||
1008 | 170 170 170 170 170 170 85 85 85 170 170 170 170 170 170 170 170 170 | ||
1009 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1010 | 0 0 0 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1011 | 85 85 85 255 255 255 170 170 170 0 0 0 0 0 0 0 0 0 | ||
1012 | 0 0 0 255 255 255 255 255 255 255 255 255 85 85 85 0 0 0 | ||
1013 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1014 | 170 170 170 85 85 85 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1015 | 0 0 0 0 0 0 | ||
1016 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1017 | 85 85 85 85 85 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
1018 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
1019 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
1020 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
1021 | 255 255 85 255 85 85 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1022 | 85 85 85 170 170 170 85 85 85 170 170 170 170 170 170 85 85 85 | ||
1023 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1024 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1025 | 85 85 85 170 170 170 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1026 | 0 0 0 85 85 85 170 170 170 0 0 0 0 0 0 0 0 0 | ||
1027 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1028 | 85 85 85 170 170 170 85 85 85 0 0 0 0 0 0 0 0 0 | ||
1029 | 0 0 0 0 0 0 | ||
1030 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1031 | 0 0 0 0 0 0 85 85 85 85 85 85 170 85 0 170 85 0 | ||
1032 | 170 85 0 255 85 85 255 85 85 255 85 85 255 255 85 255 255 85 | ||
1033 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
1034 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
1035 | 255 85 85 170 85 0 85 85 85 0 0 0 0 0 0 85 85 85 | ||
1036 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 0 0 0 | ||
1037 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1038 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1039 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1040 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1041 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1042 | 0 0 0 170 170 170 170 170 170 85 85 85 0 0 0 0 0 0 | ||
1043 | 0 0 0 0 0 0 | ||
1044 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1045 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 | ||
1046 | 85 85 85 85 85 85 170 85 0 170 85 0 170 85 0 170 85 0 | ||
1047 | 255 85 85 255 85 85 255 255 85 255 255 85 255 255 85 255 255 85 | ||
1048 | 255 255 85 255 255 85 255 255 85 255 255 85 255 255 85 255 85 85 | ||
1049 | 170 85 0 170 85 0 0 0 0 85 85 85 85 85 85 170 170 170 | ||
1050 | 170 170 170 0 0 0 170 170 170 255 255 255 170 170 170 0 0 0 | ||
1051 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1052 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1053 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1054 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1055 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1056 | 0 0 0 0 0 0 170 170 170 170 170 170 0 0 0 0 0 0 | ||
1057 | 0 0 0 0 0 0 | ||
1058 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1059 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1060 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | ||
1061 | 170 85 0 170 85 0 170 85 0 255 85 85 255 85 85 255 255 85 | ||
1062 | 255 255 85 255 255 85 255 255 85 255 255 85 255 85 85 170 85 0 | ||
1063 | 170 85 0 85 85 85 85 85 85 85 85 85 170 170 170 170 170 170 | ||
1064 | 0 0 0 0 0 0 255 255 255 255 255 255 85 85 85 0 0 0 | ||
1065 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1066 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1067 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1068 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1069 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1070 | 0 0 0 0 0 0 0 0 0 170 170 170 85 85 85 0 0 0 | ||
1071 | 0 0 0 0 0 0 | ||
1072 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1073 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1074 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1075 | 0 0 0 85 85 85 85 85 85 170 85 0 170 85 0 170 85 0 | ||
1076 | 170 85 0 255 85 85 255 85 85 255 85 85 170 85 0 170 85 0 | ||
1077 | 85 85 85 0 0 0 0 0 0 85 85 85 170 170 170 0 0 0 | ||
1078 | 0 0 0 85 85 85 255 255 255 170 170 170 0 0 0 0 0 0 | ||
1079 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1080 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1081 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1082 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1083 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1084 | 0 0 0 0 0 0 0 0 0 0 0 0 170 170 170 85 85 85 | ||
1085 | 0 0 0 0 0 0 | ||
1086 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1087 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1088 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1089 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 | ||
1090 | 170 85 0 170 85 0 170 85 0 170 85 0 170 85 0 85 85 85 | ||
1091 | 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 0 0 0 | ||
1092 | 0 0 0 85 85 85 255 255 255 170 170 170 0 0 0 0 0 0 | ||
1093 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1094 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1095 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1096 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1097 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1098 | 0 0 0 0 0 0 0 0 0 0 0 0 85 85 85 170 170 170 | ||
1099 | 85 85 85 0 0 0 | ||
1100 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1101 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1102 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1103 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1104 | 0 0 0 85 85 85 85 85 85 85 85 85 0 0 0 0 0 0 | ||
1105 | 0 0 0 0 0 0 0 0 0 85 85 85 85 85 85 170 170 170 | ||
1106 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | ||
1107 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | ||
1108 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | ||
1109 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | ||
1110 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | ||
1111 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 | ||
1112 | 170 170 170 170 170 170 170 170 170 170 170 170 170 170 170 85 85 85 | ||
1113 | 85 85 85 0 0 0 | ||
1114 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1115 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1116 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1117 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1118 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1119 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1120 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1121 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1122 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1123 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1124 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1125 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1126 | 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 | ||
1127 | 0 0 0 0 0 0 | ||
diff --git a/fs/ext3/xattr.c b/fs/ext3/xattr.c index d4a4f0e9ff69..175414ac2210 100644 --- a/fs/ext3/xattr.c +++ b/fs/ext3/xattr.c | |||
@@ -1000,6 +1000,11 @@ ext3_xattr_set_handle(handle_t *handle, struct inode *inode, int name_index, | |||
1000 | i.value = NULL; | 1000 | i.value = NULL; |
1001 | error = ext3_xattr_block_set(handle, inode, &i, &bs); | 1001 | error = ext3_xattr_block_set(handle, inode, &i, &bs); |
1002 | } else if (error == -ENOSPC) { | 1002 | } else if (error == -ENOSPC) { |
1003 | if (EXT3_I(inode)->i_file_acl && !bs.s.base) { | ||
1004 | error = ext3_xattr_block_find(inode, &i, &bs); | ||
1005 | if (error) | ||
1006 | goto cleanup; | ||
1007 | } | ||
1003 | error = ext3_xattr_block_set(handle, inode, &i, &bs); | 1008 | error = ext3_xattr_block_set(handle, inode, &i, &bs); |
1004 | if (error) | 1009 | if (error) |
1005 | goto cleanup; | 1010 | goto cleanup; |
diff --git a/fs/ext4/xattr.c b/fs/ext4/xattr.c index 3fbc2c6c3d0e..ff08633f398e 100644 --- a/fs/ext4/xattr.c +++ b/fs/ext4/xattr.c | |||
@@ -1009,6 +1009,11 @@ ext4_xattr_set_handle(handle_t *handle, struct inode *inode, int name_index, | |||
1009 | i.value = NULL; | 1009 | i.value = NULL; |
1010 | error = ext4_xattr_block_set(handle, inode, &i, &bs); | 1010 | error = ext4_xattr_block_set(handle, inode, &i, &bs); |
1011 | } else if (error == -ENOSPC) { | 1011 | } else if (error == -ENOSPC) { |
1012 | if (EXT4_I(inode)->i_file_acl && !bs.s.base) { | ||
1013 | error = ext4_xattr_block_find(inode, &i, &bs); | ||
1014 | if (error) | ||
1015 | goto cleanup; | ||
1016 | } | ||
1012 | error = ext4_xattr_block_set(handle, inode, &i, &bs); | 1017 | error = ext4_xattr_block_set(handle, inode, &i, &bs); |
1013 | if (error) | 1018 | if (error) |
1014 | goto cleanup; | 1019 | goto cleanup; |
diff --git a/fs/jbd/commit.c b/fs/jbd/commit.c index cd931ef1f000..5a8ca61498ca 100644 --- a/fs/jbd/commit.c +++ b/fs/jbd/commit.c | |||
@@ -470,7 +470,9 @@ void journal_commit_transaction(journal_t *journal) | |||
470 | * transaction! Now comes the tricky part: we need to write out | 470 | * transaction! Now comes the tricky part: we need to write out |
471 | * metadata. Loop over the transaction's entire buffer list: | 471 | * metadata. Loop over the transaction's entire buffer list: |
472 | */ | 472 | */ |
473 | spin_lock(&journal->j_state_lock); | ||
473 | commit_transaction->t_state = T_COMMIT; | 474 | commit_transaction->t_state = T_COMMIT; |
475 | spin_unlock(&journal->j_state_lock); | ||
474 | 476 | ||
475 | J_ASSERT(commit_transaction->t_nr_buffers <= | 477 | J_ASSERT(commit_transaction->t_nr_buffers <= |
476 | commit_transaction->t_outstanding_credits); | 478 | commit_transaction->t_outstanding_credits); |
diff --git a/include/asm-alpha/param.h b/include/asm-alpha/param.h index 0982f1d39499..e691ecfedb2c 100644 --- a/include/asm-alpha/param.h +++ b/include/asm-alpha/param.h | |||
@@ -5,8 +5,12 @@ | |||
5 | hardware ignores reprogramming. We also need userland buy-in to the | 5 | hardware ignores reprogramming. We also need userland buy-in to the |
6 | change in HZ, since this is visible in the wait4 resources etc. */ | 6 | change in HZ, since this is visible in the wait4 resources etc. */ |
7 | 7 | ||
8 | #ifdef __KERNEL__ | ||
8 | #define HZ CONFIG_HZ | 9 | #define HZ CONFIG_HZ |
9 | #define USER_HZ HZ | 10 | #define USER_HZ HZ |
11 | #else | ||
12 | #define HZ 1024 | ||
13 | #endif | ||
10 | 14 | ||
11 | #define EXEC_PAGESIZE 8192 | 15 | #define EXEC_PAGESIZE 8192 |
12 | 16 | ||
diff --git a/include/asm-h8300/param.h b/include/asm-h8300/param.h index 04f64f100379..1c72fb8080ff 100644 --- a/include/asm-h8300/param.h +++ b/include/asm-h8300/param.h | |||
@@ -1,14 +1,12 @@ | |||
1 | #ifndef _H8300_PARAM_H | 1 | #ifndef _H8300_PARAM_H |
2 | #define _H8300_PARAM_H | 2 | #define _H8300_PARAM_H |
3 | 3 | ||
4 | |||
5 | #ifndef HZ | ||
6 | #define HZ CONFIG_HZ | ||
7 | #endif | ||
8 | |||
9 | #ifdef __KERNEL__ | 4 | #ifdef __KERNEL__ |
5 | #define HZ CONFIG_HZ | ||
10 | #define USER_HZ HZ | 6 | #define USER_HZ HZ |
11 | #define CLOCKS_PER_SEC (USER_HZ) | 7 | #define CLOCKS_PER_SEC (USER_HZ) |
8 | #else | ||
9 | #define HZ 100 | ||
12 | #endif | 10 | #endif |
13 | 11 | ||
14 | #define EXEC_PAGESIZE 4096 | 12 | #define EXEC_PAGESIZE 4096 |
diff --git a/include/asm-sparc/mman.h b/include/asm-sparc/mman.h index e18be984c01d..3d16b40bb8ef 100644 --- a/include/asm-sparc/mman.h +++ b/include/asm-sparc/mman.h | |||
@@ -24,9 +24,8 @@ | |||
24 | 24 | ||
25 | #ifdef __KERNEL__ | 25 | #ifdef __KERNEL__ |
26 | #ifndef __ASSEMBLY__ | 26 | #ifndef __ASSEMBLY__ |
27 | #define arch_mmap_check sparc_mmap_check | 27 | #define arch_mmap_check(addr,len,flags) sparc_mmap_check(addr,len) |
28 | int sparc_mmap_check(unsigned long addr, unsigned long len, | 28 | int sparc_mmap_check(unsigned long addr, unsigned long len); |
29 | unsigned long flags); | ||
30 | #endif | 29 | #endif |
31 | #endif | 30 | #endif |
32 | 31 | ||
diff --git a/include/asm-sparc64/mman.h b/include/asm-sparc64/mman.h index e584563b56eb..625be4d61baf 100644 --- a/include/asm-sparc64/mman.h +++ b/include/asm-sparc64/mman.h | |||
@@ -24,9 +24,8 @@ | |||
24 | 24 | ||
25 | #ifdef __KERNEL__ | 25 | #ifdef __KERNEL__ |
26 | #ifndef __ASSEMBLY__ | 26 | #ifndef __ASSEMBLY__ |
27 | #define arch_mmap_check sparc64_mmap_check | 27 | #define arch_mmap_check(addr,len,flags) sparc64_mmap_check(addr,len) |
28 | int sparc64_mmap_check(unsigned long addr, unsigned long len, | 28 | int sparc64_mmap_check(unsigned long addr, unsigned long len); |
29 | unsigned long flags); | ||
30 | #endif | 29 | #endif |
31 | #endif | 30 | #endif |
32 | 31 | ||
diff --git a/include/asm-sparc64/thread_info.h b/include/asm-sparc64/thread_info.h index 71e42d1a80d9..e5873e385306 100644 --- a/include/asm-sparc64/thread_info.h +++ b/include/asm-sparc64/thread_info.h | |||
@@ -38,7 +38,7 @@ struct thread_info { | |||
38 | struct task_struct *task; | 38 | struct task_struct *task; |
39 | unsigned long flags; | 39 | unsigned long flags; |
40 | __u8 fpsaved[7]; | 40 | __u8 fpsaved[7]; |
41 | __u8 pad; | 41 | __u8 status; |
42 | unsigned long ksp; | 42 | unsigned long ksp; |
43 | 43 | ||
44 | /* D$ line 2 */ | 44 | /* D$ line 2 */ |
@@ -217,7 +217,7 @@ register struct thread_info *current_thread_info_reg asm("g6"); | |||
217 | * nop | 217 | * nop |
218 | */ | 218 | */ |
219 | #define TIF_SYSCALL_TRACE 0 /* syscall trace active */ | 219 | #define TIF_SYSCALL_TRACE 0 /* syscall trace active */ |
220 | #define TIF_RESTORE_SIGMASK 1 /* restore signal mask in do_signal() */ | 220 | /* flags bit 1 is available */ |
221 | #define TIF_SIGPENDING 2 /* signal pending */ | 221 | #define TIF_SIGPENDING 2 /* signal pending */ |
222 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ | 222 | #define TIF_NEED_RESCHED 3 /* rescheduling necessary */ |
223 | #define TIF_PERFCTR 4 /* performance counters active */ | 223 | #define TIF_PERFCTR 4 /* performance counters active */ |
@@ -244,14 +244,34 @@ register struct thread_info *current_thread_info_reg asm("g6"); | |||
244 | #define _TIF_32BIT (1<<TIF_32BIT) | 244 | #define _TIF_32BIT (1<<TIF_32BIT) |
245 | #define _TIF_SECCOMP (1<<TIF_SECCOMP) | 245 | #define _TIF_SECCOMP (1<<TIF_SECCOMP) |
246 | #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT) | 246 | #define _TIF_SYSCALL_AUDIT (1<<TIF_SYSCALL_AUDIT) |
247 | #define _TIF_RESTORE_SIGMASK (1<<TIF_RESTORE_SIGMASK) | ||
248 | #define _TIF_ABI_PENDING (1<<TIF_ABI_PENDING) | 247 | #define _TIF_ABI_PENDING (1<<TIF_ABI_PENDING) |
249 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) | 248 | #define _TIF_POLLING_NRFLAG (1<<TIF_POLLING_NRFLAG) |
250 | 249 | ||
251 | #define _TIF_USER_WORK_MASK ((0xff << TI_FLAG_WSAVED_SHIFT) | \ | 250 | #define _TIF_USER_WORK_MASK ((0xff << TI_FLAG_WSAVED_SHIFT) | \ |
252 | (_TIF_SIGPENDING | _TIF_RESTORE_SIGMASK | \ | 251 | (_TIF_SIGPENDING | \ |
253 | _TIF_NEED_RESCHED | _TIF_PERFCTR)) | 252 | _TIF_NEED_RESCHED | _TIF_PERFCTR)) |
254 | 253 | ||
254 | /* | ||
255 | * Thread-synchronous status. | ||
256 | * | ||
257 | * This is different from the flags in that nobody else | ||
258 | * ever touches our thread-synchronous status, so we don't | ||
259 | * have to worry about atomic accesses. | ||
260 | * | ||
261 | * Note that there are only 8 bits available. | ||
262 | */ | ||
263 | #define TS_RESTORE_SIGMASK 0x0001 /* restore signal mask in do_signal() */ | ||
264 | |||
265 | #ifndef __ASSEMBLY__ | ||
266 | #define HAVE_SET_RESTORE_SIGMASK 1 | ||
267 | static inline void set_restore_sigmask(void) | ||
268 | { | ||
269 | struct thread_info *ti = current_thread_info(); | ||
270 | ti->status |= TS_RESTORE_SIGMASK; | ||
271 | set_bit(TIF_SIGPENDING, &ti->flags); | ||
272 | } | ||
273 | #endif /* !__ASSEMBLY__ */ | ||
274 | |||
255 | #endif /* __KERNEL__ */ | 275 | #endif /* __KERNEL__ */ |
256 | 276 | ||
257 | #endif /* _ASM_THREAD_INFO_H */ | 277 | #endif /* _ASM_THREAD_INFO_H */ |
diff --git a/include/asm-um/param.h b/include/asm-um/param.h index 4cd4a226f8c1..e44f4e60d16d 100644 --- a/include/asm-um/param.h +++ b/include/asm-um/param.h | |||
@@ -13,6 +13,8 @@ | |||
13 | #define HZ CONFIG_HZ | 13 | #define HZ CONFIG_HZ |
14 | #define USER_HZ 100 /* .. some user interfaces are in "ticks" */ | 14 | #define USER_HZ 100 /* .. some user interfaces are in "ticks" */ |
15 | #define CLOCKS_PER_SEC (USER_HZ) /* frequency at which times() counts */ | 15 | #define CLOCKS_PER_SEC (USER_HZ) /* frequency at which times() counts */ |
16 | #else | ||
17 | #define HZ 100 | ||
16 | #endif | 18 | #endif |
17 | 19 | ||
18 | #endif | 20 | #endif |
diff --git a/include/asm-v850/param.h b/include/asm-v850/param.h index 281832690290..4391f5fe0204 100644 --- a/include/asm-v850/param.h +++ b/include/asm-v850/param.h | |||
@@ -26,6 +26,8 @@ | |||
26 | # define HZ CONFIG_HZ | 26 | # define HZ CONFIG_HZ |
27 | # define USER_HZ 100 | 27 | # define USER_HZ 100 |
28 | # define CLOCKS_PER_SEC USER_HZ | 28 | # define CLOCKS_PER_SEC USER_HZ |
29 | #else | ||
30 | # define HZ 100 | ||
29 | #endif | 31 | #endif |
30 | 32 | ||
31 | #endif /* __V850_PARAM_H__ */ | 33 | #endif /* __V850_PARAM_H__ */ |
diff --git a/include/asm-x86/pgtable.h b/include/asm-x86/pgtable.h index 801b31f71452..55c3a0e3a8ce 100644 --- a/include/asm-x86/pgtable.h +++ b/include/asm-x86/pgtable.h | |||
@@ -57,7 +57,8 @@ | |||
57 | #define _KERNPG_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | \ | 57 | #define _KERNPG_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_ACCESSED | \ |
58 | _PAGE_DIRTY) | 58 | _PAGE_DIRTY) |
59 | 59 | ||
60 | #define _PAGE_CHG_MASK (PTE_MASK | _PAGE_ACCESSED | _PAGE_DIRTY) | 60 | #define _PAGE_CHG_MASK (PTE_MASK | _PAGE_PCD | _PAGE_PWT | \ |
61 | _PAGE_ACCESSED | _PAGE_DIRTY) | ||
61 | 62 | ||
62 | #define _PAGE_CACHE_MASK (_PAGE_PCD | _PAGE_PWT) | 63 | #define _PAGE_CACHE_MASK (_PAGE_PCD | _PAGE_PWT) |
63 | #define _PAGE_CACHE_WB (0) | 64 | #define _PAGE_CACHE_WB (0) |
@@ -288,12 +289,21 @@ static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) | |||
288 | * Chop off the NX bit (if present), and add the NX portion of | 289 | * Chop off the NX bit (if present), and add the NX portion of |
289 | * the newprot (if present): | 290 | * the newprot (if present): |
290 | */ | 291 | */ |
291 | val &= _PAGE_CHG_MASK & ~_PAGE_NX; | 292 | val &= _PAGE_CHG_MASK; |
292 | val |= pgprot_val(newprot) & __supported_pte_mask; | 293 | val |= pgprot_val(newprot) & (~_PAGE_CHG_MASK) & __supported_pte_mask; |
293 | 294 | ||
294 | return __pte(val); | 295 | return __pte(val); |
295 | } | 296 | } |
296 | 297 | ||
298 | /* mprotect needs to preserve PAT bits when updating vm_page_prot */ | ||
299 | #define pgprot_modify pgprot_modify | ||
300 | static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot) | ||
301 | { | ||
302 | pgprotval_t preservebits = pgprot_val(oldprot) & _PAGE_CHG_MASK; | ||
303 | pgprotval_t addbits = pgprot_val(newprot); | ||
304 | return __pgprot(preservebits | addbits); | ||
305 | } | ||
306 | |||
297 | #define pte_pgprot(x) __pgprot(pte_val(x) & (0xfff | _PAGE_NX)) | 307 | #define pte_pgprot(x) __pgprot(pte_val(x) & (0xfff | _PAGE_NX)) |
298 | 308 | ||
299 | #define canon_pgprot(p) __pgprot(pgprot_val(p) & __supported_pte_mask) | 309 | #define canon_pgprot(p) __pgprot(pgprot_val(p) & __supported_pte_mask) |
diff --git a/include/asm-xtensa/param.h b/include/asm-xtensa/param.h index 82ad34d92d35..ba03d5aeab6b 100644 --- a/include/asm-xtensa/param.h +++ b/include/asm-xtensa/param.h | |||
@@ -15,6 +15,8 @@ | |||
15 | # define HZ CONFIG_HZ /* internal timer frequency */ | 15 | # define HZ CONFIG_HZ /* internal timer frequency */ |
16 | # define USER_HZ 100 /* for user interfaces in "ticks" */ | 16 | # define USER_HZ 100 /* for user interfaces in "ticks" */ |
17 | # define CLOCKS_PER_SEC (USER_HZ) /* frequnzy at which times() counts */ | 17 | # define CLOCKS_PER_SEC (USER_HZ) /* frequnzy at which times() counts */ |
18 | #else | ||
19 | # define HZ 100 | ||
18 | #endif | 20 | #endif |
19 | 21 | ||
20 | #define EXEC_PAGESIZE 4096 | 22 | #define EXEC_PAGESIZE 4096 |
diff --git a/include/linux/ide.h b/include/linux/ide.h index b0135b0c3a04..f8f195c20da2 100644 --- a/include/linux/ide.h +++ b/include/linux/ide.h | |||
@@ -965,7 +965,6 @@ typedef struct ide_task_s { | |||
965 | void ide_tf_dump(const char *, struct ide_taskfile *); | 965 | void ide_tf_dump(const char *, struct ide_taskfile *); |
966 | 966 | ||
967 | extern void SELECT_DRIVE(ide_drive_t *); | 967 | extern void SELECT_DRIVE(ide_drive_t *); |
968 | extern void SELECT_MASK(ide_drive_t *, int); | ||
969 | 968 | ||
970 | extern int drive_is_ready(ide_drive_t *); | 969 | extern int drive_is_ready(ide_drive_t *); |
971 | 970 | ||
@@ -1058,8 +1057,8 @@ enum { | |||
1058 | IDE_HFLAG_NO_SET_MODE = (1 << 9), | 1057 | IDE_HFLAG_NO_SET_MODE = (1 << 9), |
1059 | /* trust BIOS for programming chipset/device for DMA */ | 1058 | /* trust BIOS for programming chipset/device for DMA */ |
1060 | IDE_HFLAG_TRUST_BIOS_FOR_DMA = (1 << 10), | 1059 | IDE_HFLAG_TRUST_BIOS_FOR_DMA = (1 << 10), |
1061 | /* host uses VDMA (tied with IDE_HFLAG_CS5520 for now) */ | 1060 | /* host is CS5510/CS5520 */ |
1062 | IDE_HFLAG_VDMA = (1 << 11), | 1061 | IDE_HFLAG_CS5520 = (1 << 11), |
1063 | /* ATAPI DMA is unsupported */ | 1062 | /* ATAPI DMA is unsupported */ |
1064 | IDE_HFLAG_NO_ATAPI_DMA = (1 << 12), | 1063 | IDE_HFLAG_NO_ATAPI_DMA = (1 << 12), |
1065 | /* set if host is a "non-bootable" controller */ | 1064 | /* set if host is a "non-bootable" controller */ |
@@ -1070,8 +1069,6 @@ enum { | |||
1070 | IDE_HFLAG_NO_AUTODMA = (1 << 15), | 1069 | IDE_HFLAG_NO_AUTODMA = (1 << 15), |
1071 | /* host uses MMIO */ | 1070 | /* host uses MMIO */ |
1072 | IDE_HFLAG_MMIO = (1 << 16), | 1071 | IDE_HFLAG_MMIO = (1 << 16), |
1073 | /* host is CS5510/CS5520 */ | ||
1074 | IDE_HFLAG_CS5520 = IDE_HFLAG_VDMA, | ||
1075 | /* no LBA48 */ | 1072 | /* no LBA48 */ |
1076 | IDE_HFLAG_NO_LBA48 = (1 << 17), | 1073 | IDE_HFLAG_NO_LBA48 = (1 << 17), |
1077 | /* no LBA48 DMA */ | 1074 | /* no LBA48 DMA */ |
@@ -1101,6 +1098,8 @@ enum { | |||
1101 | IDE_HFLAG_NO_IO_32BIT = (1 << 30), | 1098 | IDE_HFLAG_NO_IO_32BIT = (1 << 30), |
1102 | /* never unmask IRQs */ | 1099 | /* never unmask IRQs */ |
1103 | IDE_HFLAG_NO_UNMASK_IRQS = (1 << 31), | 1100 | IDE_HFLAG_NO_UNMASK_IRQS = (1 << 31), |
1101 | /* host uses VDMA (disabled for now) */ | ||
1102 | IDE_HFLAG_VDMA = 0, | ||
1104 | }; | 1103 | }; |
1105 | 1104 | ||
1106 | #ifdef CONFIG_BLK_DEV_OFFBOARD | 1105 | #ifdef CONFIG_BLK_DEV_OFFBOARD |
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 4d46e299afb5..792bf0aa779b 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
@@ -276,7 +276,17 @@ extern void print_hex_dump(const char *level, const char *prefix_str, | |||
276 | const void *buf, size_t len, bool ascii); | 276 | const void *buf, size_t len, bool ascii); |
277 | extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type, | 277 | extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type, |
278 | const void *buf, size_t len); | 278 | const void *buf, size_t len); |
279 | #define hex_asc(x) "0123456789abcdef"[x] | 279 | |
280 | extern const char hex_asc[]; | ||
281 | #define hex_asc_lo(x) hex_asc[((x) & 0x0f)] | ||
282 | #define hex_asc_hi(x) hex_asc[((x) & 0xf0) >> 4] | ||
283 | |||
284 | static inline char *pack_hex_byte(char *buf, u8 byte) | ||
285 | { | ||
286 | *buf++ = hex_asc_hi(byte); | ||
287 | *buf++ = hex_asc_lo(byte); | ||
288 | return buf; | ||
289 | } | ||
280 | 290 | ||
281 | #define pr_emerg(fmt, arg...) \ | 291 | #define pr_emerg(fmt, arg...) \ |
282 | printk(KERN_EMERG fmt, ##arg) | 292 | printk(KERN_EMERG fmt, ##arg) |
diff --git a/include/linux/percpu.h b/include/linux/percpu.h index d746a2abb322..4cdd393e71e1 100644 --- a/include/linux/percpu.h +++ b/include/linux/percpu.h | |||
@@ -13,8 +13,14 @@ | |||
13 | __attribute__((__section__(".data.percpu"))) \ | 13 | __attribute__((__section__(".data.percpu"))) \ |
14 | PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name | 14 | PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name |
15 | 15 | ||
16 | #ifdef MODULE | ||
17 | #define SHARED_ALIGNED_SECTION ".data.percpu" | ||
18 | #else | ||
19 | #define SHARED_ALIGNED_SECTION ".data.percpu.shared_aligned" | ||
20 | #endif | ||
21 | |||
16 | #define DEFINE_PER_CPU_SHARED_ALIGNED(type, name) \ | 22 | #define DEFINE_PER_CPU_SHARED_ALIGNED(type, name) \ |
17 | __attribute__((__section__(".data.percpu.shared_aligned"))) \ | 23 | __attribute__((__section__(SHARED_ALIGNED_SECTION))) \ |
18 | PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name \ | 24 | PER_CPU_ATTRIBUTES __typeof__(type) per_cpu__##name \ |
19 | ____cacheline_aligned_in_smp | 25 | ____cacheline_aligned_in_smp |
20 | #else | 26 | #else |
diff --git a/kernel/kgdb.c b/kernel/kgdb.c index 39e31a036f5b..14787de568b3 100644 --- a/kernel/kgdb.c +++ b/kernel/kgdb.c | |||
@@ -346,14 +346,6 @@ static void put_packet(char *buffer) | |||
346 | } | 346 | } |
347 | } | 347 | } |
348 | 348 | ||
349 | static char *pack_hex_byte(char *pkt, u8 byte) | ||
350 | { | ||
351 | *pkt++ = hexchars[byte >> 4]; | ||
352 | *pkt++ = hexchars[byte & 0xf]; | ||
353 | |||
354 | return pkt; | ||
355 | } | ||
356 | |||
357 | /* | 349 | /* |
358 | * Convert the memory pointed to by mem into hex, placing result in buf. | 350 | * Convert the memory pointed to by mem into hex, placing result in buf. |
359 | * Return a pointer to the last char put in buf (null). May return an error. | 351 | * Return a pointer to the last char put in buf (null). May return an error. |
diff --git a/kernel/sched.c b/kernel/sched.c index 8841a915545d..cfa222a91539 100644 --- a/kernel/sched.c +++ b/kernel/sched.c | |||
@@ -8986,7 +8986,7 @@ static u64 cpu_shares_read_u64(struct cgroup *cgrp, struct cftype *cft) | |||
8986 | #endif | 8986 | #endif |
8987 | 8987 | ||
8988 | #ifdef CONFIG_RT_GROUP_SCHED | 8988 | #ifdef CONFIG_RT_GROUP_SCHED |
8989 | static ssize_t cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft, | 8989 | static int cpu_rt_runtime_write(struct cgroup *cgrp, struct cftype *cft, |
8990 | s64 val) | 8990 | s64 val) |
8991 | { | 8991 | { |
8992 | return sched_group_set_rt_runtime(cgroup_tg(cgrp), val); | 8992 | return sched_group_set_rt_runtime(cgroup_tg(cgrp), val); |
diff --git a/lib/hexdump.c b/lib/hexdump.c index 343546550dc9..f07c0db81d26 100644 --- a/lib/hexdump.c +++ b/lib/hexdump.c | |||
@@ -12,6 +12,9 @@ | |||
12 | #include <linux/kernel.h> | 12 | #include <linux/kernel.h> |
13 | #include <linux/module.h> | 13 | #include <linux/module.h> |
14 | 14 | ||
15 | const char hex_asc[] = "0123456789abcdef"; | ||
16 | EXPORT_SYMBOL(hex_asc); | ||
17 | |||
15 | /** | 18 | /** |
16 | * hex_dump_to_buffer - convert a blob of data to "hex ASCII" in memory | 19 | * hex_dump_to_buffer - convert a blob of data to "hex ASCII" in memory |
17 | * @buf: data blob to dump | 20 | * @buf: data blob to dump |
@@ -93,8 +96,8 @@ void hex_dump_to_buffer(const void *buf, size_t len, int rowsize, | |||
93 | for (j = 0; (j < rowsize) && (j < len) && (lx + 4) < linebuflen; | 96 | for (j = 0; (j < rowsize) && (j < len) && (lx + 4) < linebuflen; |
94 | j++) { | 97 | j++) { |
95 | ch = ptr[j]; | 98 | ch = ptr[j]; |
96 | linebuf[lx++] = hex_asc(ch >> 4); | 99 | linebuf[lx++] = hex_asc_hi(ch); |
97 | linebuf[lx++] = hex_asc(ch & 0x0f); | 100 | linebuf[lx++] = hex_asc_lo(ch); |
98 | linebuf[lx++] = ' '; | 101 | linebuf[lx++] = ' '; |
99 | } | 102 | } |
100 | ascii_column = 3 * rowsize + 2; | 103 | ascii_column = 3 * rowsize + 2; |
@@ -19,31 +19,42 @@ | |||
19 | 19 | ||
20 | struct lmb lmb; | 20 | struct lmb lmb; |
21 | 21 | ||
22 | static int lmb_debug; | ||
23 | |||
24 | static int __init early_lmb(char *p) | ||
25 | { | ||
26 | if (p && strstr(p, "debug")) | ||
27 | lmb_debug = 1; | ||
28 | return 0; | ||
29 | } | ||
30 | early_param("lmb", early_lmb); | ||
31 | |||
22 | void lmb_dump_all(void) | 32 | void lmb_dump_all(void) |
23 | { | 33 | { |
24 | #ifdef DEBUG | ||
25 | unsigned long i; | 34 | unsigned long i; |
26 | 35 | ||
27 | pr_debug("lmb_dump_all:\n"); | 36 | if (!lmb_debug) |
28 | pr_debug(" memory.cnt = 0x%lx\n", lmb.memory.cnt); | 37 | return; |
29 | pr_debug(" memory.size = 0x%llx\n", | 38 | |
39 | pr_info("lmb_dump_all:\n"); | ||
40 | pr_info(" memory.cnt = 0x%lx\n", lmb.memory.cnt); | ||
41 | pr_info(" memory.size = 0x%llx\n", | ||
30 | (unsigned long long)lmb.memory.size); | 42 | (unsigned long long)lmb.memory.size); |
31 | for (i=0; i < lmb.memory.cnt ;i++) { | 43 | for (i=0; i < lmb.memory.cnt ;i++) { |
32 | pr_debug(" memory.region[0x%x].base = 0x%llx\n", | 44 | pr_info(" memory.region[0x%lx].base = 0x%llx\n", |
33 | i, (unsigned long long)lmb.memory.region[i].base); | 45 | i, (unsigned long long)lmb.memory.region[i].base); |
34 | pr_debug(" .size = 0x%llx\n", | 46 | pr_info(" .size = 0x%llx\n", |
35 | (unsigned long long)lmb.memory.region[i].size); | 47 | (unsigned long long)lmb.memory.region[i].size); |
36 | } | 48 | } |
37 | 49 | ||
38 | pr_debug(" reserved.cnt = 0x%lx\n", lmb.reserved.cnt); | 50 | pr_info(" reserved.cnt = 0x%lx\n", lmb.reserved.cnt); |
39 | pr_debug(" reserved.size = 0x%lx\n", lmb.reserved.size); | 51 | pr_info(" reserved.size = 0x%lx\n", lmb.reserved.size); |
40 | for (i=0; i < lmb.reserved.cnt ;i++) { | 52 | for (i=0; i < lmb.reserved.cnt ;i++) { |
41 | pr_debug(" reserved.region[0x%x].base = 0x%llx\n", | 53 | pr_info(" reserved.region[0x%lx].base = 0x%llx\n", |
42 | i, (unsigned long long)lmb.reserved.region[i].base); | 54 | i, (unsigned long long)lmb.reserved.region[i].base); |
43 | pr_debug(" .size = 0x%llx\n", | 55 | pr_info(" .size = 0x%llx\n", |
44 | (unsigned long long)lmb.reserved.region[i].size); | 56 | (unsigned long long)lmb.reserved.region[i].size); |
45 | } | 57 | } |
46 | #endif /* DEBUG */ | ||
47 | } | 58 | } |
48 | 59 | ||
49 | static unsigned long lmb_addrs_overlap(u64 base1, u64 size1, u64 base2, | 60 | static unsigned long lmb_addrs_overlap(u64 base1, u64 size1, u64 base2, |
@@ -286,8 +297,7 @@ static u64 __init lmb_alloc_nid_unreserved(u64 start, u64 end, | |||
286 | j = lmb_overlaps_region(&lmb.reserved, base, size); | 297 | j = lmb_overlaps_region(&lmb.reserved, base, size); |
287 | if (j < 0) { | 298 | if (j < 0) { |
288 | /* this area isn't reserved, take it */ | 299 | /* this area isn't reserved, take it */ |
289 | if (lmb_add_region(&lmb.reserved, base, | 300 | if (lmb_add_region(&lmb.reserved, base, size) < 0) |
290 | lmb_align_up(size, align)) < 0) | ||
291 | base = ~(u64)0; | 301 | base = ~(u64)0; |
292 | return base; | 302 | return base; |
293 | } | 303 | } |
@@ -333,6 +343,10 @@ u64 __init lmb_alloc_nid(u64 size, u64 align, int nid, | |||
333 | struct lmb_region *mem = &lmb.memory; | 343 | struct lmb_region *mem = &lmb.memory; |
334 | int i; | 344 | int i; |
335 | 345 | ||
346 | BUG_ON(0 == size); | ||
347 | |||
348 | size = lmb_align_up(size, align); | ||
349 | |||
336 | for (i = 0; i < mem->cnt; i++) { | 350 | for (i = 0; i < mem->cnt; i++) { |
337 | u64 ret = lmb_alloc_nid_region(&mem->region[i], | 351 | u64 ret = lmb_alloc_nid_region(&mem->region[i], |
338 | nid_range, | 352 | nid_range, |
@@ -370,6 +384,8 @@ u64 __init __lmb_alloc_base(u64 size, u64 align, u64 max_addr) | |||
370 | 384 | ||
371 | BUG_ON(0 == size); | 385 | BUG_ON(0 == size); |
372 | 386 | ||
387 | size = lmb_align_up(size, align); | ||
388 | |||
373 | /* On some platforms, make sure we allocate lowmem */ | 389 | /* On some platforms, make sure we allocate lowmem */ |
374 | /* Note that LMB_REAL_LIMIT may be LMB_ALLOC_ANYWHERE */ | 390 | /* Note that LMB_REAL_LIMIT may be LMB_ALLOC_ANYWHERE */ |
375 | if (max_addr == LMB_ALLOC_ANYWHERE) | 391 | if (max_addr == LMB_ALLOC_ANYWHERE) |
@@ -393,8 +409,7 @@ u64 __init __lmb_alloc_base(u64 size, u64 align, u64 max_addr) | |||
393 | j = lmb_overlaps_region(&lmb.reserved, base, size); | 409 | j = lmb_overlaps_region(&lmb.reserved, base, size); |
394 | if (j < 0) { | 410 | if (j < 0) { |
395 | /* this area isn't reserved, take it */ | 411 | /* this area isn't reserved, take it */ |
396 | if (lmb_add_region(&lmb.reserved, base, | 412 | if (lmb_add_region(&lmb.reserved, base, size) < 0) |
397 | lmb_align_up(size, align)) < 0) | ||
398 | return 0; | 413 | return 0; |
399 | return base; | 414 | return base; |
400 | } | 415 | } |
diff --git a/mm/filemap.c b/mm/filemap.c index 2dead9adf8b7..1e6a7d34874f 100644 --- a/mm/filemap.c +++ b/mm/filemap.c | |||
@@ -1461,6 +1461,11 @@ page_not_uptodate: | |||
1461 | */ | 1461 | */ |
1462 | ClearPageError(page); | 1462 | ClearPageError(page); |
1463 | error = mapping->a_ops->readpage(file, page); | 1463 | error = mapping->a_ops->readpage(file, page); |
1464 | if (!error) { | ||
1465 | wait_on_page_locked(page); | ||
1466 | if (!PageUptodate(page)) | ||
1467 | error = -EIO; | ||
1468 | } | ||
1464 | page_cache_release(page); | 1469 | page_cache_release(page); |
1465 | 1470 | ||
1466 | if (!error || error == AOP_TRUNCATED_PAGE) | 1471 | if (!error || error == AOP_TRUNCATED_PAGE) |
diff --git a/mm/memory_hotplug.c b/mm/memory_hotplug.c index b17dca7249f8..833f854eabe5 100644 --- a/mm/memory_hotplug.c +++ b/mm/memory_hotplug.c | |||
@@ -159,21 +159,58 @@ void register_page_bootmem_info_node(struct pglist_data *pgdat) | |||
159 | } | 159 | } |
160 | #endif /* !CONFIG_SPARSEMEM_VMEMMAP */ | 160 | #endif /* !CONFIG_SPARSEMEM_VMEMMAP */ |
161 | 161 | ||
162 | static void grow_zone_span(struct zone *zone, unsigned long start_pfn, | ||
163 | unsigned long end_pfn) | ||
164 | { | ||
165 | unsigned long old_zone_end_pfn; | ||
166 | |||
167 | zone_span_writelock(zone); | ||
168 | |||
169 | old_zone_end_pfn = zone->zone_start_pfn + zone->spanned_pages; | ||
170 | if (start_pfn < zone->zone_start_pfn) | ||
171 | zone->zone_start_pfn = start_pfn; | ||
172 | |||
173 | zone->spanned_pages = max(old_zone_end_pfn, end_pfn) - | ||
174 | zone->zone_start_pfn; | ||
175 | |||
176 | zone_span_writeunlock(zone); | ||
177 | } | ||
178 | |||
179 | static void grow_pgdat_span(struct pglist_data *pgdat, unsigned long start_pfn, | ||
180 | unsigned long end_pfn) | ||
181 | { | ||
182 | unsigned long old_pgdat_end_pfn = | ||
183 | pgdat->node_start_pfn + pgdat->node_spanned_pages; | ||
184 | |||
185 | if (start_pfn < pgdat->node_start_pfn) | ||
186 | pgdat->node_start_pfn = start_pfn; | ||
187 | |||
188 | pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) - | ||
189 | pgdat->node_start_pfn; | ||
190 | } | ||
191 | |||
162 | static int __add_zone(struct zone *zone, unsigned long phys_start_pfn) | 192 | static int __add_zone(struct zone *zone, unsigned long phys_start_pfn) |
163 | { | 193 | { |
164 | struct pglist_data *pgdat = zone->zone_pgdat; | 194 | struct pglist_data *pgdat = zone->zone_pgdat; |
165 | int nr_pages = PAGES_PER_SECTION; | 195 | int nr_pages = PAGES_PER_SECTION; |
166 | int nid = pgdat->node_id; | 196 | int nid = pgdat->node_id; |
167 | int zone_type; | 197 | int zone_type; |
198 | unsigned long flags; | ||
168 | 199 | ||
169 | zone_type = zone - pgdat->node_zones; | 200 | zone_type = zone - pgdat->node_zones; |
170 | if (!zone->wait_table) { | 201 | if (!zone->wait_table) { |
171 | int ret = 0; | 202 | int ret; |
203 | |||
172 | ret = init_currently_empty_zone(zone, phys_start_pfn, | 204 | ret = init_currently_empty_zone(zone, phys_start_pfn, |
173 | nr_pages, MEMMAP_HOTPLUG); | 205 | nr_pages, MEMMAP_HOTPLUG); |
174 | if (ret < 0) | 206 | if (ret) |
175 | return ret; | 207 | return ret; |
176 | } | 208 | } |
209 | pgdat_resize_lock(zone->zone_pgdat, &flags); | ||
210 | grow_zone_span(zone, phys_start_pfn, phys_start_pfn + nr_pages); | ||
211 | grow_pgdat_span(zone->zone_pgdat, phys_start_pfn, | ||
212 | phys_start_pfn + nr_pages); | ||
213 | pgdat_resize_unlock(zone->zone_pgdat, &flags); | ||
177 | memmap_init_zone(nr_pages, nid, zone_type, | 214 | memmap_init_zone(nr_pages, nid, zone_type, |
178 | phys_start_pfn, MEMMAP_HOTPLUG); | 215 | phys_start_pfn, MEMMAP_HOTPLUG); |
179 | return 0; | 216 | return 0; |
@@ -299,36 +336,6 @@ int __remove_pages(struct zone *zone, unsigned long phys_start_pfn, | |||
299 | } | 336 | } |
300 | EXPORT_SYMBOL_GPL(__remove_pages); | 337 | EXPORT_SYMBOL_GPL(__remove_pages); |
301 | 338 | ||
302 | static void grow_zone_span(struct zone *zone, | ||
303 | unsigned long start_pfn, unsigned long end_pfn) | ||
304 | { | ||
305 | unsigned long old_zone_end_pfn; | ||
306 | |||
307 | zone_span_writelock(zone); | ||
308 | |||
309 | old_zone_end_pfn = zone->zone_start_pfn + zone->spanned_pages; | ||
310 | if (start_pfn < zone->zone_start_pfn) | ||
311 | zone->zone_start_pfn = start_pfn; | ||
312 | |||
313 | zone->spanned_pages = max(old_zone_end_pfn, end_pfn) - | ||
314 | zone->zone_start_pfn; | ||
315 | |||
316 | zone_span_writeunlock(zone); | ||
317 | } | ||
318 | |||
319 | static void grow_pgdat_span(struct pglist_data *pgdat, | ||
320 | unsigned long start_pfn, unsigned long end_pfn) | ||
321 | { | ||
322 | unsigned long old_pgdat_end_pfn = | ||
323 | pgdat->node_start_pfn + pgdat->node_spanned_pages; | ||
324 | |||
325 | if (start_pfn < pgdat->node_start_pfn) | ||
326 | pgdat->node_start_pfn = start_pfn; | ||
327 | |||
328 | pgdat->node_spanned_pages = max(old_pgdat_end_pfn, end_pfn) - | ||
329 | pgdat->node_start_pfn; | ||
330 | } | ||
331 | |||
332 | void online_page(struct page *page) | 339 | void online_page(struct page *page) |
333 | { | 340 | { |
334 | totalram_pages++; | 341 | totalram_pages++; |
@@ -367,7 +374,6 @@ static int online_pages_range(unsigned long start_pfn, unsigned long nr_pages, | |||
367 | 374 | ||
368 | int online_pages(unsigned long pfn, unsigned long nr_pages) | 375 | int online_pages(unsigned long pfn, unsigned long nr_pages) |
369 | { | 376 | { |
370 | unsigned long flags; | ||
371 | unsigned long onlined_pages = 0; | 377 | unsigned long onlined_pages = 0; |
372 | struct zone *zone; | 378 | struct zone *zone; |
373 | int need_zonelists_rebuild = 0; | 379 | int need_zonelists_rebuild = 0; |
@@ -395,11 +401,6 @@ int online_pages(unsigned long pfn, unsigned long nr_pages) | |||
395 | * memory_block->state_mutex. | 401 | * memory_block->state_mutex. |
396 | */ | 402 | */ |
397 | zone = page_zone(pfn_to_page(pfn)); | 403 | zone = page_zone(pfn_to_page(pfn)); |
398 | pgdat_resize_lock(zone->zone_pgdat, &flags); | ||
399 | grow_zone_span(zone, pfn, pfn + nr_pages); | ||
400 | grow_pgdat_span(zone->zone_pgdat, pfn, pfn + nr_pages); | ||
401 | pgdat_resize_unlock(zone->zone_pgdat, &flags); | ||
402 | |||
403 | /* | 404 | /* |
404 | * If this zone is not populated, then it is not in zonelist. | 405 | * If this zone is not populated, then it is not in zonelist. |
405 | * This means the page allocator ignores this zone. | 406 | * This means the page allocator ignores this zone. |
@@ -408,8 +409,15 @@ int online_pages(unsigned long pfn, unsigned long nr_pages) | |||
408 | if (!populated_zone(zone)) | 409 | if (!populated_zone(zone)) |
409 | need_zonelists_rebuild = 1; | 410 | need_zonelists_rebuild = 1; |
410 | 411 | ||
411 | walk_memory_resource(pfn, nr_pages, &onlined_pages, | 412 | ret = walk_memory_resource(pfn, nr_pages, &onlined_pages, |
412 | online_pages_range); | 413 | online_pages_range); |
414 | if (ret) { | ||
415 | printk(KERN_DEBUG "online_pages %lx at %lx failed\n", | ||
416 | nr_pages, pfn); | ||
417 | memory_notify(MEM_CANCEL_ONLINE, &arg); | ||
418 | return ret; | ||
419 | } | ||
420 | |||
413 | zone->present_pages += onlined_pages; | 421 | zone->present_pages += onlined_pages; |
414 | zone->zone_pgdat->node_present_pages += onlined_pages; | 422 | zone->zone_pgdat->node_present_pages += onlined_pages; |
415 | 423 | ||
diff --git a/mm/mprotect.c b/mm/mprotect.c index 4de546899dc1..a5bf31c27375 100644 --- a/mm/mprotect.c +++ b/mm/mprotect.c | |||
@@ -26,6 +26,13 @@ | |||
26 | #include <asm/cacheflush.h> | 26 | #include <asm/cacheflush.h> |
27 | #include <asm/tlbflush.h> | 27 | #include <asm/tlbflush.h> |
28 | 28 | ||
29 | #ifndef pgprot_modify | ||
30 | static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot) | ||
31 | { | ||
32 | return newprot; | ||
33 | } | ||
34 | #endif | ||
35 | |||
29 | static void change_pte_range(struct mm_struct *mm, pmd_t *pmd, | 36 | static void change_pte_range(struct mm_struct *mm, pmd_t *pmd, |
30 | unsigned long addr, unsigned long end, pgprot_t newprot, | 37 | unsigned long addr, unsigned long end, pgprot_t newprot, |
31 | int dirty_accountable) | 38 | int dirty_accountable) |
@@ -192,7 +199,9 @@ success: | |||
192 | * held in write mode. | 199 | * held in write mode. |
193 | */ | 200 | */ |
194 | vma->vm_flags = newflags; | 201 | vma->vm_flags = newflags; |
195 | vma->vm_page_prot = vm_get_page_prot(newflags); | 202 | vma->vm_page_prot = pgprot_modify(vma->vm_page_prot, |
203 | vm_get_page_prot(newflags)); | ||
204 | |||
196 | if (vma_wants_writenotify(vma)) { | 205 | if (vma_wants_writenotify(vma)) { |
197 | vma->vm_page_prot = vm_get_page_prot(newflags & ~VM_SHARED); | 206 | vma->vm_page_prot = vm_get_page_prot(newflags & ~VM_SHARED); |
198 | dirty_accountable = 1; | 207 | dirty_accountable = 1; |
diff --git a/mm/page_alloc.c b/mm/page_alloc.c index bdd5c432c426..63835579323a 100644 --- a/mm/page_alloc.c +++ b/mm/page_alloc.c | |||
@@ -2862,8 +2862,6 @@ __meminit int init_currently_empty_zone(struct zone *zone, | |||
2862 | 2862 | ||
2863 | zone->zone_start_pfn = zone_start_pfn; | 2863 | zone->zone_start_pfn = zone_start_pfn; |
2864 | 2864 | ||
2865 | memmap_init(size, pgdat->node_id, zone_idx(zone), zone_start_pfn); | ||
2866 | |||
2867 | zone_init_free_lists(zone); | 2865 | zone_init_free_lists(zone); |
2868 | 2866 | ||
2869 | return 0; | 2867 | return 0; |
@@ -3433,6 +3431,7 @@ static void __paginginit free_area_init_core(struct pglist_data *pgdat, | |||
3433 | ret = init_currently_empty_zone(zone, zone_start_pfn, | 3431 | ret = init_currently_empty_zone(zone, zone_start_pfn, |
3434 | size, MEMMAP_EARLY); | 3432 | size, MEMMAP_EARLY); |
3435 | BUG_ON(ret); | 3433 | BUG_ON(ret); |
3434 | memmap_init(size, nid, j, zone_start_pfn); | ||
3436 | zone_start_pfn += size; | 3435 | zone_start_pfn += size; |
3437 | } | 3436 | } |
3438 | } | 3437 | } |
diff --git a/net/irda/irnet/irnet_irda.c b/net/irda/irnet/irnet_irda.c index a3ec0026cdb2..cf9a4b531a98 100644 --- a/net/irda/irnet/irnet_irda.c +++ b/net/irda/irnet/irnet_irda.c | |||
@@ -10,6 +10,7 @@ | |||
10 | 10 | ||
11 | #include "irnet_irda.h" /* Private header */ | 11 | #include "irnet_irda.h" /* Private header */ |
12 | #include <linux/seq_file.h> | 12 | #include <linux/seq_file.h> |
13 | #include <asm/unaligned.h> | ||
13 | 14 | ||
14 | /* | 15 | /* |
15 | * PPP disconnect work: we need to make sure we're in | 16 | * PPP disconnect work: we need to make sure we're in |